:root {
    /* Colors */
    --primary: #023229;
    --secondary: #FF9400;
    --accent: #FF9500;
    --accent-light: #FFB347;
    --accent-dark: #E67E00;
    --light-accent: #ffae001f;
    --light: #ffffff;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: var(--light);
    --bg-accent: #f7f9fc;
    --glass-bg: rgba(2, 48, 34, 0.1);
    
    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #fafafa;
    --text-secondary-brand: #023229;
    --muted: #6c757d;
    
    /* Borders & Shadows */
    --border-light: #e9ecef;
    --border-radius: 12px;
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-standard: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-standard: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark-section) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--light)
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent);
    opacity: 0.9;
    border-color: var(--accent);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: var(--light) !important;
    border-color: var(--primary) !important;
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-dark-section);
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-accent {
    color: var(--accent);
    border-color: var(--accent);
    background-color: var(--accent-dark-section);
}

/* Nav Link And Tabs */
.custom-tabs .nav-link {
    color: var(--dark);
    background-color: transparent;
    border: 1px solid #dee2e6;
    transition: var(--transition);
  }
  
  .custom-tabs .nav-link:hover {
    background-color: var(--light);
  }
  
  .custom-tabs .nav-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
  }

  
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, .5) !important;
}

/* Custom Color Classes */
.text-gb-primary {
    color: var(--primary) !important;
}

.bg-gb-primary {
    background-color: var(--primary);
}

.bg-accent {
    background-color: var(--accent);
}

.border-accent {
    border-color: var(--accent) !important;
}

/* Button Styles */
.btn-accent {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--light) !important;
    transition: var(--transition-standard) !important;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #e68600 !important;
    border-color: #e68600;
    color: var(--light) !important;
}

.btn-outline-accent {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transition: var(--transition-standard) !important;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background-color: var(--accent) !important;
    color: var(--light) !important;
}

.view-all-btn {
    transition: var(--transition-standard) !important;
}

.view-all-btn:hover {
    background-color: var(--accent);
    color: var(--light) !important;
}

/* Card Styles */
.feature-card,
.ecosystem-card,
.testimonial-card {
    transition: var(--transition-standard);
    height: 100%;
    border-width: 2px !important;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.feature-card:hover,
.ecosystem-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-standard);
}

/* Section Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(3, 59, 58, 0.1);
    transition: var(--transition-standard);
}

@media (max-width: 991.98px) {
    .navbar-top,
    .navbar-main {
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 992px) {
    .mesh-cards {
        position: relative;
        height: 700px;
    }
}

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

.tech-link {
    color: var(--accent);
    transition: var(--transition-standard);
    font-weight: 600;
}

/* Base styles */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* SVG Mesh Background */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

/* Container positioning */
.mesh-container {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    min-height: 100vh;
}

/* Card styling */
.tech-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: var(--transition-standard);
    height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

/* Featured card styling */
.tech-card-featured {
    background: linear-gradient(145deg, var(--bg-white), var(--bg-accent));
    border: 1px solid rgba(255, 149, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.tech-card-featured:hover {
    box-shadow: 0 15px 35px rgba(255, 149, 0, 0.15);
}

/* Icon styling */
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(145deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-standard);
}

.tech-card:hover .feature-icon::after {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

/* Featured icon styling */
.feature-icon-featured {
    width: 80px;
    height: 80px;
}

.feature-icon-featured i {
    font-size: 2.25rem !important;
}

.feature-icon i {
    color: white;
    font-size: 1.75rem;
}

/* Number badge */
.number-badge {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

/* Section title styling */
.section-title {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

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

/* Link styling */
.tech-link {
    color: var(--accent);
    transition: var(--transition-standard);
    font-weight: 600;
}

.tech-link:hover {
    color: var(--accent-dark);
}

.tech-link:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* Connection lines SVG */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 149, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* Logo styling */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.logo span {
    color: var(--accent);
}

/* Button styling */
.btn-tech {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-standard);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.btn-tech:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
    color: white;
}

/* Hub styling for central element */
.central-hub {
    position: relative;
    margin-bottom: 3rem;
}

.hub-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

.hub-icon i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hub-icon span {
    font-size: 1rem;
    font-weight: 600;
}

/* Card content styling */
.card-title {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Feature tag */
.feature-tag {
    position: absolute;
    top: 15px;
    left: -30px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* <!-- Hero CSS --> */
/* Hero section styling */
.hero-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

/* Button styling */

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
}

/* Image overlay and play button */
.hero-image {
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.overlay {
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-image:hover .overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

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

.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(3, 59, 58, 0.1);
    transition: var(--transition-standard);
    border-radius: var(--border-radius);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-standard);
    border-color: var(--accent);
}

.icon-container {
    background: var(--light-accent);
    color: var(--accent) !important;
    border-radius: var(--border-radius);
    transition: var(--transition-standard);
}

.icon-container:hover {
    transform: rotate(5deg);
    background: var(--accent);
    color: var(--light);
}

.gradient-text {
    background: linear-gradient(120deg, var(--text-secondary-brand), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section {
    background: linear-gradient(135deg, var(--light-accent) 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.custom-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.shape-fill {
    fill: rgba(3, 59, 58, 0.05);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card {
    border-left: 4px solid var(--primary);
    background: var(--light);
    transition: var(--transition-standard);
    border-radius: var(--border-radius);
}

.stat-card:hover {
    border-left-width: 12px;
    transform: translateX(10px);
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    transition: var(--transition-standard) !important;
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    transition: var(--transition-standard);
}

.section-title:hover::after {
    width: 100%;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

/* Values Wheel Styles */
.values-wheel {
    height: 800px;
    position: relative;
    margin: 100px 0;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--light);
    border-radius: 50%;
    box-shadow: var(--shadow-standard);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.center-logo img {
    width: 80%;
    height: auto;
}

.values-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.value-card {
    position: absolute;
    width: 300px;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    transform: rotate(var(--rotation)) translateX(300px) rotate(calc(-1 * var(--rotation)));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: rotate(var(--rotation)) translateX(310px) rotate(calc(-1 * var(--rotation))) scale(1.05);
    z-index: 3;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 149, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
    }
}

/* Features and Goals Sections */
.features-section,
.goals-section {
    position: relative;
    overflow: hidden;
}

.hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.goal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goal-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--muted);
}

.goal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: var(--light-accent);
    border-radius: 50%;
    border: 2px solid var(--accent);
}

/* Decorative Elements */
.decoration-circle-1,
.decoration-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.1;
    z-index: 0;
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.decoration-spiral {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary), var(--accent));
    mask-image: radial-gradient(circle, transparent 30%, black 30%);
    opacity: 0.1;
    z-index: 0;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .values-wheel {
        height: auto;
    }

    .value-card {
        position: relative;
        width: 100%;
        transform: none !important;
        margin-bottom: 1.5rem;
        left: 0;
        top: 0;
    }

    .center-logo {
        position: relative;
        margin: 2rem auto;
        transform: none;
        left: auto;
        top: auto;
    }
}

/* Combined Enhanced Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hero-section {
    background: linear-gradient(135deg, var(--light-accent) 0%, rgba(255, 149, 0, 0.2) 100%) !important;
    position: relative;
    overflow: hidden;
}

.custom-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}

.custom-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.shape-fill {
    fill: rgba(37, 99, 235, 0.05);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */

.footer-section {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.footer-link {
    color: var(--text-secondary-brand);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent, var(--text-secondary-brand));
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent, #FF9500);
}

.footer-link:hover::after {
    width: 100%;
}

.contact-link {
    transition: transform 0.3s ease;
}

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

.social-link {
    color: var(--text-secondary-brand, --primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 149, 0, 0.1);
}

.social-link:hover {
    color: #fff;
    background: var(--accent, #FF9500);
    transform: translateY(-3px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(8px);
}

.bg-accent {
    background-color: var(--accent, #FF9500);
}

@media (max-width: 768px) {
    .company-info {
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
}

/* Navbar Styles */
.navbar-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    transition: var(--transition-standard);
    color: var(--text-light);
}

.navbar-main {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #246156 !important;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-link:active {
    display: block;
    padding: .5rem 1rem;
    color: var(--accent) !important;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-brand img {
    max-height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
}

.country-selector {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    border: 1px solid var(--glass-border);
}

.country-selector img {
    width: 20px;
    margin-right: 0.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: var(--transition-standard);
}

.mobile-menu-wrapper.show {
    display: block;
    opacity: 1;
}

.mobile-menu {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu .nav-item {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.show .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--light-accent);
    margin: 0.5rem 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-standard);
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

@media (max-width: 991.98px) {
    .navbar-top, .navbar-main {
        padding: 0.5rem 1rem;
    }

    .navbar-collapse {
        display: none;
    }

    .mobile-menu-wrapper {
        display: none;
    }

    .mobile-menu-wrapper.show {
        display: block;
    }

    .mobile-menu .nav-item {
        animation: slideIn 0.3s ease forwards;
        animation-delay: calc(var(--item-index) * 0.1s);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.nav-item.active .nav-link {
    color: var(--accent) !important;
}

.country-dropdown {
    min-width: 300px;
    padding: 0;
}

.country-list {
    max-height: 300px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.country-option:last-child {
    border-bottom: none;
}

.country-option img {
    width: 24px;
    height: auto;
    margin-right: 1rem;
}

.country-info {
    flex: 1;
}

.country-name {
    font-weight: 500;
}

.language-selector {
    padding: 0.5rem 0;
}

.language-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: var(--transition-standard);
}

.language-btn.active {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
}

.language-btn:hover {
    transform: translateY(-1px);
    background: var(--accent-light);
    border-color: var(--accent-light);
}
