/* ---------- RESET & VARIABLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #6C3CE1;
    --primary-dark: #4B1E9E;
    --primary-glow: rgba(108, 60, 225, 0.6);
    --secondary: #14B8A6;
    --accent: #EC4899;
    --dark: #0A0A0F;
    --dark-card: #0F0F1A;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

/* ---------- BACKGROUND ---------- */
.perspective-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.gradient-sphere,
.gradient-sphere-2,
.gradient-sphere-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: sphereMove 25s infinite alternate ease-in-out;
}
.gradient-sphere {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.25), transparent 70%);
    top: -300px;
    right: -200px;
}
.gradient-sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-name: sphereMove2;
}
.gradient-sphere-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: sphereMove3;
}
@keyframes sphereMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 60px) scale(1.1);
    }
}
@keyframes sphereMove2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-60px, 80px) scale(1.15);
    }
}
@keyframes sphereMove3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(rgba(108, 60, 225, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 60, 225, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ---------- CURSOR ---------- */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor {
    width: 12px;
    height: 12px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    transition: transform 0.05s, opacity 0.2s;
}
.cursor-follower {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(108, 60, 225, 0.5);
    z-index: 9999;
    transition: transform 0.2s, opacity 0.3s;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 5%;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(108, 60, 225, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.navbar.scrolled {
    padding: 0.5rem 5%;
    background: rgba(8, 8, 16, 0.98);
    border-bottom-color: rgba(108, 60, 225, 0.35);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    padding: 8px 22px 8px 14px;
    background: rgba(108, 60, 225, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(108, 60, 225, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}
.logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
}
.logo-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
    padding-left: 16px;
    border-left: 2px solid rgba(108, 60, 225, 0.25);
}
.logo-brand-text .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}
.logo-brand-text .brand-name span:first-child {
    background: linear-gradient(135deg, #6C3CE1, #14B8A6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.logo-brand-text .brand-name span:last-child {
    color: #fff;
}
.logo-brand-text .brand-tagline {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ============================================
   NAV LINKS - IMPROVED DROPDOWN BEHAVIOR
   ============================================ */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links > a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.nav-links > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C3CE1, #14B8A6);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-links > a:hover::before {
    width: 100%;
}
.nav-links > a:hover {
    color: #fff;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Link */
.dropdown > a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C3CE1, #14B8A6);
    transition: width 0.3s;
    border-radius: 2px;
}
.dropdown > a:hover::before {
    width: 100%;
}
.dropdown > a:hover {
    color: #fff;
}
.dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}
.dropdown:hover > a i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Dropdown Content - Stays open on hover */
.dropdown-content {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(12, 12, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 14px;
    padding: 0.6rem 0;
    border: 1px solid rgba(108, 60, 225, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Show dropdown on hover with smooth transition */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Keep dropdown open when hovering over it */
.dropdown-content:hover {
    opacity: 1;
    pointer-events: all;
}

/* Dropdown links styling */
.dropdown-content a {
    display: block;
    padding: 0.6rem 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}
.dropdown-content a:hover {
    background: rgba(108, 60, 225, 0.15);
    color: #fff;
    padding-left: 2.2rem;
}
.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6C3CE1, #14B8A6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 3px 3px 0;
}
.dropdown-content a:hover::before {
    opacity: 1;
}

/* ============================================
   MENU BUTTON
   ============================================ */
.btn-menu {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E);
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 25px rgba(108, 60, 225, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(108, 60, 225, 0.5);
}
.btn-menu i {
    font-size: 0.9rem;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 2rem 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(108, 60, 225, 0.15);
}
.mobile-menu-overlay.open {
    right: 0 !important;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-header .logo {
    display: flex !important;
    align-items: center;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.mobile-menu-header .logo .logo-img {
    height: 45px !important;
    width: auto;
    max-width: 160px;
}
.mobile-menu-header .logo-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 2px solid rgba(108, 60, 225, 0.2);
}
.close-menu {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-menu:hover {
    transform: rotate(90deg);
    background: rgba(108, 60, 225, 0.2);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.mobile-nav-links li {
    margin-bottom: 0.8rem;
}
.mobile-nav-links > li > a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: 0.3s;
}
.mobile-nav-links > li > a:hover {
    background: rgba(108, 60, 225, 0.12);
    color: #fff;
    padding-left: 20px;
}
.mobile-nav-links > li > a i {
    width: 28px;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mobile Dropdown Toggle */
.mobile-dropdown-toggle {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mobile-dropdown-toggle .dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
    list-style: none;
    padding: 0 0 0 2.5rem;
    margin: 0.3rem 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.3s ease;
    opacity: 0;
}
.mobile-dropdown-content.open {
    max-height: 600px;
    opacity: 1;
}
.mobile-dropdown-content li {
    margin-bottom: 0.3rem;
}
.mobile-dropdown-content a {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.mobile-dropdown-content a:hover {
    color: #fff;
    background: rgba(108, 60, 225, 0.08);
    padding-left: 18px;
}

/* Mobile Contact Block */
.mobile-contact-block {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-contact-block h4 {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.contact-item-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s;
}
.contact-item-mobile:hover {
    background: rgba(108, 60, 225, 0.06);
    border-color: rgba(108, 60, 225, 0.1);
}
.contact-item-mobile i {
    width: 32px;
    height: 32px;
    background: rgba(108, 60, 225, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.mobile-social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.mobile-social-links a {
    background: rgba(108, 60, 225, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border: 1px solid rgba(108, 60, 225, 0.1);
}
.mobile-social-links a:hover {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 60, 225, 0.3);
    color: #fff;
}

.menu-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.menu-overlay-backdrop.active {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ---------- HERO & SECTIONS ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.gradient-text {
    background: linear-gradient(120deg, #6C3CE1, #14B8A6, #EC4899);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.hero-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.cta-primary {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
    gap: 15px;
}
.contact-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.hero-3d-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(108, 60, 225, 0.2);
    transition: transform 0.5s;
    animation: floatCard 6s ease-in-out infinite;
}
.hero-3d-card:hover {
    transform: perspective(1000px) rotateY(5deg);
}
@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.hero-3d-card i {
    font-size: 5rem;
    background: linear-gradient(135deg, #6C3CE1, #14B8A6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section {
    padding: 100px 5%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}
.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto;
}
.section-tag {
    display: inline-block;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.process-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(108, 60, 225, 0.15);
    position: relative;
    overflow: hidden;
}
.process-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #6C3CE1;
    box-shadow: 0 30px 50px rgba(108, 60, 225, 0.2);
}
.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6C3CE1, #14B8A6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.process-icon i {
    font-size: 1.8rem;
    color: #6C3CE1;
}
.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.process-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

.about-cinematic {
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A15, #050508);
    border: 1px solid rgba(108, 60, 225, 0.2);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
}
.about-content {
    padding: 3.5rem;
    position: relative;
    z-index: 2;
}
.about-badge {
    display: inline-block;
    background: rgba(108, 60, 225, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-desc {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: 0.3s;
}
.feature-item:hover {
    background: rgba(108, 60, 225, 0.1);
    transform: translateX(8px);
}
.feature-item i {
    font-size: 1.2rem;
    color: var(--secondary);
}
.about-visual {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual .visual-wrapper {
    text-align: center;
    animation: floatVisual 4s ease-in-out infinite;
}
@keyframes floatVisual {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.about-visual i {
    font-size: 8rem;
    background: linear-gradient(135deg, #6C3CE1, #14B8A6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.pulse-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.2), transparent);
    animation: pulseRing 2s infinite;
    margin: 1rem auto 0;
}
@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ===== MISSION & VISION - equal height ===== */
.mission-premium {
    background: linear-gradient(135deg, #0F0F1A, #0A0A0F);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(108, 60, 225, 0.2);
    position: relative;
    overflow: hidden;
}
.mission-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.05), transparent);
    animation: rotateBg 30s linear infinite;
}
@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.mission-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.mission-header .tag {
    background: rgba(108, 60, 225, 0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.mission-header h2 {
    font-size: 2.5rem;
}
.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.mission-card-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 60, 225, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 280px;
}
.mission-card-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.08);
    box-shadow: 0 20px 40px rgba(108, 60, 225, 0.2);
}
.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    flex-shrink: 0;
}
.mission-icon i {
    font-size: 2rem;
    color: var(--primary);
}
.mission-card-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.mission-card-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.vision-showcase {
    background: linear-gradient(135deg, #050508, #0A0A0F);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(108, 60, 225, 0.2);
}
.vision-header {
    text-align: center;
    margin-bottom: 3rem;
}
.vision-header .tag {
    background: rgba(108, 60, 225, 0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.vision-header h2 {
    font-size: 2.5rem;
}
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.vision-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(108, 60, 225, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 260px;
}
.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.vision-card:hover::after {
    transform: scaleX(1);
}
.vision-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(20, 184, 166, 0.05));
    border-color: rgba(108, 60, 225, 0.4);
}
.vision-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #6C3CE1, #14B8A6, #EC4899);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    display: inline-block;
    animation: iconBounce 3s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes iconBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.vision-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.vision-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ===== SERVICES - REDESIGNED ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(108, 60, 225, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 60, 225, 0.4);
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.08), rgba(20, 184, 166, 0.04));
    box-shadow: 0 15px 40px rgba(108, 60, 225, 0.15);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.35), rgba(20, 184, 166, 0.15));
    transform: scale(1.05);
}
.service-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
}
.service-card:hover .service-icon i {
    color: var(--secondary);
}
.service-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #fff;
    line-height: 1.3;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}
.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}
.service-link:hover {
    gap: 14px;
    border-bottom-color: var(--secondary);
    color: #fff;
}
.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.service-link:hover i {
    transform: translateX(4px);
}

.contact-wrapper {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.05), rgba(10, 10, 15, 1));
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(108, 60, 225, 0.2);
    position: relative;
    overflow: hidden;
}
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.05), transparent);
    animation: rotate 25s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(108, 60, 225, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C3CE1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: 0.8rem;
    color: white;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6C3CE1;
    box-shadow: 0 0 15px rgba(108, 60, 225, 0.3);
}
.submit-btn {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E);
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
}

/* ============================================
   FOOTER UPDATED - WITH QUICK LINKS
   ============================================ */

.footer {
    background: linear-gradient(180deg, #0A0A18, #060610);
    padding: 4rem 5% 1.5rem;
    border-top: 2px solid rgba(108, 60, 225, 0.2);
    position: relative;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6C3CE1, #14B8A6, #6C3CE1, transparent);
    opacity: 0.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    background: rgba(108, 60, 225, 0.08);
    padding: 8px 18px 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(108, 60, 225, 0.2);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.footer-logo-wrapper:hover {
    background: rgba(108, 60, 225, 0.15);
    border-color: rgba(108, 60, 225, 0.35);
    transform: scale(1.02);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 15px rgba(108, 60, 225, 0.2));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    padding-left: 14px;
    border-left: 2px solid rgba(108, 60, 225, 0.2);
}

.footer-logo-text .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-logo-text .brand-name span:first-child {
    background: linear-gradient(135deg, #6C3CE1, #14B8A6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-logo-text .brand-name span:last-child {
    color: #fff;
}

.footer-logo-text .brand-tagline {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 320px;
}

/* Footer Headings */
.footer h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(108, 60, 225, 0.2);
}

/* Footer Links - Updated for Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.footer-links li i {
    color: var(--primary);
    font-size: 0.7rem;
    width: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-links li:hover i {
    transform: translateX(4px);
    color: var(--secondary);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Contact Info in Footer */
.footer-links li i.fa-map-marker-alt,
.footer-links li i.fa-phone-alt,
.footer-links li i.fa-envelope {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 18px;
}

/* Quick Services */
.footer-quick-services {
    list-style: none;
    padding: 0;
}

.footer-quick-services li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: 0.3s;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.footer-quick-services li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
    transition: 0.3s;
}

.footer-quick-services li:hover {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 22px;
}

.footer-quick-services li:hover::before {
    color: #14B8A6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    background: rgba(108, 60, 225, 0.12);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border: 1px solid rgba(108, 60, 225, 0.15);
}

.social-links a:hover {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.35);
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #6C3CE1;
}

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .mission-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .vision-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .nav-links {
        display: none !important;
    }
    .btn-menu {
        display: inline-flex !important;
    }

    /* Responsive dropdown fixes */
    .dropdown-content {
        min-width: 220px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
}
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .about-content {
        padding: 2rem;
    }
    .mobile-menu-overlay {
        max-width: 100%;
        padding: 1.5rem;
    }
    .footer {
        padding: 3rem 4% 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .mission-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .vision-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .nav-links {
        display: none !important;
    }
    .btn-menu {
        display: inline-flex !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    .logo {
        padding: 4px 12px 4px 8px !important;
    }
    .logo-img {
        height: 38px !important;
        max-width: 140px !important;
    }
    .logo-brand-text .brand-name {
        font-size: 0.85rem !important;
    }
    .logo-brand-text .brand-tagline {
        font-size: 0.45rem !important;
    }
    .logo-brand-text {
        margin-left: 8px !important;
        padding-left: 10px !important;
    }
    .dropdown-content {
        min-width: 200px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
}
@media (max-width: 480px) {
    .logo {
        padding: 4px 10px 4px 6px !important;
        border-radius: 10px;
    }
    .logo-img {
        height: 32px !important;
        max-width: 120px !important;
    }
    .logo-brand-text .brand-name {
        font-size: 0.7rem !important;
    }
    .logo-brand-text .brand-tagline {
        font-size: 0.35rem !important;
        letter-spacing: 0.6px;
    }
    .btn-menu {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
    .mobile-menu-header .logo .logo-img {
        height: 32px;
        max-width: 120px;
    }
    .footer-logo-wrapper {
        padding: 6px 12px 6px 8px;
    }
    .footer-logo-img {
        height: 38px;
        max-width: 140px;
    }
    .footer-logo-text .brand-name {
        font-size: 0.9rem;
    }
    .footer-logo-text .brand-tagline {
        font-size: 0.4rem;
    }
    .footer h4 {
        font-size: 0.95rem;
    }
    .footer-links li {
        font-size: 0.85rem;
    }
    .footer-quick-services li {
        font-size: 0.8rem;
    }
}
.mission-cards,
.vision-grid,
.services-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}
.mission-card-item,
.vision-card,
.service-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    width: 100% !important;
}
/* ============================================
   VISION, MISSION & VALUES PAGE - OVERRIDES
   ============================================ */

/* Fix Vision Hero */
.vision-hero {
    padding: 140px 5% 80px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.vision-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}
.vision-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.vision-hero-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}
.vision-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vision-hero-icon-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vision-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    z-index: 2;
    animation: floatVisual 4s ease-in-out infinite;
    border: 2px solid rgba(108, 60, 225, 0.2);
}
.vision-hero-pulse {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.15), transparent 70%);
    animation: pulseRing 3s infinite;
}
.vision-hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.08), transparent);
    animation: floatOrb 6s ease-in-out infinite;
}
.orb-1 {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
    animation-delay: 0s;
}
.orb-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -10px;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent);
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.1); }
}

/* Vision & Mission Cards */
.vision-card-large, .mission-card-large {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 2rem;
    padding: 3.5rem;
    border: 1px solid rgba(108, 60, 225, 0.15);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.vision-card-large:hover, .mission-card-large:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 60, 225, 0.4);
    box-shadow: 0 20px 50px rgba(108, 60, 225, 0.1);
}
.vision-card-large::before, .mission-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.vision-card-large:hover::before, .mission-card-large:hover::before {
    opacity: 1;
}
.vision-card-icon, .mission-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.vision-card-icon i, .mission-card-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}
.vision-card-large h2, .mission-card-large h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.vision-card-text, .mission-card-text {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.vision-tag {
    display: inline-block;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 1.5rem;
}

/* ===== CORE VALUES - OVERRIDE HOME PAGE GRID ===== */
.values-grid-full {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}
.value-card-full {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255,255,255,0.04);
    border-radius: 1.5rem;
    padding: 2.2rem 1.8rem;
    text-align: center;
    border: 1px solid rgba(108, 60, 225, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    height: 100% !important;
    min-height: 300px;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    position: relative;
}
.value-card-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 0 0 1.5rem 1.5rem;
}
.value-card-full:hover::after {
    transform: scaleX(1);
}
.value-card-full:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 60, 225, 0.4);
    background: rgba(108, 60, 225, 0.08);
    box-shadow: 0 20px 40px rgba(108, 60, 225, 0.15);
}
.value-card-full-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.value-card-full:hover .value-card-full-icon {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.35), rgba(20, 184, 166, 0.15));
    transform: scale(1.05);
}
.value-card-full-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}
.value-card-full:hover .value-card-full-icon i {
    color: var(--secondary);
}
.value-card-full h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}
.value-card-full p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ===== CONTACT INFO - OVERRIDE ===== */
.contact-info-wrapper {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.05), rgba(10, 10, 15, 1));
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(108, 60, 225, 0.2);
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}
.contact-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}
.contact-info-item {
    display: flex !important;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem 1.8rem;
    background: rgba(255,255,255,0.02);
    border-radius: 14px;
    border: 1px solid rgba(108, 60, 225, 0.08);
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    height: 100% !important;
    min-height: 110px;
    overflow: visible !important;
    width: 100% !important;
}
.contact-info-item:hover {
    background: rgba(108, 60, 225, 0.06);
    border-color: rgba(108, 60, 225, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.08);
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 60, 225, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}
.contact-info-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-info-item h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.contact-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Vision 2030 Banner */
.vision-2030-banner {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.12), rgba(20, 184, 166, 0.06));
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(108, 60, 225, 0.2);
    position: relative;
    overflow: hidden;
}
.vision-2030-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.08), transparent);
    border-radius: 50%;
}
.vision-2030-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.vision-2030-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vision-2030-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}
.vision-2030-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.vision-2030-text p {
    color: var(--text-dim);
}
.vision-2030-badge {
    margin-left: auto;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    white-space: nowrap;
}

/* Footer Links */
.footer-links-wrapper {
    background: rgba(255,255,255,0.02);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(108, 60, 225, 0.08);
    text-align: center;
}
.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.footer-link-item {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.footer-link-item i {
    color: var(--secondary);
    font-size: 0.85rem;
}
.footer-link-item:hover {
    color: #fff;
    transform: translateY(-2px);
}
.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE OVERRIDES FOR VISION PAGE ===== */
@media (max-width: 1024px) {
    .vision-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vision-hero-content h1 {
        font-size: 3rem;
    }
    .values-grid-full {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .vision-2030-content {
        flex-wrap: wrap;
    }
    .vision-2030-badge {
        margin-left: 0;
    }
    .vision-hero-icon-wrapper {
        width: 220px;
        height: 220px;
    }
    .vision-hero-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }
    .vision-hero-pulse {
        width: 180px;
        height: 180px;
    }
    .value-card-full {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .vision-hero {
        padding: 120px 5% 60px;
    }
    .vision-hero-content h1 {
        font-size: 2.2rem;
    }
    .vision-card-large, .mission-card-large {
        padding: 2rem;
    }
    .vision-card-large h2, .mission-card-large h2 {
        font-size: 2rem;
    }
    .vision-card-text, .mission-card-text {
        font-size: 1rem;
    }
    .values-grid-full {
        grid-template-columns: 1fr !important;
    }
    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }
    .vision-2030-banner {
        padding: 2rem;
    }
    .vision-2030-icon {
        width: 60px;
        height: 60px;
    }
    .vision-2030-icon i {
        font-size: 1.8rem;
    }
    .vision-2030-text h3 {
        font-size: 1.4rem;
    }
    .vision-hero-icon-wrapper {
        width: 180px;
        height: 180px;
    }
    .vision-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    .vision-hero-pulse {
        width: 150px;
        height: 150px;
    }
    .orb-1, .orb-2 {
        display: none;
    }
    .contact-info-item {
        padding: 1.2rem;
        min-height: 90px;
    }
    .value-card-full {
        min-height: 220px;
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .vision-hero-content h1 {
        font-size: 1.8rem;
    }
    .vision-card-large, .mission-card-large {
        padding: 1.5rem;
    }
    .vision-card-large h2, .mission-card-large h2 {
        font-size: 1.6rem;
    }
    .value-card-full {
        min-height: 200px;
        padding: 1.5rem;
    }
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
    }
    .contact-info-item div {
        align-items: center;
    }
    .contact-info-item p {
        text-align: center;
    }
}
/* ============================================
   FIX: DROPDOWN STAYS OPEN ON HOVER
   ============================================ */

/* Desktop Dropdown - Fix: Keep open when hovering over dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Link */
.dropdown > a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C3CE1, #14B8A6);
    transition: width 0.3s;
    border-radius: 2px;
}

.dropdown > a:hover::before {
    width: 100%;
}
.dropdown > a:hover {
    color: #fff;
}

.dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Dropdown Content - CRITICAL FIX: Keep open on hover */
.dropdown-content {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(12, 12, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 14px;
    padding: 0.6rem 0;
    border: 1px solid rgba(108, 60, 225, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* CRITICAL FIX: Show dropdown and keep it open */
.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* CRITICAL FIX: Keep dropdown open when hovering over the dropdown itself */
.dropdown-content:hover {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Dropdown links styling */
.dropdown-content a {
    display: block;
    padding: 0.6rem 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.dropdown-content a:hover {
    background: rgba(108, 60, 225, 0.15);
    color: #fff;
    padding-left: 2.2rem;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6C3CE1, #14B8A6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.dropdown-content a:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE FIXES FOR DROPDOWN
   ============================================ */

@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 220px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .dropdown-content {
        min-width: 200px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}
/* ============================================
   FIX: DROPDOWN STAYS OPEN - COMPLETE SOLUTION
   ============================================ */

/* Desktop Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Link */
.dropdown > a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C3CE1, #14B8A6);
    transition: width 0.3s;
    border-radius: 2px;
}

.dropdown > a:hover::before {
    width: 100%;
}
.dropdown > a:hover {
    color: #fff;
}

.dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Dropdown Content - CRITICAL FIX */
.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(12, 12, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 14px;
    padding: 0.6rem 0;
    border: 1px solid rgba(108, 60, 225, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Show dropdown on hover - CRITICAL */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Keep dropdown open when hovering over the dropdown itself - CRITICAL */
.dropdown-content:hover {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Dropdown links styling */
.dropdown-content a {
    display: block;
    padding: 0.6rem 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.dropdown-content a:hover {
    background: rgba(108, 60, 225, 0.15);
    color: #fff;
    padding-left: 2.2rem;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6C3CE1, #14B8A6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.dropdown-content a:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE FIXES FOR DROPDOWN
   ============================================ */

@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 220px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .dropdown-content {
        min-width: 200px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}
/* ============================================
   FIX: DROPDOWN STAYS OPEN - COMPLETE SOLUTION
   ============================================ */

/* Desktop Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Link */
.dropdown > a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C3CE1, #14B8A6);
    transition: width 0.3s;
    border-radius: 2px;
}

.dropdown > a:hover::before {
    width: 100%;
}
.dropdown > a:hover {
    color: #fff;
}

.dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* CRITICAL: Dropdown Content - Fix the gap issue */
.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(12, 12, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 14px;
    padding: 0.6rem 0;
    border: 1px solid rgba(108, 60, 225, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* CRITICAL: Create an invisible bridge between trigger and dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Keep dropdown open when hovering over the dropdown itself */
.dropdown-content:hover {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Dropdown links styling */
.dropdown-content a {
    display: block;
    padding: 0.6rem 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.dropdown-content a:hover {
    background: rgba(108, 60, 225, 0.15);
    color: #fff;
    padding-left: 2.2rem;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6C3CE1, #14B8A6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.dropdown-content a:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE FIXES FOR DROPDOWN
   ============================================ */

@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 220px;
        left: 0;
        transform: translateX(0) translateY(-5px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .dropdown-content {
        min-width: 200px;
        left: 0;
        transform: translateX(0) translateY(-5px);
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(0) translateY(0);
    }
    .dropdown-content:hover {
        transform: translateX(0) translateY(0) !important;
    }
}
/* ============================================
   MOBILE MENU - COMPLETE FIX (OVERRIDE ALL)
   ============================================ */

/* Force mobile menu styles */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    max-width: 420px !important;
    height: 100% !important;
    background: rgba(10, 10, 18, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    z-index: 9999 !important;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    padding: 2rem 2rem 2rem 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    border-left: 1px solid rgba(108, 60, 225, 0.15) !important;
}
.mobile-menu-overlay.open {
    right: 0 !important;
}

.mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
    padding-bottom: 1.2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    width: 100% !important;
}
.mobile-menu-header .logo {
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.mobile-menu-header .logo .logo-img {
    height: 45px !important;
    width: auto !important;
    max-width: 160px !important;
}
.mobile-menu-header .logo-brand-text {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 10px !important;
    padding-left: 12px !important;
    border-left: 2px solid rgba(108, 60, 225, 0.2) !important;
}
.mobile-menu-header .logo-brand-text .brand-name {
    font-size: 1rem !important;
}
.mobile-menu-header .logo-brand-text .brand-tagline {
    font-size: 0.5rem !important;
}
.close-menu {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.close-menu:hover {
    transform: rotate(90deg) !important;
    background: rgba(108, 60, 225, 0.2) !important;
}

/* Mobile Navigation Links - FORCED */
.mobile-nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
    width: 100% !important;
    display: block !important;
}
.mobile-nav-links > li {
    margin-bottom: 0.5rem !important;
    width: 100% !important;
    display: block !important;
    list-style: none !important;
}
.mobile-nav-links > li > a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    transition: 0.3s !important;
    width: 100% !important;
}
.mobile-nav-links > li > a:hover {
    background: rgba(108, 60, 225, 0.12) !important;
    color: #fff !important;
    padding-left: 20px !important;
}
.mobile-nav-links > li > a i {
    width: 28px !important;
    color: #6C3CE1 !important;
    font-size: 1.1rem !important;
}

/* Mobile Dropdown Toggle - FORCED */
.mobile-dropdown-toggle {
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    transition: 0.3s !important;
}
.mobile-dropdown-toggle:hover {
    background: rgba(108, 60, 225, 0.12) !important;
    color: #fff !important;
}
.mobile-dropdown-toggle .dropdown-arrow {
    margin-left: auto !important;
    transition: transform 0.3s ease !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}
.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: #14B8A6 !important;
}
.mobile-dropdown-toggle span {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.mobile-dropdown-toggle span i {
    width: 28px !important;
    color: #6C3CE1 !important;
    font-size: 1.1rem !important;
}

/* Mobile Dropdown Content - FORCED */
.mobile-dropdown-content {
    list-style: none !important;
    padding: 0 0 0 2.5rem !important;
    margin: 0.3rem 0 0 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.3s ease !important;
    opacity: 0 !important;
    width: 100% !important;
    display: block !important;
}
.mobile-dropdown-content.open {
    max-height: 600px !important;
    opacity: 1 !important;
}
.mobile-dropdown-content li {
    margin-bottom: 0.3rem !important;
    width: 100% !important;
    list-style: none !important;
}
.mobile-dropdown-content a {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    width: 100% !important;
}
.mobile-dropdown-content a:hover {
    color: #fff !important;
    background: rgba(108, 60, 225, 0.08) !important;
    padding-left: 22px !important;
}
.mobile-dropdown-content a i {
    width: 16px !important;
    color: #14B8A6 !important;
    font-size: 0.7rem !important;
}

/* Mobile Contact Block - FORCED */
.mobile-contact-block {
    margin-top: auto !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    width: 100% !important;
}
.mobile-contact-block h4 {
    font-size: 0.8rem !important;
    color: #14B8A6 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
}
.contact-item-mobile {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.7rem !important;
    padding: 8px 12px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    transition: 0.3s !important;
}
.contact-item-mobile:hover {
    background: rgba(108, 60, 225, 0.06) !important;
    border-color: rgba(108, 60, 225, 0.1) !important;
}
.contact-item-mobile i {
    width: 32px !important;
    height: 32px !important;
    background: rgba(108, 60, 225, 0.12) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6C3CE1 !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}
.mobile-social-links {
    display: flex !important;
    gap: 0.8rem !important;
    margin-top: 0.8rem !important;
}
.mobile-social-links a {
    background: rgba(108, 60, 225, 0.1) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    border: 1px solid rgba(108, 60, 225, 0.1) !important;
}
.mobile-social-links a:hover {
    background: linear-gradient(135deg, #6C3CE1, #4B1E9E) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(108, 60, 225, 0.3) !important;
    color: #fff !important;
}

.menu-overlay-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease !important;
}
.menu-overlay-backdrop.active {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ============================================
   RESPONSIVE FIXES FOR MOBILE MENU
   ============================================ */

@media (max-width: 480px) {
    .mobile-menu-overlay {
        padding: 1.2rem 1.5rem !important;
        max-width: 100% !important;
    }
    .mobile-nav-links > li > a,
    .mobile-dropdown-toggle {
        font-size: 1rem !important;
        padding: 8px 12px !important;
    }
    .mobile-dropdown-content a {
        font-size: 0.9rem !important;
        padding: 6px 12px !important;
    }
    .mobile-dropdown-content {
        padding-left: 1.5rem !important;
    }
    .mobile-menu-header .logo .logo-img {
        height: 35px !important;
        max-width: 120px !important;
    }
    .mobile-menu-header .logo-brand-text .brand-name {
        font-size: 0.8rem !important;
    }
    .mobile-menu-header .logo-brand-text .brand-tagline {
        font-size: 0.4rem !important;
    }
}