 :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-1555066931-4365d14bab8c?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;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .about-container {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            flex: 1;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-content {
            flex: 1;
        }
        
        .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: 24px;
        }
        
        .about-text {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: #f5f5f5;
        }
        
        .values-header {
            max-width: 1240px;
            margin: 0 auto 60px;
            padding: 0 20px;
            text-align: center;
        }
        
        .values-grid {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: rgba(100, 111, 198, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--primary);
            font-size: 32px;
        }
        
        .value-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .value-description {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-header {
            max-width: 1240px;
            margin: 0 auto 60px;
            padding: 0 20px;
            text-align: center;
        }
        
        .team-grid {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            height: 300px;
            position: relative;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-content {
            padding: 24px;
            text-align: center;
        }
        
        .team-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .team-role {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        .team-bio {
            font-size: 16px;
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            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);
        }
        
        /* Timeline Section */
        .timeline-section {
            padding: 80px 0;
            background: #f5f5f5;
        }
        
        .timeline-header {
            max-width: 1240px;
            margin: 0 auto 60px;
            padding: 0 20px;
            text-align: center;
        }
        
        .timeline-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--primary);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-date {
            position: absolute;
            top: 0;
            width: 120px;
            padding: 8px 16px;
            background: var(--primary);
            color: var(--white);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
        }
        
        .timeline-item:nth-child(odd) .timeline-date {
            left: -140px;
        }
        
        .timeline-item:nth-child(even) .timeline-date {
            right: -140px;
        }
        
        .timeline-dot {
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 2px var(--primary);
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            left: calc(50% - 10px);
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            right: calc(50% - 10px);
        }
        
        .timeline-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .timeline-text {
            font-size: 16px;
            color: var(--gray);
        }
        
        /* 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;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .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;
            }
            
            /* Timeline adjustments */
            .timeline-container::before {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
            
            .timeline-date {
                position: relative;
                left: 0 !important;
                right: auto !important;
                margin-bottom: 10px;
            }
            
            .timeline-dot {
                left: 20px !important;
                right: auto !important;
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .values-grid, .team-grid {
                grid-template-columns: 1fr;
            }
            
            .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);
        }