 :root {
            --primary: #646FC6;
            --secondary: #4CAF50;
            --dark: #131735;
            --light: #F8F8F8;
            --white: #ffffff;
            --gray: rgba(19, 23, 53, 0.60);
            --light-gray: rgba(255, 255, 255, 0.60);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Urbanist', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 40px 0;
            background: linear-gradient(0deg, rgba(19, 23, 53, 0.8) 0%, rgba(19, 23, 53, 0.8) 100%);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--primary);
            font-size: 28px;
            font-weight: 700;
        }
        
        .logo-icon {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s;
            padding: 13px 24px;
            border-radius: 40px;
        }
        
        nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            background-color: transparent;
            color: var(--white);
            padding: 10px 24px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 18px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border: none;
            padding-right: 6px;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            border: none;
            padding-right: 6px;
        }
        
        .btn-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            margin-left: 24px;
        }
        
        .mobile-nav{
            display: none; 
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), 
                        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 858px;
            padding: 0 20px;
        }
        
        .hero-tag {
            display: inline-block;
            padding: 9px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            margin-bottom: 8px;
            color: var(--white);
            font-size: 16px;
            font-weight: 500;
        }
        
        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.1;
        }
        
        .hero p {
            font-size: 18px;
            color: var(--light-gray);
            max-width: 555px;
            margin: 0 auto 32px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info {
            padding: 20px;
        }
        
        .section-tag {
            display: inline-block;
            padding: 9px 16px;
            border-radius: 50px;
            border: 1px solid rgba(0, 0, 0, 0.10);
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 16px;
            font-weight: 500;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.1;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(100, 111, 198, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            font-size: 16px;
            color: var(--gray);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--dark);
        }
        
        .social-link:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .contact-form {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-group label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            height: 50px;
            padding: 0 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--light);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(100, 111, 198, 0.1);
        }
        
        textarea.form-control {
            height: 150px;
            padding: 15px 20px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: #f5f5f5;
        }
        
        .map-container {
            max-width: 1240px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            height: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }
        
        .faq-title {
            font-size: 48px;
            font-weight: 700;
            margin: 16px 0;
            line-height: 1.1;
        }
        
        .faq-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 421px;
            margin: 0 auto 60px;
        }
        
        .faq-list {
            max-width: 980px;
            margin: 0 auto 60px;
            text-align: left;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 24px;
            margin-bottom: 18px;
            overflow: hidden;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 24px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 24px 24px;
            max-height: 200px; /* Adjust as needed */
        }
        
        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
        }
        
        .cta-container {
            max-width: 1360px;
            margin: 0 auto;
            background: var(--dark);
            border-radius: 40px;
            padding: 100px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .cta-container::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 12px;
            right: 100px;
            top: 275px;
            transform: rotate(15deg);
        }
        
        .cta-container::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            left: 86px;
            bottom: 100px;
        }
        
        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.1;
        }
        
        .cta-subtitle {
            font-size: 18px;
            color: var(--light-gray);
            max-width: 483px;
            margin: 0 auto 40px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-outline {
            background: rgba(255, 255, 255, 0.20);
            backdrop-filter: blur(10px);
        }
        
        /* Footer Section */
        .footer-section {
            padding: 70px 0;
            background: var(--dark);
            color: var(--white);
        }
        
        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-cta {
            max-width: 510px;
            margin: 0 auto 100px;
            text-align: center;
        }
        
        .footer-cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 32px;
            line-height: 1.1;
        }
        
        .footer-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 70px;
        }
        
        .footer-card {
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            padding: 32px;
            flex: 1;
            min-width: 280px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-card-title {
            font-size: 18px;
            color: var(--light-gray);
            margin-bottom: 30px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 24px;
        }
        
        .footer-links a {
            text-decoration: none;
            color: var(--white);
            font-size: 18px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white);
        }
        
        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        
        .email-input {
            width: 100%;
            height: 50px;
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 40px;
            padding: 0 24px;
            color: var(--white);
            font-size: 18px;
            margin: 30px 0;
        }
        
        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.40);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            header {
                padding: 20px 0;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .cta-container {
                padding: 60px 40px;
            }
            
            .cta-title {
                font-size: 36px;
            }
            
            .footer-cta-title {
                font-size: 36px;
            }
            
            /* Hide desktop navigation */
            header nav {
                display: none;
            }
            /* Show hamburger menu */
            .hamburger-menu {
                display: block;
            }
            /* Mobile navigation styling */
            .mobile-nav {
                display: none; /* Hidden by default */
                position: absolute;
                top: 100px; /* Adjust based on header height */
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 20px 0;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                z-index: 90;
                text-align: center;
            }
            .mobile-nav.active {
                display: block; /* Show when active */
            }
            .mobile-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .mobile-nav a {
                color: var(--white);
                padding: 10px 0;
                display: block;
                width: 100%;
            }
            .mobile-nav .btn {
                margin-top: 20px;
                width: auto; /* Allow button to size naturally */
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row; /* Keep logo and hamburger on one line */
                justify-content: space-between;
                gap: 0;
            }
            
            .hero {
                height: auto;
                padding: 150px 0 100px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .cta-container {
                padding: 40px 20px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .contact-form {
                padding: 30px 20px;
            }
            
            .footer-card {
                min-width: 100%;
            }
            
            .hamburger-menu{
                display: none;
            }
            
            .cta-container::before, .cta-container::after{
                display: none;
            }
        }
        
        /* Hamburger menu icon styling */
        .hamburger-menu {
            display: none; /* Hidden by default, shown in media query */
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
            padding: 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .hamburger-menu:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Success Message */
        .success-message {
            display: none;
            background-color: var(--secondary);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }