  :root {
            --primary-dark: #0a0a0a;
            --secondary-dark: #161616;
            --text-color: #333;
            --gold-accent: #D4AF37;
            --glass-bg: rgba(255, 255, 255, 0.98);
        }

     
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #fdfdfd;
            color: var(--text-color);
            line-height: 1.6;
            padding-bottom: 0;
            overflow-x: hidden;
            width: 100%;
        }

        
        section {
            padding: 100px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
        }

        a {
            text-decoration: none;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .section-header p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }


        .btn-call-hero {
            background-color: var(--primary-dark);
            color: #fff;
            padding: 18px 40px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--primary-dark);
            min-width: 200px;
            cursor: pointer;
        }

        .btn-call-hero:hover {
            background-color: var(--gold-accent);
            border-color: var(--gold-accent);
            color: #000;
        }

        .btn-outline {
            border: 1px solid var(--primary-dark);
            color: var(--primary-dark);
            padding: 18px 40px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: 0.3s;
            border-radius: 4px;
            display: inline-block;
            text-align: center;
            min-width: 200px;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: #fff;
        }

   
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-top: 1px solid #eee;
            padding: 15px;
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .sticky-btn {
            background: var(--gold-accent);
            color: #000;
            width: 100%;
            text-align: center;
            padding: 15px;
            font-weight: 900;
            font-size: 1rem;
            border-radius: 4px;
            text-transform: uppercase;
        }

  
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 90px;
        }

        .nav-left .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
        }

        .nav-center {
            display: flex;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            padding: 15px 0;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--gold-accent);
        }

        .arrow-down {
            font-size: 0.6rem;
            opacity: 0.5;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: -20px;
            width: 220px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            list-style: none;
            border-top: 3px solid var(--gold-accent);
            z-index: 1100;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 25px;
            font-size: 0.85rem;
            color: #555;
            transition: 0.2s;
        }

        .dropdown li a:hover {
            background: #f9f9f9;
            color: var(--primary-dark);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 2100;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
            z-index: 1900;
            max-height: 80vh;
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: flex;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-nav a {
            display: block;
            padding: 18px 30px;
            border-bottom: 1px solid #f5f5f5;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .mobile-nav .sub-header {
            background: #f9f9f9;
            color: #888;
            font-size: 0.7rem;
            padding: 10px 30px;
            letter-spacing: 2px;
            font-weight: 700;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

 
        .hero-split-screen {
            display: flex;
            min-height: 90vh;
            margin-top: 90px;
            position: relative;
            overflow: hidden;
            background: #fff;
            width: 100%;
        }

        .hero-left {
            width: 50%;
            padding: 0 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .hero-right {
            width: 50%;
            position: relative;
            background: #f4f4f4;
        }

        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-eyebrow {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-accent);
            margin-bottom: 20px;
            font-weight: 700;
            display: block;
        }

        .hero-left h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }

        .hero-sub {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #555;
            max-width: 90%;
            line-height: 1.6;
        }

        .trust-row {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        .trust-item {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #555;
            font-weight: 700;
        }

        .trust-item span {
            display: block;
            color: var(--gold-accent);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .prob-sol-section {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .prob-col {
            flex: 1;
            padding: 80px 50px;
            min-width: 300px;
        }

        .prob-dark {
            background: var(--primary-dark);
            color: #fff;
        }

        .prob-light {
            background: #fdfdfd;
            color: var(--text-color);
            border: 1px solid #eee;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: #fff;
            padding: 40px 30px;
            border: 1px solid #eee;
            transition: 0.3s;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }

        .b-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: block;
        }

        .benefit-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-family: 'Playfair Display';
        }

        .doc-section {
            background: var(--primary-dark);
            color: #fff;
            padding: 100px 0;
        }

        .doc-flex {
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .doc-img {
            flex: 1;
            position: relative;
        }

        .doc-img img {
            width: 100%;
            border-radius: 4px;
            filter: grayscale(20%);
            display: block;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .doc-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gold-accent);
            color: #000;
            padding: 15px 25px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .doc-text {
            flex: 1;
        }

        .doc-text h2 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .doc-text p {
            color: #ccc;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .credential-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .cred-item {
            border-left: 2px solid var(--gold-accent);
            padding-left: 15px;
        }

        .cred-item strong {
            display: block;
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .cred-item span {
            color: #888;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .roadmap-section {
            background: #fafafa;
            padding: 100px 0;
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 60px auto 0;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: var(--gold-accent);
            transform: translateX(-50%);
        }

        .timeline-row {
            display: flex;
            width: 100%;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-row.left {
            justify-content: flex-start;
        }

        .timeline-row.right {
            justify-content: flex-end;
        }

        .timeline-card {
            width: 45%;
            background: #fff;
            padding: 40px;
            border: 1px solid #eee;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            text-align: center;
        }

        .timeline-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }

        .watermark {
            position: absolute;
            top: -10px;
            right: 20px;
            font-family: 'Playfair Display';
            font-size: 5rem;
            color: #f3f3f3;
            font-weight: 900;
            z-index: 1;
            line-height: 1;
        }

        .timeline-card h3 {
            position: relative;
            z-index: 2;
            font-size: 1.5rem;
            margin-bottom: 15px;
            margin-top: 15px;
            color: var(--primary-dark);
        }

        .timeline-card p {
            position: relative;
            z-index: 2;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .pricing-section {
            background: #fff;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background: #fff;
            padding: 40px;
            text-align: center;
            border: 1px solid #eee;
            position: relative;
            transition: 0.3s;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .price-card.featured {
            border: 2px solid var(--gold-accent);
            transform: scale(1.05);
            z-index: 2;
        }

        .price-tag {
            font-size: 2rem;
            font-family: 'Playfair Display';
            color: var(--primary-dark);
            display: block;
            margin: 20px 0;
        }

        .price-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-list li {
            border-bottom: 1px solid #f0f0f0;
            padding: 10px 0;
            font-size: 0.9rem;
            color: #555;
        }

        .emi-badge {
            background: #e6fffa;
            color: #047857;
            padding: 5px 10px;
            font-size: 0.7rem;
            font-weight: bold;
            border-radius: 4px;
            display: inline-block;
            margin-top: 10px;
        }

        .reviews-section {
            background: #fdfdfd;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            padding: 40px;
            border: 1px solid #eee;
            background: #fff;
            transition: 0.3s;
        }

        .review-card:hover {
            border-color: var(--gold-accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stars {
            color: var(--gold-accent);
            margin-bottom: 15px;
            letter-spacing: 3px;
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .review-author {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--primary-dark);
        }

        .ba-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .ba-item {
            position: relative;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        .ba-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .ba-item:hover img {
            transform: scale(1.05);
        }

        .ba-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: rgba(10, 10, 10, 0.9);
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .ba-item:hover .ba-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .ba-overlay h3 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1.5rem;
        }

        .ba-overlay p {
            color: #ccc;
            font-size: 0.9rem;
            margin: 0;
        }

        .faq-section {
            background: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        details {
            border-bottom: 1px solid #ddd;
            padding: 25px 0;
            cursor: pointer;
        }

        summary {
            font-family: 'Playfair Display';
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            outline: none;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--gold-accent);
        }

        details[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            margin-top: 15px;
            color: #666;
            font-size: 1rem;
        }

        .contact-section {
            background: #fdfdfd;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            padding-right: 40px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact-details p {
            margin-bottom: 20px;
            font-size: 1rem;
            color: #555;
        }

        .contact-details strong {
            color: var(--primary-dark);
            display: block;
            margin-bottom: 5px;
            font-family: 'Playfair Display';
        }

        .booking-form {
            background: #fff;
            padding: 40px;
            border: 1px solid #eee;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            font-family: 'Lato';
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--gold-accent);
            outline: none;
        }

        .map-section {
            padding: 0;
            height: 450px;
            width: 100%;
            position: relative;
            border-bottom: none;
            margin-bottom: 0;
        }

        .map-frame {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(100%);
        }

        .map-overlay {
            position: absolute;
            top: 50px;
            left: 50px;
            background: #fff;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            border-left: 4px solid var(--gold-accent);
        }

        .map-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-family: 'Playfair Display';
        }

        .map-overlay p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .main-footer {
            background: var(--primary-dark);
            color: #fff;
            padding: 80px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-family: 'Playfair Display';
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--gold-accent);
        }

        .footer-contact p {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: #555;
            font-size: 0.8rem;
        }

        @media (min-width: 1025px) {

            .mobile-nav,
            .mobile-nav.active {
                display: none !important;
            }

            .hamburger {
                display: none !important;
            }
        }

        @media (max-width: 1024px) {
            section {
                padding: 60px 0;
            }

            h1 {
                font-size: 2.5rem;
            }

            .hero-split-screen {
                flex-direction: column;
                height: auto;
                margin-top: 90px;
            }

            .hero-left {
                width: 100%;
                padding: 60px 40px;
                text-align: center;
                order: 1;
            }

            .hero-right {
                width: 100%;
                height: 400px;
                order: 2;
            }

            .hero-left h1 {
                font-size: 2.8rem;
            }

            .hero-sub {
                margin: 0 auto 30px auto;
            }

            .trust-row {
                justify-content: center;
            }

            .hero-btns {
                justify-content: center;
                gap: 15px;
            }

            .btn-call-hero,
            .btn-outline {
                width: auto;
                min-width: 200px;
                padding: 15px 30px;
            }
            .benefits-grid,
            .pricing-grid,
            .review-grid,
            .doc-flex,
            .contact-grid,
            .prob-sol-section,
            .footer-grid {
                grid-template-columns: 1fr;
                flex-direction: column;
                display: grid;
            }
            .timeline::before {
                left: 20px;
            }

            .timeline-row {
                flex-direction: column;
                padding-left: 50px;
                margin-bottom: 40px;
            }

            .timeline-card {
                width: 100%;
                text-align: left;
            }

            .timeline-row.right {
                justify-content: flex-start;
            }

            .watermark {
                right: 20px;
                top: 10px;
                font-size: 4rem;
            }
            .price-card.featured {
                transform: scale(1);
            }

            .doc-img {
                order: -1;
                margin-bottom: 20px;
                width: 100%;
            }

            .doc-flex {
                gap: 40px;
            }

            .contact-info {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .nav-center,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .sticky-bar {
                display: flex;
            }

            .navbar {
                padding: 15px 20px;
            }

            .hidden-mobile {
                display: none;
            }

            .hidden-desktop {
                display: block;
            }

            .ba-item {
                height: 350px;
            }

            .ba-grid {
                grid-template-columns: 1fr;
            }

            .ba-overlay {
                opacity: 1 !important;
                transform: translateY(0) !important;
                background: rgba(0, 0, 0, 0.7);
            }

            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                max-width: none;
                border-left: none;
                border-bottom: 4px solid var(--gold-accent);
                margin-bottom: 0;
            }

            .map-section {
                height: auto;
            }

            .map-frame {
                height: 350px;
            }

            .prob-col {
                padding: 50px 20px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero-left {
                padding: 40px 20px;
            }

            .hero-left h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .hero-right {
                height: 250px;
            }

            .trust-row {
                gap: 20px;
                margin-bottom: 30px;
            }

            .hero-btns {
                gap: 10px;
                width: 100%;
            }

            .btn-call-hero,
            .btn-outline {
                padding: 12px 20px;
                font-size: 0.85rem;
                flex: 1;
                white-space: nowrap;
                min-width: 140px;
            }
        }