        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, rgba(67, 67, 164, 0.95), rgba(45, 45, 120, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234343a4" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 600px;
            position: relative;
            padding-bottom: 3rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .logo-icon {
            /* width: px; */
            height: 130px;
            /* background: white; */
            /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .request-quote-btn {
            background: #6c7cff;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 5% 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
        }

        .hero-content h3 {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            font-weight: 500;
            opacity: 0.95;
        }

        .hero-content h1,
        .services-hero h1,
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .get-started-btn {
            background: #6c7cff;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .get-started-btn:hover {
            background: #5a6cee;
        }

        .hero-image {
            position: relative;
            opacity: 0.3;
        }

        /* Services Section */
        .services,
        .services-section,
        .contact-section,
        .customers,
        .customers-section,
        .cta,
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
            background: #f8f9fa;
        }

        .services h2,
        .services-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .services>p,
        .services-section>p {
            color: #666;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: #e8f0fe;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Portfolio Section */
        .portfolio,
        .leadership,
        .process-section {
            padding: 5rem 5%;
            text-align: center;
            background: white;
        }

        .portfolio h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .portfolio>p {
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            height: fit-content;
            margin: 0 auto 3rem;
        }

        .portfolio-grid.hide-extra>*:nth-child(n + 5) {
            display: none;
        }


        .portfolio-item {
            height: fit-content;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            border-radius: 10px;
            overflow: hidden !important;
            position: relative;
        }

        .portfolio-item:hover .portfolio-title {
            bottom: 0;
            transition: all .5s;
        }

        .portfolio-title {
            bottom: -50%;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            background-color: #ffffff9A;
            padding: 10px 20px;
            height: fit-content;
            width: 100%;

            position: absolute;
        }

        /* .portfolio-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        } */

        .explore-more-btn {
            background: #6c7cff;
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .explore-more-btn:hover {
            background: #5a6cee;
        }

        /* Customers Section */


        .customers h2,
        .customers-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .customers>p,
        .customers-section>p {
            color: #666;
            margin-bottom: 3rem;
        }

        .customer-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto 4rem;
        }

        .customer-logo {
            max-height: 70px;
        }

        /* Testimonial */

        .testimonial-slider {
            position: relative;
            max-width: 700px;
            margin: 3rem auto 0;
            text-align: center;
        }

        .testimonial {
            display: none;
            animation: fade 0.5s ease-in-out;
        }

        .testimonial.active {
            display: block;
        }

        @keyframes fade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: #ddd;
            border-radius: 50%;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #000;
            color: #fff;
            border: none;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            border-radius: 50%;
        }

        .slider-btn.prev {
            left: -40px;
        }

        .slider-btn.next {
            right: -40px;
        }


        .testimonial {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .testimonial h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .testimonial p,
        .testimonial>p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: #999;
            margin: 0;
        }

        /* Leadership Section */


        .leadership h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .leadership>p {
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            text-align: center;
        }

        .member-photo {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .team-member h3 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: #2c3e50;
        }

        .team-member p {
            color: #999;
        }

        /* CTA Section */

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cta-text h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            text-align: left;
        }

        .cta-text p {
            color: #666;
            text-align: left;
        }

        .lets-talk-btn,
        .cta-btn {
            background: #6c7cff;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 600;
            white-space: nowrap;
            transition: background 0.3s;
        }

        .lets-talk-btn:hover {
            background: #5a6cee;
        }


        /* ABout Page Style */

        /* Hero Section */
        .about-hero,
        .services-hero,
        .contact-hero {
            text-align: center;
            padding: 3rem 5% 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .about-hero h2,
        .contact-hero h2,
        .services-hero h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            opacity: 0.95;
        }

        .about-hero p,
        .contact-hero p,
        .services-hero p {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Info Cards Section */
        .info-cards {
            padding: 3rem 5% 5rem;
            background: #f8f9fa;
        }

        .cards-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .info-card::before {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: #6c7cff;
            margin-bottom: 1.5rem;
        }

        .info-card h3,
        .process-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .info-card p {
            color: #666;
            line-height: 1.8;
        }

        .info-card ul {
            list-style: none;
            padding: 0;
        }

        .info-card li {
            color: #666;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .info-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #6c7cff;
            font-weight: bold;
        }

        /* Process Section */

        .process-section h2 {
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #2c3e50;
        }

        .process-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .process-item {
            text-align: left;
            position: relative;
        }

        .process-number {
            font-size: 6rem;
            font-weight: bold;
            color: #f0f0f0;
            position: absolute;
            top: -20px;
            left: 0;
            z-index: 0;
        }

        .process-content {
            position: relative;
            z-index: 1;
            padding-top: 2rem;
        }



        .process-content p {
            color: #666;
            line-height: 1.8;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 5rem 5%;
            background: #f8f9fa;
        }

        .why-choose-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .why-choose-image {
            width: 100%;
            /* max-width: ; */
            height: 500px;
            background: linear-gradient(135deg, rgba(67, 67, 164, 0.7), rgba(45, 45, 120, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%234343a4" width="600" height="500"/></svg>');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }

        .why-choose-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .why-choose-content>p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .feature-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .feature-header h4 {
            font-size: 1.1rem;
            color: #2c3e50;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: #6c7cff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
        }

        .feature-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 5%;
            background: white;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .stats-header {
            margin-bottom: 3rem;
        }

        .stats-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .stats-header p {
            color: #666;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #6c7cff;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* CTA Section */

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 4rem 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }


        /* Testimonial Section */
        .testimonial-section {
            padding: 4rem 5%;
            background: white;
            text-align: center;
        }

        .author-info {
            text-align: left;
        }



        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #6c7cff;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #6c7cff;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            width: fit-content;
            text-transform: uppercase;
        }

        .submit-btn:hover {
            background: #5a6cee;
        }

        /* Get In Touch Section */
        .get-in-touch-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .contact-info h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            color: #6c7cff;
            font-size: 1.2rem;
        }

        .contact-detail p {
            color: #666;
            line-height: 1.6;
        }

        .toll-free-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .toll-free-section h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #666;
        }

        .toll-free-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .map-section {
            margin-top: 2rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .map-placeholder {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
        }

        .map-marker {
            width: 40px;
            height: 40px;
            background: #ff4444;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -40px 0 0 -20px;
        }

        .map-marker::after {
            content: '';
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }


        /* CTA Section */

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }

        .cta-text {
            flex: 1;
        }

        /* Footer */
        footer {
            background: #1a1a40;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-logo-icon {
            width: 30px;
            height: 30px;
            background: white;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .footer-about p {
            color: #bbb;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: #6c7cff;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #6c7cff;
        }

        .footer-contact p {
            color: #bbb;
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #bbb;
        }

        @media (max-width: 768px) {

            .hero-content h1,
            .services-hero h1,
            .contact-hero h1,
            .about-hero h1 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .customer-logos {
                gap: 2rem;
            }

            .footer-content,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta-content {
                flex-direction: column;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
            }

            .cta-text h2,
            .cta-text p {
                text-align: center;
            }


            .why-choose-container,
            .process-grid,
            .footer-content .cards-container,
            .hero,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .toll-free-number {
                font-size: 1.5rem;
            }
        }