*       {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --red: #E63946;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header with Indian Flag Colors Accent */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            border-top: 4px solid var(--saffron);
            border-bottom: 4px solid var(--green);
        }

        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--saffron), var(--red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 33%;
            background: var(--green);
            opacity: 0.3;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--red);
            font-weight: 800;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--saffron), var(--red));
            transition: width 0.3s;
            border-radius: 2px;
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--red), #c1121f);
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
        }

        /* Hero Section with Indian Context */
        .hero {
            margin-top: 90px;
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #f0fff4 100%);
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://media.istockphoto.com/id/1214716068/photo/sunset-amidst-sprawling-skyscrapers-of-mumbai.jpg?s=612x612&w=0&k=20&c=vS7Ft5fDpJiDfE68xDPxRxIr49jcQ2eOBIEST5-2bqQ=') no-repeat center center/cover;
            opacity: 0.15;
            border-radius: 0 0 0 100px;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 153, 51, 0.1);
            color: var(--saffron);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255, 153, 51, 0.3);
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-content h1 span {
            background: linear-gradient(135deg, var(--red), var(--saffron));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 90%;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--red);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-saffron {
            background: linear-gradient(135deg, var(--saffron), #ff8000);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }

        .btn-saffron:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
        }

        .btn-outline-india {
            background: transparent;
            color: var(--green);
            border: 2px solid var(--green);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-india:hover {
            background: var(--green);
            color: white;
        }

        .hero-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .experience-badge i {
            font-size: 2.5rem;
            color: var(--saffron);
        }

        .experience-badge div strong {
            font-size: 1.5rem;
            color: var(--dark);
            display: block;
        }

        /* Services Section with Indian Touch */
        .services {
            padding: 6rem 2rem;
            background: white;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--saffron), white, var(--green));
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            display: inline-block;
            background: rgba(230, 57, 70, 0.1);
            color: var(--red);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.2rem;
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 220px;
            background: linear-gradient(135deg, var(--light-bg), #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-icon {
            position: absolute;
            bottom: -25px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--red), var(--saffron));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
            z-index: 2;
        }

        .service-content {
            padding: 3rem 2rem 2rem;
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--red);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Why Choose Us with Indian Image */
        .why-us {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-us-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .why-us-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .why-us-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-stat {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 20px;
            color: var(--dark);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .floating-stat.top {
            top: 30px;
            right: -20px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-stat.bottom {
            bottom: 30px;
            left: -20px;
            animation: float 3s ease-in-out infinite 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .why-us-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .why-us-content h2 span {
            color: var(--saffron);
        }

        .why-us-content > p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .features-list {
            display: grid;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 153, 51, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--saffron);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .feature-text p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Testimonials - Indian Clients */
        .testimonials {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
            position: relative;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--green), white, var(--saffron));
        }

        .testimonials-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            border-top: 4px solid var(--saffron);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: var(--saffron);
            opacity: 0.2;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
            color: #555;
            font-size: 1.05rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--saffron);
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(19, 136, 8, 0.1);
            color: var(--green);
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.3rem;
        }

        /* Clients Section */
        .clients {
            padding: 4rem 2rem;
            background: white;
            text-align: center;
        }

        .clients-scroll {
            max-width: 1200px;
            margin: 2rem auto;
            overflow: hidden;
            position: relative;
        }

        .clients-scroll::before,
        .clients-scroll::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .clients-scroll::before {
            left: 0;
            background: linear-gradient(90deg, white, transparent);
        }

        .clients-scroll::after {
            right: 0;
            background: linear-gradient(-90deg, white, transparent);
        }

        .clients-track {
            display: flex;
            gap: 4rem;
            animation: scroll 20s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .client-logo {
            flex-shrink: 0;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ccc;
            font-family: 'Playfair Display', serif;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .client-logo:hover {
            color: var(--red);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--saffron), var(--red));
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            background: white;
            color: var(--red);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .btn-transparent {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-transparent:hover {
            background: white;
            color: var(--red);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 2rem 2rem;
            position: relative;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo-text {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .footer-brand p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--saffron);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--saffron);
            padding-left: 5px;
        }

        .contact-info p {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.2rem;
            color: #aaa;
        }

        .contact-info i {
            color: var(--saffron);
            margin-top: 0.3rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--saffron);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        .india-flag {
            display: inline-flex;
            gap: 0.3rem;
            margin-left: 1rem;
        }

        .flag-stripe {
            width: 20px;
            height: 12px;
        }

        .flag-stripe.saffron { background: var(--saffron); }
        .flag-stripe.white { background: white; }
        .flag-stripe.green { background: var(--green); }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container,
            .why-us-container {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .why-us-image {
                order: -1;
            }

            .floating-stat {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }

            nav {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 1.5rem;
            }
        }