/* Global Styles */
:root {
    --neon-orange: #ff6600;
    --neon-orange-light: #ff8533;
    --neon-yellow: #ffcc00;
    --neon-white: #ffffff;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: rgba(16, 16, 32, 0.8);
    --section-padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    --card-padding: clamp(1.5rem, 3vw, 2.5rem);
    --border-radius: 15px;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Orbitron', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* Fix for modal scroll position */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: var(--scroll-top, 0);
}

/* Cosmic Background */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 133, 51, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   HEADER STYLES WITH LOGO - ENHANCED MOBILE
   ============================================ */
header {
    padding: clamp(10px, 2vw, 15px) 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(5, 5, 16, 0.98);
    padding: 8px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 40px);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid #FF6600;
    padding: 3px;
    background: white;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
    border-color: #FFCC00;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    background: linear-gradient(45deg, #FF6600, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

/* MOBILE MENU BUTTON - FIXED: Hide on desktop, show on mobile */
/* ============================================
   HAMBURGER MENU BUTTON - GUARANTEED FIX
   ============================================ */

/* Mobile Menu Button - ALWAYS USE THIS EXACT CODE */
/* ============================================
   HAMBURGER MENU - GUARANTEED WORKING FIX
   ============================================ */

/* Mobile Menu Button - FIXED VERSION */
/* ============================================
   ENHANCED MOBILE MENU - GUARANTEED WORKING
   ============================================ */

/* Mobile Menu Button - Hide by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--neon-yellow);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}

/* Mobile Menu Overlay */
/* ============================================
   MOBILE MENU OVERLAY FIX
   ============================================ */

/* Mobile Menu Overlay - FIXED */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* This allows clicks to pass through when not active */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Only blocks clicks when active */
}

/* Desktop Navigation */
@media (min-width: 993px) {
    .nav-box {
        display: block;
        background: rgba(16, 16, 32, 0.9);
        border-radius: var(--border-radius);
        padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 30px);
        border: 1px solid rgba(255, 102, 0, 0.3);
        box-shadow: 
            0 0 30px rgba(255, 102, 0, 0.2),
            inset 0 0 20px rgba(255, 102, 0, 0.1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: clamp(20px, 3vw, 40px);
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: clamp(0.7rem, 1.2vw, 0.8rem);
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--neon-orange);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    nav ul li a:hover::after {
        width: 80%;
    }

    nav ul li a:hover {
        color: var(--neon-orange);
    }
}

/* Mobile Navigation Menu - FIXED VERSION */
@media (max-width: 992px) {
    /* Show hamburger button on mobile */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(16, 16, 32, 0.9);
        border: 1px solid rgba(255, 102, 0, 0.4);
        color: var(--neon-yellow);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        transition: var(--transition);
        margin: 0;
        padding: 0;
        min-height: 44px;
        min-width: 44px;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 102, 0, 0.3);
        transform: scale(1.05);
    }

    /* Hide desktop nav-box on mobile by default */
    .nav-box {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 20px 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }

    /* Show mobile menu when active */
    .nav-box.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    /* Mobile menu navigation */
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 8px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.4s ease forwards;
    }

    .nav-box.active nav ul li {
        animation-delay: calc(var(--i) * 0.1s);
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav ul li a {
        display: block;
        padding: clamp(18px, 4vw, 20px) clamp(20px, 5vw, 30px);
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        font-weight: 600;
        border: 2px solid rgba(255, 102, 0, 0.3);
        border-radius: 15px;
        margin: 5px 0;
        transition: all 0.3s ease;
        background: rgba(16, 16, 32, 0.8);
        color: #fff;
        text-decoration: none;
        min-height: 44px;
        min-width: 44px;
    }

    nav ul li a:hover,
    nav ul li a:active {
        background: rgba(255, 102, 0, 0.2);
        border-color: var(--neon-orange);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
        color: var(--neon-orange);
    }

    nav ul li a::after {
        display: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: block;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .nav-box {
        width: 100%;
        left: -100%;
        padding: 80px 15px 30px;
    }

    .nav-box.active {
        left: 0;
    }

    nav ul li a {
        padding: 12px 15px;
        font-size: 1rem;
    }
}


/* Hero Section - Enhanced for Mobile */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    background: linear-gradient(rgba(5, 5, 16, 0.8), rgba(10, 10, 26, 0.9)), url('ktar.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 15vw, 120px) clamp(1rem, 3vw, 2rem);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 102, 0, 0.1), 
        rgba(255, 204, 0, 0.1), 
        rgba(255, 133, 51, 0.1));
    animation: hologramPulse 8s ease-in-out infinite;
}

@keyframes hologramPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
    color: white;
}

.hero h1 span {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow), var(--neon-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 30px rgba(255, 102, 0, 0.5),
        0 0 60px rgba(255, 204, 0, 0.3);
}

.hero h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
    transform: scaleX(0);
    transform-origin: right;
    animation: underline 1.5s infinite alternate;
}

@keyframes underline {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.typewriter {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    min-height: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typewriter span {
    border-right: 3px solid var(--neon-orange);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--neon-orange); }
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: clamp(1rem, 3vw, 2rem);
    width: 100%;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.quantum-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 40px);
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 
        0 0 20px rgba(255, 102, 0, 0.3),
        0 0 40px rgba(255, 204, 0, 0.2);
    z-index: 1;
    min-height: 44px;
    min-width: 44px;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .quantum-btn {
        width: auto;
    }
}

.quantum-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.quantum-btn:hover::before {
    left: 100%;
}

.quantum-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 102, 0, 0.5),
        0 0 60px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 204, 0, 0.1);
}

.scroll-down {
    position: absolute;
    bottom: clamp(20px, 5vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-orange);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    animation: bounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 0 10px var(--neon-orange);
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Consistent Section Styling */
.section {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    position: relative;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: clamp(60px, 15vw, 100px);
    height: 4px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-orange);
}

/* Mission & Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin: clamp(2rem, 5vw, 4rem) 0;
}

@media (min-width: 768px) {
    .mission-vision {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.mission-card, .vision-card {
    background: rgba(16, 16, 32, 0.8);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 3rem);
    border: 1px solid rgba(255, 102, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--neon-orange);
}

.mission-card h3, .vision-card h3 {
    color: var(--neon-yellow);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mission-card p, .vision-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Learning Styles Section */
.learning-styles {
    margin: clamp(3rem, 6vw, 6rem) 0;
}

.style-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 768px) {
    .style-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.style-card {
    background: rgba(16, 16, 32, 0.8);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 102, 0, 0.3);
    transition: var(--transition);
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--neon-yellow);
}

.style-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neon-orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.style-card h4 {
    color: var(--neon-yellow);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.style-card ul {
    list-style: none;
    padding-left: 0;
}

.style-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.style-card li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-orange);
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 204, 0, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 4rem);
    margin: clamp(2rem, 4vw, 4rem) 0;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.event-card {
    background: rgba(16, 16, 32, 0.9);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
    border-color: var(--neon-yellow);
}

.event-card h4 {
    color: var(--neon-yellow);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.event-card ul {
    list-style: none;
    padding-left: 0;
}

.event-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.event-card li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--neon-orange);
}

/* Partners Section - UPDATED */
.partners-section {
    margin: clamp(2rem, 4vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 4rem);
}

.partners-section .section-container {
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.partner-card {
    background: rgba(16, 16, 32, 0.95);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 102, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 2;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--neon-yellow);
}

.partner-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neon-orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.partner-card h4 {
    color: var(--neon-yellow);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Next button row inside partner cards */
.partner-card-next-row {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.partner-card-next-btn {
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.9), rgba(0, 153, 255, 0.9));
    color: white;
    border: none;
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 25px);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 250px;
    min-height: 44px;
}

.partner-card-next-btn:hover {
    background: linear-gradient(45deg, rgba(0, 102, 204, 1), rgba(0, 153, 255, 1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.partner-card-next-btn i {
    transition: transform 0.3s ease;
}

.partner-card-next-btn:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    margin: clamp(3rem, 6vw, 6rem) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(16, 16, 32, 0.8);
    border-radius: var(--border-radius);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(255, 102, 0, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.faq-question {
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2.5vw, 2rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--neon-yellow);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
}

.faq-answer {
    padding: 0 clamp(1rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    display: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
}

.about-text {
    flex: 1;
    width: 100%;
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-yellow);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    flex: 1;
    width: 100%;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.about-image.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

/* Brainy Kids Section */
.brainy-kids {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 204, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 4rem);
    margin: clamp(1rem, 3vw, 2rem) 0;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.brainy-kids::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('ktar.jpg') no-repeat center center/cover;
    opacity: 0.1;
}

.brainy-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brainy-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Photos Section */
.brainy-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 60px);
    padding: clamp(2rem, 4vw, 4rem);
    background: rgba(16, 16, 32, 0.5);
    border-radius: var(--border-radius);
    margin: clamp(1rem, 3vw, 2rem) 0;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

@media (min-width: 768px) {
    .brainy-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.brainy-images img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: var(--transition);
    transform: translateY(50px);
    opacity: 0;
}

.brainy-images img.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.brainy-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255,102,0,0.3);
}

/* Infographic Section - COMPLETELY REWORKED FOR MOBILE */
.infographic-section {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 2vw, 2rem);
    position: relative;
    overflow: visible;
}

.infographic-container {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

@media (min-width: 992px) {
    .infographic-container {
        height: 850px;
        flex-direction: row;
        padding: 0;
    }
}

.infographic-central-circle {
    position: relative;
    width: clamp(200px, 40vw, 320px);
    height: clamp(200px, 40vw, 320px);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 102, 0, 0.15) 0%,
        rgba(255, 204, 0, 0.1) 70%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    box-shadow: 
        0 0 80px rgba(255, 102, 0, 0.4),
        0 0 120px rgba(255, 204, 0, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.08);
    animation: centralPulse 4s infinite alternate;
    border: 2px solid rgba(255, 204, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .infographic-central-circle {
        position: absolute;
        margin-bottom: 0;
    }
}

@keyframes centralPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 80px rgba(255, 102, 0, 0.4),
                    0 0 120px rgba(255, 204, 0, 0.3),
                    inset 0 0 60px rgba(255, 255, 255, 0.08);
    }
    100% { 
        transform: scale(1.02);
        box-shadow: 0 0 100px rgba(255, 102, 0, 0.5),
                    0 0 140px rgba(255, 204, 0, 0.4),
                    inset 0 0 80px rgba(255, 255, 255, 0.1);
    }
}

.infographic-title {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.infographic-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.8rem;
    max-width: 240px;
    text-align: center;
    padding: 0 1rem;
}

/* MOBILE-FRIENDLY INFOGRAPHIC PLANETS */
.infographic-planets-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 991px) {
    .infographic-planets-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .infographic-planets-container {
        display: none;
    }
}

.infographic-planet {
    background: rgba(16, 16, 32, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 102, 0, 0.1);
    cursor: pointer;
    text-align: center;
    width: 100%;
    position: relative;
}

.infographic-planet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.15) 0%, 
        rgba(255, 204, 0, 0.15) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
}

.infographic-planet:hover::before {
    opacity: 1;
}

.infographic-planet:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(255, 102, 0, 0.4),
        0 0 80px rgba(255, 204, 0, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 204, 0, 0.5);
}

.planet-icon {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
}

.infographic-planet:hover .planet-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.7));
}

.planet-name {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--neon-yellow);
    text-align: center;
    line-height: 1.3;
}

.planet-desc {
    font-size: clamp(0.85rem, 2vw, 0.92rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-align: center;
}

/* DESKTOP PLANET LAYOUT (Hidden on mobile) */
@media (min-width: 992px) {
    .infographic-planets-container {
        display: none;
    }
    
    .infographic-planet {
        position: absolute;
        width: 230px;
        height: 230px;
        border-radius: 20px;
        background: rgba(16, 16, 32, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.8rem;
        transition: var(--transition);
        border: 1px solid rgba(255, 102, 0, 0.3);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 102, 0, 0.1);
        z-index: 15;
        cursor: pointer;
    }
    
    /* Planet positions for desktop */
    #planet1 { top: 3%; left: 40%; }
    #planet2 { top: 3%; right: 20%; }
    #planet3 { top: 3%; left: 20%; }
    #planet4 { top: 37%; right: 10%; }
    #planet5 { bottom: 36%; left: 11%; }
    #planet6 { bottom: 1%; right: 40%; }
    #planet7 { bottom: 1%; left: 20%; }
    #planet8 { bottom: 1%; right: 20%; }
}

/* Remove connection lines on mobile */
@media (max-width: 991px) {
    .infographic-connection,
    .infographic-orbit {
        display: none;
    }
}

/* Footer - Enhanced for Mobile */
footer {
    background: rgba(5, 5, 16, 0.95);
    margin-top: clamp(3rem, 6vw, 100px);
    padding: clamp(3rem, 6vw, 80px) 0 clamp(1.5rem, 3vw, 30px);
    position: relative;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 40px);
    padding: 0 clamp(1.5rem, 3vw, 40px);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.footer-node {
    background: rgba(16, 16, 32, 0.8);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 30px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.footer-node:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
    transform: translateY(-5px);
}

.footer-node h3 {
    color: var(--neon-orange);
    margin-bottom: 1.5rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-shadow: 0 0 10px var(--neon-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
    color: var(--neon-yellow);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--neon-yellow);
}

/* Footer Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 8vw, 45px);
    height: clamp(40px, 8vw, 45px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-yellow);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    transition: var(--transition);
    text-shadow: 0 0 5px var(--neon-yellow);
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
}

.social-links a:hover {
    background: var(--neon-orange);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: 0 clamp(1.5rem, 3vw, 40px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-yellow));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    min-width: 44px;
    min-height: 44px;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
}

/* Animation Classes */
.animate-left, .animate-right, .animate-up {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-up {
    transform: translateY(50px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Discover Button Styles */
.discover-row {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discover-btn {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(0, 153, 255, 0.8));
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 24px);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    min-height: 44px;
}

.discover-btn:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 1), rgba(0, 153, 255, 1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.discover-btn .dropdown-icon {
    transition: transform 0.3s ease;
}

/* Gallery Modal Styles - ENHANCED FOR MOBILE */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

@media (min-width: 768px) {
    .gallery-modal {
        padding: 20px;
    }
}

.gallery-modal.active {
    display: block !important;
    opacity: 1;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border-radius: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

@media (min-width: 768px) {
    .modal-content {
        border-radius: 20px;
        width: 95%;
        margin: 30px auto;
        max-height: 90vh;
        height: auto;
    }
}

.modal-header {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.9), rgba(0, 153, 255, 0.9));
    padding: clamp(20px, 3vw, 25px) clamp(15px, 3vw, 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 70px;
}

.modal-header h3 {
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 0;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    cursor: pointer;
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: clamp(15px, 3vw, 30px);
    overflow-y: auto;
    max-height: calc(100vh - 70px);
    -webkit-overflow-scrolling: touch;
}

/* Filter Styles */
.category-filter, .country-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.filter-btn, .country-btn {
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 24px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s ease;
    min-height: 44px;
}

.filter-btn:hover, .country-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.5);
}

.filter-btn.active, .country-btn.active {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.9), rgba(0, 153, 255, 0.9));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

/* Modal Media Grid */
.modal-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(15px, 3vw, 25px);
    padding: 20px 0;
}

@media (min-width: 768px) {
    .modal-media-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.modal-media-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.modal-media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 153, 255, 0.3);
}

/* Lightbox Styles - Enhanced for Mobile */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lightbox.active {
    display: flex !important;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

@media (min-width: 768px) {
    .lightbox-content {
        max-height: 90vh;
        height: auto;
    }
}

.lightbox-close {
    position: absolute;
    top: clamp(10px, 3vw, 20px);
    right: clamp(10px, 3vw, 20px);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: clamp(1rem, 2vw, 1.5rem);
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: clamp(10px, 3vw, 20px);
}

.lightbox-nav.next {
    right: clamp(10px, 3vw, 20px);
}

.lightbox-media {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .lightbox-media {
        height: 70vh;
    }
}

.lightbox-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.lightbox-caption {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(15px, 3vw, 25px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption h4 {
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.lightbox-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.lightbox-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Partners Modal Specific Styles */
.partners-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

@media (min-width: 768px) {
    .partners-modal {
        padding: 20px;
    }
}

.partners-modal.active {
    display: block !important;
    opacity: 1;
    animation: modalFadeIn 0.4s ease;
}

/* Country Filter */
.country-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.country-btn {
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.5);
}

.country-btn.active {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.9), rgba(255, 204, 0, 0.9));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.country-btn i {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Partners List */
.partners-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(15px, 3vw, 25px);
    padding: 20px 0;
}

@media (min-width: 768px) {
    .partners-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 204, 0, 0.3);
}

.partner-logo-container {
    height: clamp(150px, 30vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.partner-item-info {
    padding: clamp(15px, 3vw, 20px);
}

.partner-item-name {
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-item-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.partner-item-location,
.partner-item-country {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-item-location i,
.partner-item-country i {
    color: rgba(0, 153, 255, 0.8);
    width: 16px;
}

.partner-item-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 204, 0, 0.2);
    color: #ffcc00;
    border-radius: 20px;
    font-size: clamp(0.75rem, 2vw, 0.8rem);
    font-weight: 600;
}

/* ============================================
   ENHANCED PARTNER DETAIL MODAL - PROFESSIONAL DESIGN
   ============================================ */
/* ============================================
   ENHANCED PARTNER DETAILS MODAL - MODERN DESIGN
   ============================================ */

.partner-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-detail-modal.active {
    display: flex !important;
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

/* Modern Modal Container */
.partner-detail-modal .modal-content {
    background: linear-gradient(165deg, 
        rgba(20, 20, 40, 0.98) 0%, 
        rgba(30, 25, 60, 0.98) 100%);
    border-radius: 24px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 102, 0, 0.2),
        0 0 0 3px rgba(255, 204, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern Header with Gradient */
.partner-detail-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 35px;
    background: linear-gradient(90deg, 
        rgba(255, 102, 0, 0.25) 0%, 
        rgba(255, 204, 0, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 10;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 102, 0, 0.2);
}

.partner-detail-modal .modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #FFCC00;
    font-weight: 800;
    text-align: center;
    flex: 1;
    text-shadow: 
        0 0 30px rgba(255, 204, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    background: linear-gradient(45deg, #FF6600, #FFCC00, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Back Button */
.partner-back-btn-container {
    position: absolute;
    top: 28px;
    left: 35px;
    z-index: 11;
}

.partner-back-btn {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.95), 
        rgba(255, 204, 0, 0.9));
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 6px 25px rgba(255, 102, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.partner-back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.7s ease;
}

.partner-back-btn:hover::before {
    left: 100%;
}

.partner-back-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 1), 
        rgba(255, 204, 0, 1));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 35px rgba(255, 102, 0, 0.6),
        0 0 30px rgba(255, 204, 0, 0.4);
}

.partner-back-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    font-weight: bold;
}

.partner-back-btn:hover i {
    transform: translateX(-10px);
}

/* Modern Close Button */
.partner-detail-modal .modal-close {
    position: absolute;
    top: 28px;
    right: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.partner-detail-modal .modal-close:hover {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.9), 
        rgba(255, 204, 0, 0.8));
    transform: rotate(90deg) scale(1.2);
    color: #000;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

/* Modern Content Layout */
.partner-detail-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    overflow-y: visible;
}

/* Modern Logo Column */
.partner-logo-column {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.1) 0%, 
        rgba(255, 204, 0, 0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 
        inset 0 2px 15px rgba(255, 255, 255, 0.08),
        0 15px 50px rgba(0, 0, 0, 0.4);
}

.partner-detail-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFFFFF, #F5F5F5);
    padding: 30px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 102, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-detail-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.2), 
        rgba(255, 204, 0, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.partner-detail-logo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 50px rgba(255, 204, 0, 0.4);
}

.partner-detail-logo:hover::after {
    opacity: 1;
}

/* Modern Company Type Badge */
.partner-type-badge {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.3), 
        rgba(255, 204, 0, 0.25));
    color: #FFCC00;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 204, 0, 0.5);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    box-shadow: 
        0 6px 20px rgba(255, 102, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-type-badge::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: left 0.6s ease;
}

.partner-type-badge:hover::before {
    left: 100%;
}

.partner-type-badge:hover {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.4), 
        rgba(255, 204, 0, 0.35));
    transform: translateY(-3px) scale(1.08);
    border-color: rgba(255, 204, 0, 0.7);
    box-shadow: 
        0 10px 30px rgba(255, 102, 0, 0.4),
        0 0 40px rgba(255, 204, 0, 0.3);
    color: #FFCC00;
}

/* Modern Info Column */
.partner-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Modern Company Header */
.partner-header {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-header h3 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 204, 0, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 40px rgba(255, 204, 0, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
}

.partner-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 102, 0, 0.9), 
        rgba(255, 204, 0, 0.8));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.partner-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    font-style: italic;
    margin: 25px 0;
    padding-left: 30px;
    font-weight: 500;
    position: relative;
    line-height: 1.6;
}

.partner-tagline::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 3rem;
    color: rgba(255, 204, 0, 0.6);
    font-family: Georgia, serif;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

/* Modern Key Information Cards */
.partner-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 102, 0, 0.9), 
        rgba(255, 204, 0, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.info-card-header i {
    color: #FFCC00;
    font-size: 1.8rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 204, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 6px 15px rgba(255, 204, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover .info-card-header i {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 204, 0, 0.3);
    box-shadow: 
        0 8px 20px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.info-card-header h4 {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFFFFF, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card-content {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 54px;
    position: relative;
}

.info-card-content a {
    color: rgba(0, 204, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    position: relative;
}

.info-card-content a:hover {
    color: #FFCC00;
    border-bottom-color: rgba(255, 204, 0, 0.7);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.info-card-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFCC00, #FF6600);
    transition: width 0.3s ease;
}

.info-card-content a:hover::after {
    width: 100%;
}

/* Modern Description Section */
.partner-description-section {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.12) 0%, 
        rgba(255, 204, 0, 0.08) 100%);
    border-radius: 18px;
    padding: 35px;
    border-left: 6px solid rgba(255, 102, 0, 0.8);
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 20px rgba(255, 255, 255, 0.05),
        0 15px 50px rgba(0, 0, 0, 0.3);
}

.partner-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, 
        rgba(255, 204, 0, 0.2) 0%, 
        transparent 70%);
    opacity: 0.5;
}

.partner-description-section h4 {
    color: #FFCC00;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 
        0 2px 15px rgba(255, 204, 0, 0.3),
        0 0 30px rgba(255, 204, 0, 0.2);
    letter-spacing: 1px;
}

.partner-description-section h4 i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.3), 
        rgba(255, 204, 0, 0.25));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 18px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.partner-description {
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.9;
    margin: 0;
    font-size: 1.15rem;
    text-align: justify;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    border-left: 3px solid rgba(255, 204, 0, 0.3);
}

/* Modern Features Section */
.partner-features-section {
    margin-bottom: 40px;
}

.partner-features-section h4 {
    color: #FFCC00;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 
        0 2px 15px rgba(255, 204, 0, 0.3),
        0 0 30px rgba(255, 204, 0, 0.2);
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.15), 
        rgba(255, 204, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-8px) translateX(8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 102, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    color: #FFCC00;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.25), 
        rgba(255, 204, 0, 0.2));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 15px rgba(255, 204, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover i {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.35), 
        rgba(255, 204, 0, 0.3));
    box-shadow: 
        0 8px 20px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-item span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Modern Contact Section */
.partner-contact-section {
    background: linear-gradient(165deg, 
        rgba(255, 102, 0, 0.2) 0%, 
        rgba(255, 204, 0, 0.12) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 20px rgba(255, 255, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.partner-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at top right, 
        rgba(255, 102, 0, 0.25) 0%, 
        transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.partner-contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at bottom left, 
        rgba(255, 204, 0, 0.2) 0%, 
        transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.partner-contact-section > * {
    position: relative;
    z-index: 1;
}

.partner-contact-section h4 {
    color: #FFCC00;
    font-size: 1.7rem;
    margin-bottom: 35px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 18px;
    letter-spacing: 1px;
    text-shadow: 
        0 2px 20px rgba(255, 204, 0, 0.4),
        0 0 40px rgba(255, 204, 0, 0.3);
}

.partner-contact-section h4 i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.3), 
        rgba(255, 204, 0, 0.25));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.15), 
        rgba(255, 204, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 204, 0, 0.5);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-header i {
    color: #FFCC00;
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.3), 
        rgba(255, 204, 0, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 6px 18px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-header i {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.4), 
        rgba(255, 204, 0, 0.35));
    box-shadow: 
        0 8px 22px rgba(255, 204, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-header h5 {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFFFFF, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail:hover {
    transform: translateX(8px);
    border-bottom-color: rgba(255, 204, 0, 0.3);
}

.contact-detail i {
    color: rgba(0, 204, 255, 0.95);
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.4s ease;
}

.contact-detail:hover i {
    color: #FFCC00;
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.contact-detail a {
    color: rgba(0, 204, 255, 0.95);
    text-decoration: none;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    position: relative;
    word-break: break-all;
    flex: 1;
}

.contact-detail a:hover {
    color: #FFCC00;
    border-bottom-color: rgba(255, 204, 0, 0.7);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.contact-detail a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFCC00, #FF6600);
    transition: width 0.4s ease;
}

.contact-detail a:hover::after {
    width: 100%;
}

/* Modern Contact Actions */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.contact-btn {
    flex: 1;
    min-width: 200px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
}

.contact-btn:hover i {
    transform: translateX(10px);
}

.contact-btn-primary {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.95), 
        rgba(0, 204, 255, 0.9),
        rgba(0, 122, 255, 0.95));
    color: white;
    box-shadow: 
        0 8px 30px rgba(0, 122, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-btn-primary:hover {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 1), 
        rgba(0, 204, 255, 1));
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.7),
        0 0 50px rgba(0, 204, 255, 0.5);
}

.contact-btn-secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(255, 204, 0, 0.5);
    box-shadow: 
        0 12px 40px rgba(255, 102, 0, 0.4),
        0 0 50px rgba(255, 204, 0, 0.3);
}

/* Modern Categories */
.partner-categories-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-categories-section h5 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #FFFFFF, #FFCC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-categories-section h5 i {
    color: #FFCC00;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.partner-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.25), 
        rgba(255, 204, 0, 0.2));
    color: rgba(255, 204, 0, 0.98);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 204, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(255, 102, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.category-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    transition: left 0.6s ease;
}

.category-tag:hover {
    background: linear-gradient(135deg, 
        rgba(255, 102, 0, 0.35), 
        rgba(255, 204, 0, 0.3));
    transform: translateY(-4px) scale(1.08);
    border-color: rgba(255, 204, 0, 0.7);
    box-shadow: 
        0 10px 30px rgba(255, 102, 0, 0.4),
        0 0 40px rgba(255, 204, 0, 0.3);
    color: #FFCC00;
}

.category-tag:hover::before {
    left: 100%;
}

.category-tag i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.category-tag:hover i {
    transform: rotate(20deg) scale(1.2);
}

/* Animation for content appearance */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.partner-info-column > * {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.partner-info-column > *:nth-child(1) { animation-delay: 0.1s; }
.partner-info-column > *:nth-child(2) { animation-delay: 0.2s; }
.partner-info-column > *:nth-child(3) { animation-delay: 0.3s; }
.partner-info-column > *:nth-child(4) { animation-delay: 0.4s; }
.partner-info-column > *:nth-child(5) { animation-delay: 0.5s; }
.partner-info-column > *:nth-child(6) { animation-delay: 0.6s; }
.partner-info-column > *:nth-child(7) { animation-delay: 0.7s; }

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .partner-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .partner-detail-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .partner-back-btn-container {
        top: 20px;
        left: 20px;
    }
    
    .partner-detail-modal .modal-close {
        top: 20px;
        right: 20px;
    }
    
    .partner-detail-modal .modal-header {
        padding: 22px 25px;
    }
    
    .partner-logo-column {
        position: static;
        padding: 25px;
    }
    
    .partner-header h3 {
        font-size: 2.2rem;
    }
    
    .partner-tagline {
        font-size: 1.15rem;
    }
    
    .partner-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-btn {
        min-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-header h3 {
        font-size: 1.8rem;
    }
    
    .partner-tagline {
        font-size: 1.1rem;
    }
    
    .info-card-content {
        font-size: 1.05rem;
        padding-left: 0;
    }
    
    .partner-description {
        font-size: 1.05rem;
    }
    
    .contact-detail {
        font-size: 1rem;
    }
    
    .partner-back-btn,
    .contact-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partner-detail-content {
        padding: 20px;
    }
    
    .partner-header h3 {
        font-size: 1.6rem;
    }
    
    .partner-tagline {
        font-size: 1rem;
    }
    
    .partner-description {
        font-size: 1rem;
    }
    
    .contact-detail {
        font-size: 0.95rem;
    }
    
    .category-tag {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Loading State */
.partner-detail-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-direction: column;
    gap: 25px;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #FFCC00;
    border-right-color: #FF6600;
    border-bottom-color: #FF8533;
    border-left-color: #FFCC00;
    animation: spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 
        0 0 40px rgba(255, 204, 0, 0.4),
        inset 0 0 20px rgba(255, 204, 0, 0.2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    background: linear-gradient(45deg, #FFCC00, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Empty State */
.partner-detail-empty {
    text-align: center;
    padding: 100px 30px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.partner-detail-empty i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0.4;
    color: #FFCC00;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.partner-detail-empty p {
    font-size: 1.3rem;
    margin: 0;
    max-width: 450px;
    line-height: 1.6;
    font-weight: 500;
}

/* Add particle effects for modern look */
.particle-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #FF6600, #FFCC00);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(360deg); }
}

/* Glass morphism effect for cards */
.glass-effect {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
  /* Additional styles for video thumbnails */
        .video-thumbnail-container {
            position: relative;
            width: 100%;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            background: #000;
        }
        
        .video-thumbnail-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .modal-media-item:hover .video-thumbnail-video {
            transform: scale(1.05);
        }
        
        .video-thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 15px;
            z-index: 2;
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 102, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
        }
        
        .video-play-button i {
            font-size: 24px;
            color: white;
            margin-left: 5px;
        }
        
        .modal-media-item:hover .video-play-button {
            background: rgba(255, 204, 0, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-badge {
            background: linear-gradient(45deg, #FF6600, #FFCC00);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .video-duration {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 3;
        }
        
        .video-thumbnail-title {
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 5px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        
        .category-info {
            text-align: center;
            padding: 10px 0;
            margin-bottom: 20px;
            background: rgba(255, 102, 0, 0.1);
            border-radius: 10px;
            border-left: 4px solid #FF6600;
        }
        
        .category-info p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin: 0;
            padding: 10px;
        }
        
        .category-info i {
            color: #FF6600;
            margin-right: 10px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .video-thumbnail-container {
                height: 180px;
            }
            
            .video-play-button {
                width: 50px;
                height: 50px;
            }
            
            .video-play-button i {
                font-size: 20px;
            }
            
            .category-info p {
                font-size: 1rem;
                padding: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .video-thumbnail-container {
                height: 150px;
            }
            
            .video-thumbnail-title {
                font-size: 0.9rem;
            }
            
            .category-info p {
                font-size: 0.9rem;
            }
        }
        
        /* Partner badge styles */
        .partner-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        .badge-bekaa {
            background: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .badge-south {
            background: rgba(33, 150, 243, 0.2);
            color: #2196F3;
            border: 1px solid rgba(33, 150, 243, 0.3);
        }
        
        .badge-beirut {
            background: rgba(255, 193, 7, 0.2);
            color: #FFC107;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }
        
        .badge-north {
            background: rgba(156, 39, 176, 0.2);
            color: #9C27B0;
            border: 1px solid rgba(156, 39, 176, 0.3);
        }
        
        .badge-iraq {
            background: rgba(244, 67, 54, 0.2);
            color: #F44336;
            border: 1px solid rgba(244, 67, 54, 0.3);
        }
        
        .partner-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        /* Country flag styles */
        .country-flag {
            display: inline-block;
            width: 20px;
            height: 12px;
            border-radius: 2px;
            vertical-align: middle;
            margin-right: 5px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .flag-lebanon {
            background-image: url('https://flagcdn.com/w40/lb.png');
            background-size: cover;
        }
        
        .flag-iraq {
            background-image: url('https://flagcdn.com/w40/iq.png');
            background-size: cover;
        }
        
        /* Partners section with blurred background - LESS BLUR */
        .partners-section {
            position: relative;
            overflow: hidden;
        }
        
        .partners-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('souwar/partners.jpg'); /* UPDATED PATH */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: blur(4px) brightness(0.8); /* Reduced blur from 8px to 4px, increased brightness */
            z-index: -1;
        }
        
        .partners-section .section-container {
            position: relative;
            z-index: 2;
        }
        
        /* Next button inside partner cards */
        .partner-card-next-row {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
        }
        
        .partner-card-next-btn {
            background: linear-gradient(45deg, rgba(0, 102, 204, 0.9), rgba(0, 153, 255, 0.9));
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            max-width: 250px;
        }
        
        .partner-card-next-btn:hover {
            background: linear-gradient(45deg, rgba(0, 102, 204, 1), rgba(0, 153, 255, 1));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
        }
        
        .partner-card-next-btn i {
            transition: transform 0.3s ease;
        }
        
        .partner-card-next-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Main next partners button */
        .next-partners-btn {
            display: block;
            margin: 40px auto 0;
            padding: 15px 40px;
            background: linear-gradient(45deg, #FF6600, #FFCC00);
            color: #000;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .next-partners-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
            background: linear-gradient(45deg, #FFCC00, #FF6600);
        }
        
        .next-partners-btn:active {
            transform: translateY(0);
        }
        
        .next-partners-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .next-partners-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Back button in partner detail modal - UPDATED POSITION */
        .partner-back-btn-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
        }
        
        .partner-back-btn {
            background: linear-gradient(45deg, rgba(102, 102, 102, 0.9), rgba(153, 153, 153, 0.9));
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0;
        }
        
        .partner-back-btn:hover {
            background: linear-gradient(45deg, rgba(102, 102, 102, 1), rgba(153, 153, 153, 1));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 102, 102, 0.4);
        }
        
        .partner-back-btn i {
            transition: transform 0.3s ease;
        }
        
        .partner-back-btn:hover i {
            transform: translateX(-5px);
        }
        
        /* Update partner detail modal header to accommodate back button */
        .partner-detail-modal .modal-header {
            position: relative;
            min-height: 60px;
        }
        
        @media (max-width: 768px) {
            .next-partners-btn {
                padding: 12px 30px;
                font-size: 1rem;
                margin-top: 30px;
            }
            
            .partner-card-next-btn {
                padding: 8px 20px;
                font-size: 0.85rem;
            }
            
            .partner-back-btn-container {
                top: 15px;
                left: 15px;
            }
            
            .partner-back-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }
/* Holographic effect for headers */
.holographic-text {
    background: linear-gradient(45deg, 
        #FF6600, #FF8533, #FFCC00, #FF8533, #FF6600);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 8s ease-in-out infinite;
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Video thumbnail responsive fixes */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: clamp(150px, 30vw, 200px);
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-media-item:hover .video-thumbnail-video {
    transform: scale(1.05);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(10px, 2vw, 15px);
    z-index: 2;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    background: rgba(255, 102, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
    min-width: 44px;
    min-height: 44px;
}

.video-play-button i {
    font-size: clamp(16px, 3vw, 24px);
    color: white;
    margin-left: 5px;
}

.modal-media-item:hover .video-play-button {
    background: rgba(255, 204, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
    background: linear-gradient(45deg, #FF6600, #FFCC00);
    color: #000;
    padding: clamp(3px, 1vw, 5px) clamp(10px, 2vw, 15px);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: clamp(3px, 1vw, 5px) clamp(8px, 2vw, 10px);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.video-thumbnail-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-top: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .infographic-planet:hover,
    .quantum-btn:hover,
    .modal-media-item:hover,
    .partner-item:hover,
    .video-thumbnail-container:hover .video-thumbnail-video,
    .modal-media-item:hover .video-play-button {
        transform: none !important;
    }
    
    .quantum-btn:hover::before {
        left: -100%;
    }
    
    /* Make touch targets larger on mobile */
    nav ul li a,
    .quantum-btn,
    .discover-btn,
    .filter-btn,
    .country-btn,
    .faq-question,
    .video-play-button,
    .modal-close,
    .lightbox-close,
    .lightbox-nav,
    .partner-detail-back-btn,
    .partner-detail-modal .modal-close,
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
    
    nav ul {
        height: -webkit-fill-available;
    }
    
    .modal-content,
    .lightbox-content,
    .partner-detail-modal .modal-content {
        height: -webkit-fill-available;
    }
}

/* Safe area support for iOS */
@supports (padding: max(0px)) {
    header {
        padding-top: max(15px, env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: max(60px, calc(env(safe-area-inset-top) + 60px));
    }
    
    .scroll-down {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
    }
    
    .back-to-top {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
    }
}

/* High DPI screen optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .hero,
    .cosmic-bg,
    .stars,
    .particles,
    .neural-network,
    .scroll-down,
    .back-to-top,
    .mobile-menu-btn,
    .cta-buttons,
    .social-links,
    .discover-btn,
    .filter-btn,
    .country-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    
    header {
        position: static !important;
        background: white !important;
        color: black !important;
        padding: 10px 0 !important;
    }
    /* Fix for scroll position when closing modals */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: var(--scroll-top, 0);
}

/* Save scroll position when opening modal */
.modal-open {
    --scroll-top: 0;
}

/* Prevent focus outline on modal close */
.modal-close:focus,
.lightbox-close:focus,
.partner-back-btn:focus {
    outline: 2px solid var(--neon-orange);
    outline-offset: 2px;
}

/* Smooth modal transitions */
.gallery-modal,
.partners-modal,
.partner-detail-modal {
    transition: opacity 0.3s ease;
}
    
    .logo-img {
        filter: grayscale(100%) !important;
    }
    
    .logo span {
        -webkit-text-fill-color: black !important;
        color: black !important;
    }
    
    .section {
        break-inside: avoid !important;
        page-break-inside: avoid !important;
        padding: 2rem 0 !important;
        margin: 1rem 0 !important;
    }
    
    .infographic-section {
        display: none !important;
    }
}
/* ============================================
   LANGUAGE SWITCHER STYLES
   ============================================ */

.language-switcher {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .language-switcher {
        bottom: 80px;
        right: 15px;
    }
}

/* Language Toggle Button */
.language-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6600, #FFCC00);
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 20px rgba(255, 102, 0, 0.4),
        0 0 30px rgba(255, 204, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10001;
    min-width: 44px;
    min-height: 44px;
}

.language-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 30px rgba(255, 102, 0, 0.6),
        0 0 40px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #FFCC00, #FF6600);
}

.language-toggle i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.language-toggle:hover i {
    transform: rotate(15deg);
}

.current-language {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(16, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
    z-index: 10000;
    animation: dropdownFade 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.language-dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Options */
.language-option {
    background: transparent;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    min-height: 44px;
}

.language-option:hover {
    background: rgba(255, 102, 0, 0.2);
    color: #FFCC00;
    transform: translateX(-5px);
}

.language-option.active {
    background: rgba(255, 102, 0, 0.3);
    color: #FFCC00;
    border-left: 3px solid #FFCC00;
}

.language-flag {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.language-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
}

.language-code {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF6600;
    background: rgba(255, 102, 0, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 1px;
}

/* Google Translate Fixes */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-family: inherit !important;
}

.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Fix for translated content */
[style*="position: absolute; top: -100000px"] {
    display: none !important;
}

/* Hide Google Translate attribution */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget span {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .language-switcher {
        bottom: 70px;
        right: 10px;
    }
    
    .language-toggle {
        width: 50px;
        height: 50px;
    }
    
    .language-dropdown {
        bottom: 60px;
        min-width: 140px;
    }
    
    .language-flag {
        font-size: 1.3rem;
    }
    
    .language-name {
        font-size: 0.8rem;
    }
}




/* ============================================
   LANGUAGE SWITCHER STYLES - COMPLETE MANUAL TRANSLATION
   ============================================ */

/* ============================================
   GOOGLE TRANSLATE LANGUAGE SWITCHER
   ============================================ */
/* ============================================
   GOOGLE TRANSLATE FLOATING BUTTON
   ============================================ */

.language-switcher {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .language-switcher {
        bottom: 80px;
        right: 15px;
    }
}

.language-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6600, #FFCC00);
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 20px rgba(255, 102, 0, 0.4),
        0 0 30px rgba(255, 204, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10001;
    min-width: 44px;
    min-height: 44px;
}

.language-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 30px rgba(255, 102, 0, 0.6),
        0 0 40px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #FFCC00, #FF6600);
}

.language-toggle i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.language-toggle:hover i {
    transform: rotate(15deg);
}

.current-language {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.language-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(16, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.language-dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.language-option {
    background: transparent;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    min-height: 44px;
}

.language-option:hover {
    background: rgba(255, 102, 0, 0.2);
    color: #FFCC00;
    transform: translateX(-5px);
}

.language-option.active {
    background: rgba(255, 102, 0, 0.3);
    color: #FFCC00;
    border-left: 3px solid #FFCC00;
}

.language-flag {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.language-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
}

.language-code {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF6600;
    background: rgba(255, 102, 0, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 1px;
}

/* Google Translate Fixes - IMPORTANT */
.goog-te-banner-frame {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    display: none !important;
}

.goog-te-combo {
    position: absolute !important;
    top: -1000px !important;
    left: -1000px !important;
}

/* RTL Support for Arabic */
body.translated-ar {
    direction: rtl;
    text-align: right;
}

body.translated-ar .language-switcher {
    left: 20px;
    right: auto;
}

body.translated-ar .language-dropdown {
    right: auto;
    left: 0;
}

body.translated-ar .language-option:hover {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .language-switcher {
        bottom: 70px;
        right: 10px;
    }
    
    body.translated-ar .language-switcher {
        left: 10px;
    }
    
    .language-toggle {
        width: 50px;
        height: 50px;
    }
    
    .language-dropdown {
        bottom: 60px;
        min-width: 140px;
    }
    
    .language-flag {
        font-size: 1.3rem;
    }
    
    .language-name {
        font-size: 0.8rem;
    }
}

/* Add to your stylekids.css */
.language-switcher.notranslate,
.language-switcher.notranslate * {
    translate: no !important;
}

.current-language {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

/* Google Translate specific fixes */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Prevent translation of specific elements */
.notranslate {
    translate: no !important;
}