 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #090E59;
            --secondary: #013A7F;
            --accent: #0066FF;
            --light: #F8F9FF;
            --white: #FFFFFF;
            --text: #333333;
            --gray: #6B7280;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            height: 90px;
            align-items: center;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-placeholder {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        } */

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .cta-phone {
  color: white !important; /* Forces text color white */
}


        .cta-phone {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(9, 14, 89, 0.3);
        }

        .cta-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(9, 14, 89, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 90px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--light) 0%, #E6EDFF 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(9, 14, 89, 0.05), transparent);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary);
            animation: fadeInUp 0.8s ease;
        }

        .tagline {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-weight: 600;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(9, 14, 89, 0.3);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(9, 14, 89, 0.4);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 1s ease 0.5s backwards;
        }

        .visual-placeholder {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(9, 14, 89, 0.3);
            overflow: hidden;
            animation: float 3s ease-in-out infinite;
        }

        .visual-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: white;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            text-align: left;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
            margin-top: 3rem;
        }

        .about-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(9, 14, 89, 0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(9, 14, 89, 0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-items {
            list-style: none;
            margin-top: 1rem;
        }

        .service-items li {
            padding: 0.5rem 0;
            color: var(--gray);
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-items li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Services Carousel */
        .services-carousel {
            padding: 3rem 0;
            background: white;
            overflow: hidden;
            border-top: 1px solid rgba(9, 14, 89, 0.1);
            border-bottom: 1px solid rgba(9, 14, 89, 0.1);
        }

        .services-carousel-track {
            display: flex;
            gap: 1.5rem;
            animation: scrollServices 40s linear infinite;
            will-change: transform;
        }

        .services-carousel-track:hover {
            animation-play-state: paused;
        }

        .service-carousel-item {
            min-width: max-content;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            padding: 0 1rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        @keyframes scrollServices {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            .services-carousel-track {
                animation: scrollServices 60s linear infinite;
            }

            .service-carousel-item {
                font-size: 1.2rem;
            }
        }
        .brands {
            padding: 4rem 2rem;
            background: white;
            overflow: hidden;
        }

        .brands-title {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            gap: 4rem;
            animation: scroll 30s linear infinite;
        }

        .brand-item {
            min-width: 150px;
            height: 80px;
            background: var(--light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--primary);
            flex-shrink: 0;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(9, 14, 89, 0.12);
        }

        .quote {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .client-details h4 {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .client-details p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .footer-contact p {
            margin: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin: 0.8rem 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-visual {
                order: -1;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 1.3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .hero-cta {
                flex-direction: column;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .about-content {
                text-align: center;
                order: 2;
            }

            .about-image {
                order: 1;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn-primary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }