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

        :root {
            --gold: #d4af37;
            --gold-light: #f4e4a8;
            --gold-dark: #b8941f;
            --charcoal: #1a1a1a;
            --charcoal-light: #2a2a2a;
            --charcoal-dark: #1b1b1b;
            --ivory: #f8f5f0;
            --ivory-dark: #e8e5e0;
            --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            background-color: var(--charcoal);
            color: var(--ivory);
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header Styles */
        header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 0;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
        }

        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 40px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--ivory);
            font-weight: 400;
            font-size: 16px;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--charcoal);
            border: none;
            padding: 14px 32px;
            border-radius: 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--ivory);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at center, var(--charcoal-light) 0%, var(--charcoal) 70%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(212,175,55,0.03)"/></svg>');
            background-size: cover;
        }

        .hero-content {
            max-width: 700px;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            color: var(--ivory);
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .hero h1 span {
            color: var(--gold);
            font-style: italic;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--ivory-dark);
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.7s;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.9s;
        }

        .btn {
            padding: 16px 38px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--charcoal);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 50%;
            height: 80%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .hero-image img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            opacity: 0;
            transform: translateX(30px);
            animation: fadeInRight 1s forwards 1s;
            filter: brightness(0.9) contrast(1.1);
            border-left: 2px solid rgba(212, 175, 55, 0.3);
            padding-left: 20px;
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            border: 1px solid rgba(212, 175, 55, 0.2);
            opacity: 0;
            animation: float 15s infinite linear;
        }

        .element-1 {
            width: 200px;
            height: 200px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .element-2 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 20%;
            animation-delay: 5s;
        }

        .element-3 {
            width: 100px;
            height: 100px;
            top: 70%;
            right: 15%;
            animation-delay: 10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

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

        /* Marquee Section */
        .marquee {
            background: var(--charcoal-light);
            padding: 30px 0;
            overflow: hidden;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
        }

        .marquee-item {
            padding: 0 50px;
            font-size: 18px;
            color: var(--gold-light);
            white-space: nowrap;
            font-weight: 300;
            letter-spacing: 1px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Features Section */
        .section {
            padding: 120px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--ivory);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 2px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--ivory-dark);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: var(--charcoal-light);
            padding: 50px 40px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
            transition: 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: var(--gold);
            font-size: 32px;
            position: relative;
        }

        .feature-card h3 {
            margin-bottom: 20px;
            color: var(--ivory);
            font-size: 1.8rem;
        }

        .feature-card p {
            color: var(--ivory-dark);
            margin-bottom: 25px;
        }

        .feature-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .feature-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .feature-link:hover i {
            transform: translateX(5px);
        }

        /* Services Section */
        .services {
            background: var(--charcoal-dark);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,70 Q25,60 50,70 T100,70 L100,100 L0,100 Z' fill='rgba(212,175,55,0.06)'/%3E%3Cpath d='M0,80 Q25,90 50,80 T100,80 L100,100 L0,100 Z' fill='rgba(212,175,55,0.04)'/%3E%3C/svg%3E");

            background-size: cover;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--charcoal);
            padding: 40px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-size: 1.5rem;
        }

        .service-card h3 i {
            margin-right: 15px;
            color: var(--gold);
            font-size: 24px;
        }

        /* Mission & Vision Section */
        .mission-vision {
            background: var(--charcoal-light);
            position: relative;
            overflow: hidden;
        }

        .mission-vision::before {
             content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(212,175,55,0.02)"/></svg>');
            background-size: cover;
        }

        .mv-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mv-content {
            position: relative;
            z-index: 2;
        }

        .mv-image {
            position: relative;
           
            /* border: 1px solid rgba(212, 175, 55, 0.2); */
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mv-image img {
            width: 100%;
            height: 100%;
            /* object-fit: cover;
            transition: var(--transition); */
        }

        .mv-image:hover img {
            transform: scale(1.05);
        }

        .mv-item {
            margin-bottom: 60px;
        }

        .mv-item:last-child {
            margin-bottom: 0;
        }

        .mv-item h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--gold);
            display: flex;
            align-items: center;
        }

        .mv-item h3 i {
            margin-right: 15px;
            font-size: 28px;
        }

        .mv-item p {
            color: var(--ivory-dark);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Roadmap Section */
        .roadmap {
            background: var(--charcoal-light);
            position: relative;
        }

        .roadmap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,70 Q25,60 50,70 T100,70 L100,100 L0,100 Z' fill='rgba(212,175,55,0.06)'/%3E%3Cpath d='M0,80 Q25,90 50,80 T100,80 L100,100 L0,100 Z' fill='rgba(212,175,55,0.04)'/%3E%3C/svg%3E");
            background-size: cover;
        }

        .roadmap-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .roadmap-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
            transform: translateX(-50%);
        }

        .roadmap-items {
            position: relative;
            z-index: 2;
        }

        .roadmap-item {
            display: flex;
            margin-bottom: 15px;
            position: relative;
        }

        .roadmap-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .roadmap-item:last-child {
            margin-bottom: 0;
        }

        .roadmap-content {
            flex: 1;
            padding: 40px;
            background: var(--charcoal);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            transition: var(--transition);
        }

        .roadmap-item:nth-child(odd) .roadmap-content {
            margin-right: 40px;
        }

        .roadmap-item:nth-child(even) .roadmap-content {
            margin-left: 40px;
        }

        .roadmap-content:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .roadmap-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .roadmap-content .year {
            display: inline-block;
            background: var(--gold);
            color: var(--charcoal);
            padding: 5px 15px;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .roadmap-content p {
            color: var(--ivory-dark);
        }

        .roadmap-marker {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--gold);
            border: 4px solid var(--charcoal);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
        }

        .roadmap-image {
            flex: 1;
            height: 300px;
            width: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            /* border: 1px solid rgba(212, 175, 55, 0.2); */
        }

        .roadmap-image img {
            width: 70%;
            height: 50%;
            object-fit: cover;
            transition: var(--transition);
        }

        .roadmap-image:hover img {
            transform: scale(1.05);
        }

        /* Testimonials */
        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: var(--charcoal-light);
            padding: 50px;
            border-left: 3px solid var(--gold);
            margin: 30px 0;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            opacity: 0.3;
        }

        .testimonial-content {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--ivory);
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            font-weight: bold;
            font-size: 24px;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--gold);
        }

        .author-info p {
            color: var(--ivory-dark);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="rgba(212,175,55,0.05)"/></svg>');
            background-size: cover;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--ivory);
        }

        .cta-section p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            color: var(--ivory-dark);
        }

        /* Footer */
        footer {
            background: var(--charcoal-light);
            padding: 100px 0 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: var(--gold);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--ivory-dark);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 300;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ivory);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--charcoal);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--ivory-dark);
            font-size: 0.9rem;
        }

        /* ========== MOBILE RESPONSIVE STYLES ========== */
        
        /* Large Tablets and Small Laptops */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.8rem;
            }
            
            .mv-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mv-image {
                height: 400px;
                order: -1;
            }

            .mv-image img{
                width: 61%;
            }            
            
            .roadmap-line {
                left: 30px;
            }
            
            .roadmap-item, .roadmap-item:nth-child(even) {
                flex-direction: column;
            }
            
            .roadmap-item:nth-child(odd) .roadmap-content,
            .roadmap-item:nth-child(even) .roadmap-content {
                margin: 0 0 20px 0;
            }
            
            .roadmap-marker {
                left: 30px;
            }
            .roadmap-image img{
                width: 70%;
            height: 50%;
            }
        }

        /* Tablets */
        @media (max-width: 992px) {
            .container {
                padding: 0 30px;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 100px 0;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .feature-card {
                padding: 40px 30px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial {
                padding: 40px;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .navbar {
                flex-wrap: wrap;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 20px;
                background: var(--charcoal);
                padding: 20px;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .cta-button {
                display: none;
            }
            
            .hero {
                min-height: 90vh;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
                padding: 14px 20px;
            }
            
            .floating-elements {
                display: none;
            }
            
            .hero-image {
                display: none;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                margin-bottom: 60px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .feature-card h3 {
                font-size: 1.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .service-card h3 {
                font-size: 1.3rem;
            }
            
            .mv-item h3 {
                font-size: 1.8rem;
            }
            
            .mv-item p {
                font-size: 1rem;
            }
            
            .mv-image {
                height: 300px;
            }
            
            .roadmap-content {
                padding: 30px 20px;
            }
            
            .roadmap-content h3 {
                font-size: 1.5rem;
            }
            
            .roadmap-image {
                height: 250px;
            }
            .roadmap-image img{
                width: 50%;
            height: 30%;
            }
            
            .testimonial {
                padding: 30px 20px;
            }
            
            .testimonial-content {
                font-size: 1rem;
            }
            
            .cta-section {
                padding: 80px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
            
            footer {
                padding: 80px 0 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .marquee-item {
                padding: 0 30px;
                font-size: 16px;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .logo i {
                font-size: 20px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .feature-card h3 {
                font-size: 1.3rem;
            }
            
            .service-card h3 {
                font-size: 1.2rem;
            }
            
            .mv-item h3 {
                font-size: 1.5rem;
            }
            
            .roadmap-content h3 {
                font-size: 1.3rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .marquee-item {
                padding: 0 20px;
                font-size: 14px;
            }
            
            .footer-column h3 {
                font-size: 1.3rem;
            }
        }

        /* Very Small Mobile Devices */
        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 15px;
                font-size: 12px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .feature-card, .service-card {
                padding: 20px 15px;
            }
            
            .testimonial {
                padding: 20px 15px;
            }
        }
        /* ====== About Section ====== */
.about-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    color: var(--ivory);
    line-height: 1.8;
}

.about-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--ivory-light);
    margin-bottom: 25px;
}

.about-content p span {
    color: var(--gold);
    font-weight: 600;
}

.about-content a.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-content a.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* .about-image {
    flex: 1; */
    /* border-radius: 12px; */
    /* overflow: hidden; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
    /* transition: transform 0.5s ease, box-shadow 0.5s ease; */
/* } */

.about-image img {
    width: 70%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
    gap: 20px;
}

.stat-item {
    flex: 1;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--ivory-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== About Section Responsive ====== */

/* Large Tablets / Desktops */
@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-image,
    .about-content {
        flex: unset;
        width: 100%;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .about-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .about-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .about-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.85rem;
    }
}

/* ====== FAQ Section ====== */
.faq-section {
    background: var(--charcoal-light);
    padding: 80px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(212,175,55,0.02)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-title h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-section .section-title p {
    font-size: 1.1rem;
    color: var(--ivory-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: var(--charcoal);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: var(--charcoal-dark);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--charcoal-light);
}

.faq-answer p {
    padding: 15px 0;
    color: var(--ivory-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ====== FAQ Responsive ====== */

/* Tablets */
@media (max-width: 992px) {
    .faq-section .section-title h2 {
        font-size: 2.4rem;
    }

    .faq-section .section-title p {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-section .section-title h2 {
        font-size: 2rem;
    }

    .faq-section .section-title p {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 12px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .faq-section .section-title h2 {
        font-size: 1.8rem;
    }

    .faq-section .section-title p {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding: 10px 0;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .faq-section .section-title h2 {
        font-size: 1.6rem;
    }

    .faq-section .section-title p {
        font-size: 0.85rem;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .faq-answer p {
        font-size: 0.8rem;
        padding: 8px 0;
    }
}
