@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Urbanist:wght@400;500;600;700&family=Michroma&display=swap');

:root {
    /* Modern Navy-Tech Color Palette */
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --accent-color: #0A192F;
    /* Deep Tech Navy */
    --secondary-accent: #0056b3;
    --card-bg: #FFFFFF;
    --hover-bg: #F8F9FA;
    --glass-border: 1px solid #E0E0E0;
    --glass-blur: blur(20px);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);

    --font-main: 'Inter', 'Roboto', 'Open Sans', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --tech-blue: #0A192F;
    --electric-cyan: #0056b3;
}

/* Theme 1: Tech Brand (Premium) */
[data-theme="tech-brand"] {
    --bg-color: #0D1B2A;
    --text-color: #FFFFFF;
    --text-light: #1B2A41;
    --text-muted: #6A7A89;
    --accent-color: #2ECDF5;
    --secondary-accent: #DCE6F2;
    --card-bg: #F5F9FF;
    --hover-bg: #E6F0FA;
    --glass-border: 1px solid rgba(46, 205, 245, 0.3);
    --glass-blur: none;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Theme 2: iOS Light */
[data-theme="ios-light"] {
    --bg-color: #F2F2F7;
    --text-color: #1C1C1E;
    --accent-color: #007AFF;
    --secondary-accent: #5856D6;
    --card-bg: rgba(255, 255, 255, 0.7);
    --hover-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(0, 0, 0, 0.05);
    --glass-blur: blur(20px);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Theme 3: iOS Dark */
[data-theme="ios-dark"] {
    --bg-color: #000000;
    --text-color: #F5F5F7;
    --accent-color: #0A84FF;
    --secondary-accent: #5E5CE6;
    --card-bg: rgba(28, 28, 30, 0.6);
    --hover-bg: rgba(44, 44, 46, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Theme 4: Corporate Dark (Deep Blue) */
[data-theme="corporate-dark"] {
    --bg-color: #0F172A;
    --text-color: #E2E8F0;
    --accent-color: #38BDF8;
    --secondary-accent: #818CF8;
    --card-bg: rgba(30, 41, 59, 0.7);
    --hover-bg: rgba(51, 65, 85, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Theme 5: Corporate Light (Clean White/Blue) */
[data-theme="corporate-light"] {
    --bg-color: #FFFFFF;
    --text-color: #1E293B;
    --accent-color: #0284C7;
    --secondary-accent: #6366F1;
    --card-bg: rgba(241, 245, 249, 0.8);
    --hover-bg: #E2E8F0;
    --glass-border: 1px solid #CBD5E1;
    --glass-blur: blur(20px);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Theme 6: Minimal Dark (Monochrome) */
[data-theme="minimal-dark"] {
    --bg-color: #121212;
    --text-color: #E0E0E0;
    --accent-color: #FFFFFF;
    --secondary-accent: #A0A0A0;
    --card-bg: rgba(33, 33, 33, 0.8);
    --hover-bg: rgba(48, 48, 48, 0.8);
    --glass-border: 1px solid #333;
    --glass-blur: blur(20px);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Theme 7: Minimal Light (Monochrome) */
[data-theme="minimal-light"] {
    --bg-color: #FAFAFA;
    --text-color: #111111;
    --accent-color: #000000;
    --secondary-accent: #444444;
    --card-bg: #FFFFFF;
    --hover-bg: #EEEEEE;
    --glass-border: 1px solid #E0E0E0;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(2, 15, 27, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Ensure navbar is always on top */
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.15) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    border-bottom: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
}

/* Hero Section */


.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 0;
    background-color: #000000;
    background-image: none;
    /* Pitch dark */
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #E0E0E0;
    /* Lighter for dark bg */
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Michroma', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.glow-text {
    color: #00E5FF;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #D0D0D0;
    /* Lighter for dark bg */
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-visual-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(0, 122, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-button,
.buy-btn,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    /* Unified border-radius */
    font-weight: 600;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.2;
    min-height: 50px;
    width: 100%;
}

.cta-button {
    background: #0A192F;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
}

.product-card .cta-button {
    background: #007AFF !important;
    background: linear-gradient(135deg, #0A84FF 0%, #007AFF 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4) !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.6);
    filter: brightness(1.1);
}

.buy-btn {
    background-color: #007AFF;
    border: none;
    color: #FFFFFF;
    border-radius: 8px;
}

.buy-btn:hover {
    background-color: #0056b3;
    color: #FFFFFF;
    transform: translateY(-2px);
}


.whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    gap: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #FFFFFF;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
    font-size: 1rem !important;
    padding: 1rem 2rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    min-height: auto !important;
    width: auto !important;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text-col {
        text-align: center;
        order: 2;
    }

    .hero-visual-col {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 2.0rem !important;
        /* Force reduced size */
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .cta-button {
        width: 100% !important;
        min-width: unset !important;
    }

    .hamburger {
        display: flex;
        z-index: 10001;
        /* Extremely high z-index */
        position: relative;
        cursor: pointer;
        pointer-events: auto;
        /* Force pointer events */
        width: 30px;
        /* Explicit width */
        height: 25px;
        /* Explicit height */
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 1999;
        /* Ensure menu is above content */
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }
}

.whatsapp-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 8px;
    /* Match others */
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #FFFFFF;
}

/* Sections */
.section-container {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #E0E0E0;
    padding-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    border-radius: 2px;
}

.section-title.text-center {
    text-align: center;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.view-all-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #E6F7FF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
}

.view-all-link:hover {
    background-color: var(--accent-color);
    color: #FFFFFF;
    text-decoration: none;
}

/* Grids */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Cards */
.card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 24px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    background-color: var(--hover-bg);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: #F0F8FF;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Product Specific */
.product-card {
    padding: 1.5rem;
}

.product-card .badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
    background-color: #E0F2FE;
    color: #007AFF;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: none;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #0A192F;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.category-badge {
    border: 1px solid #007AFF;
    color: #007AFF;
    background: transparent;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.card-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-show-more {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #007AFF;
    color: #007AFF;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-show-more:hover {
    background: #F0F8FF;
}

.btn-add-cart {
    flex: 1;
    background: #007AFF;
    border: none;
    color: #FFFFFF;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: #0056b3;
}

.category-badge {
    background: transparent;
    border: 1px solid var(--accent-color);
    padding: 4px 10px;
    color: var(--accent-color);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 1rem 0;
}

.buy-btn {
    margin-top: auto;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
}

.buy-btn:hover {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

/* Training List */
.list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.training-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #EAEAEA;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.training-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.training-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.training-meta {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
}

/* Cart Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    animation: modalFadeIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

@media (max-width: 600px) {
    .modal-actions {
        grid-template-columns: 1fr;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}

[data-theme*="dark"] .modal-content ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-actions .cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.card-actions .cta-button:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #000000;
    border-top: var(--glass-border);
    padding: 5rem 5% 2rem;
    margin-top: 5rem;
}

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

.footer-col h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #EAEAEA;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95) !important;
        /* Force dark background */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .nav-links li {
        width: 100%;
        /* Full width list item */
        margin: 0;
        /* Remove margin */
    }

    .nav-links a {
        display: block;
        /* Make link a block element */
        width: 100%;
        /* Full width */
        padding: 1rem 0;
        /* Add padding for click area */
        text-align: center;
    }

    .hamburger,
    .nav-toggle {
        display: flex;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: #161524;
        display: block;
        margin-bottom: 5px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-container {
        padding: 3rem 5%;
    }

    .training-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-info-item .icon {
    font-size: 1.5rem;
    background-color: #E6F7FF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-info-item p {
    color: #7A7A7A;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: var(--glass-border);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.2);
}

/* Page Header */
.page-header {
    background-color: var(--bg-color);
    padding: 4rem 0 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Theme Toggle Button */
.theme-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .theme-btn {
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-color);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.profile-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.profile-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.profile-contact {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    width: 100%;
    text-align: left;
    border-top: 1px solid #eee;
}

.profile-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: start;
    flex-wrap: wrap;
}

.founder-card .profile-image {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    margin: 0;
}

.founder-card .profile-content {
    flex: 1;
    text-align: left;
    align-items: start;
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-card .profile-image {
        margin: 0 auto 1.5rem;
    }

    .founder-card .profile-content {
        text-align: center;
    }

    .profile-bio {
        text-align: center;
    }
}

/* About Page Styles */

/* Mission & Vision */
.mission-vision {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission,
.vision {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission h2,
.vision h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
}

.mission p,
.vision p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Section */
.values {
    padding: 4rem 5%;
    background-color: var(--hover-bg);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(10, 25, 47, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.expertise h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
}

.expertise-card li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    text-align: center;
    color: #FFFFFF;
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: #FFFFFF;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Dark Mode Adjustments for New Sections */
[data-theme*="dark"] .mission,
[data-theme*="dark"] .vision,
[data-theme*="dark"] .value-card,
[data-theme*="dark"] .expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme*="dark"] .value-card i {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

[data-theme*="dark"] .expertise-card li {
    color: #ccc;
}

/* About Page Utilities */
.centered-card {
    max-width: 900px;
    margin: 0 auto;
}

.card-body-padded {
    padding: 2rem;
}

.section-header-centered {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

/* Profile Cards */
.profile-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.profile-image-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.founder-card .card-body {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .founder-card .card-body {
        flex-direction: column;
        text-align: center;
    }
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.profile-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile-contact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profile-contact i {
    color: var(--accent-color);
}