/* ===== TECHOMISSION - ULTRA SMOOTH & UNIQUE DESIGN ===== */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --purple: #a855f7;
    --pink: #ec4899;
    --cyan: #06b6d4;
    --dark: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6366f1 50%, #a855f7 100%);
    --gradient-3: linear-gradient(45deg, #f59e0b, #ec4899, #8b5cf6, #06b6d4);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.1);
    --shadow-xl: 0 30px 60px -15px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    height: 100vh; 
    overflow: hidden; 
    font-family: 'Inter', -apple-system, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: var(--gray-700);
    line-height: 1.7;
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 100%; }

/* ===== ANIMATED GRADIENT BACKGROUND ===== */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(-45deg, #f8fafc, #ede9fe, #dbeafe, #f0fdf4);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== SPIDER WEB CANVAS ===== */
#spiderWeb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatShape 20s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--purple); bottom: -50px; left: -50px; animation-delay: -5s; }
.shape-3 { width: 250px; height: 250px; background: var(--cyan); top: 50%; left: 50%; animation-delay: -10s; }
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-2);
    z-index: 9999;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; transform: scale(1.1); pointer-events: none; }
.loader {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.loader-ring:nth-child(2) { width: 75%; height: 75%; border-top-color: var(--purple); animation-duration: 1.5s; animation-direction: reverse; }
.loader-ring:nth-child(3) { width: 50%; height: 50%; border-top-color: var(--cyan); animation-duration: 1s; }
.loader-text { font-size: 16px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot, .cursor-outline { position: fixed; pointer-events: none; z-index: 99999; border-radius: 50%; display: none; transform: translate(-50%, -50%); }
.cursor-dot { width: 8px; height: 8px; background: var(--gradient); transition: transform 0.15s ease, opacity 0.15s ease; }
.cursor-outline { 
    width: 45px; height: 45px; 
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
    opacity: 0.6; 
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cursor-outline.hover { 
    width: 70px; height: 70px; 
    background: linear-gradient(rgba(99,102,241,0.1), rgba(99,102,241,0.1)) padding-box, var(--gradient-2) border-box;
}
@media (min-width: 1024px) { .cursor-dot, .cursor-outline { display: block; } body, a, button { cursor: none; } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary { 
    background: var(--gradient); 
    color: var(--white); 
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
}
.btn-glass { 
    background: rgba(255,255,255,0.8); 
    backdrop-filter: blur(20px); 
    color: var(--gray-800); 
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow);
}
.btn-glass:hover { 
    background: var(--white); 
    border-color: var(--primary); 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 20px 48px; font-size: 16px; }
.btn-sm { padding: 12px 24px; font-size: 14px; border-radius: 50px; }
.btn-block { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
    max-width: 95%;
    width: auto;
    min-width: 300px;
}
.navbar.scrolled { 
    background: rgba(255,255,255,0.95);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}
.navbar .container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: auto; 
    gap: 20px; 
    max-width: none;
    padding: 0;
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    transition: var(--transition); 
    flex-shrink: 0;
}
.logo:hover { transform: scale(1.05); }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main { 
    font-size: 20px; 
    font-weight: 800; 
    background: var(--gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    line-height: 1.2; 
    white-space: nowrap;
}
.logo-sub { 
    font-size: 9px; 
    color: var(--gray-500); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    white-space: nowrap;
}
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 6px; 
    margin: 0;
    padding: 0;
}
.nav-link { 
    padding: 10px 18px; 
    color: var(--gray-600); 
    text-decoration: none; 
    font-weight: 500; 
    border-radius: 50px; 
    transition: var(--transition-fast); 
    font-size: 14px; 
    position: relative;
    white-space: nowrap;
}
.nav-link:hover { 
    color: var(--primary); 
    background: rgba(99, 102, 241, 0.08); 
}
.nav-link.active { 
    color: var(--white); 
    background: var(--gradient); 
}
.nav-right { 
    display: flex; 
    gap: 12px; 
    flex-shrink: 0;
}
.nav-right .btn { 
    padding: 12px 24px; 
    font-size: 14px; 
    white-space: nowrap;
}
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    background: white; 
    border: 2px solid rgba(99, 102, 241, 0.2); 
    cursor: pointer; 
    padding: 10px; 
    border-radius: 12px; 
    transition: all 0.3s ease; 
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    position: relative;
}
.hamburger:hover { 
    background: rgba(99, 102, 241, 0.05); 
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}
.hamburger span { 
    width: 26px; 
    height: 3px; 
    background: var(--primary); 
    border-radius: 3px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.hamburger.active {
    background: var(--primary);
    border-color: var(--primary);
}
.hamburger.active span {
    background: white;
}
.hamburger.active span:nth-child(1) { 
    transform: rotate(45deg) translate(8px, 8px); 
}
.hamburger.active span:nth-child(2) { 
    opacity: 0; 
    transform: scaleX(0); 
}
.hamburger.active span:nth-child(3) { 
    transform: rotate(-45deg) translate(8px, -8px); 
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 20px;
}

.mobile-nav-links .nav-link {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-links .nav-link::before {
    content: '›';
    font-size: 24px;
    color: #6366f1;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    background: #f8fafc;
    color: #6366f1;
    padding-left: 35px;
}

.mobile-nav-links .nav-link:hover::before,
.mobile-nav-links .nav-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-cta {
    padding: 20px 30px 40px;
}

.mobile-cta .btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    padding: 16px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-radius: 12px;
}

.mobile-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== FULLPAGE CONTAINER ===== */
.fullpage-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* ===== SLIDES - ULTRA SMOOTH ===== */
.fp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%) scale(0.95);
    transition: 
        transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), 
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
        visibility 0.8s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.fp-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 10;
}
.fp-slide.prev {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
}
.slide-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 0 40px;
    position: relative;
    z-index: 2;
}

/* Special styling for contact slide with footer */
.fp-slide[data-index="7"] .slide-content {
    min-height: auto;
    padding: 120px 0 20px;
}

.fp-slide[data-index="7"] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===== SLIDE NAVIGATION ===== */
.slide-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.slide-dot:hover { 
    background: rgba(99, 102, 241, 0.4); 
    transform: scale(1.3);
}
.slide-dot.active {
    background: var(--gradient);
    transform: scale(1.5);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
    border-color: var(--white);
}
.slide-dot span {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}
.slide-dot span::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--gray-900);
}
.slide-dot:hover span { opacity: 1; visibility: visible; }

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    animation: bounce 2.5s ease-in-out infinite;
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}
.mouse-icon { 
    width: 28px; height: 46px; 
    border: 2px solid var(--gray-400); 
    border-radius: 20px; 
    position: relative;
    background: rgba(255,255,255,0.5);
}
.wheel { 
    width: 4px; height: 10px; 
    background: var(--gradient); 
    border-radius: 4px; 
    position: absolute; 
    top: 8px; left: 50%; 
    transform: translateX(-50%); 
    animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll { 
    0% { opacity: 1; transform: translateX(-50%) translateY(0); } 
    100% { opacity: 0; transform: translateX(-50%) translateY(18px); } 
}

/* ===== ANIMATIONS ===== */
.animate-item {
    opacity: 0;
    transform: translateY(50px);
    transition: 
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.fp-slide.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}
.fp-slide.active .animate-item:nth-child(1) { transition-delay: 0.1s; }
.fp-slide.active .animate-item:nth-child(2) { transition-delay: 0.2s; }
.fp-slide.active .animate-item:nth-child(3) { transition-delay: 0.3s; }
.fp-slide.active .animate-item:nth-child(4) { transition-delay: 0.4s; }
.fp-slide.active .animate-item:nth-child(5) { transition-delay: 0.5s; }
.fp-slide.active .animate-item:nth-child(6) { transition-delay: 0.6s; }

/* ===== GRADIENT TEXT ===== */
.gradient-text { 
    background: var(--gradient-2); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
}

/* ===== SECTION COMMON ===== */
.section-header.center { text-align: center; margin-bottom: 60px; }
.section-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 12px 24px; 
    background: rgba(99, 102, 241, 0.1); 
    color: var(--primary); 
    border-radius: 60px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.section-title { font-size: 48px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; line-height: 1.2; }
.section-desc { font-size: 18px; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== HERO SECTION ===== */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 14px; 
    padding: 14px 28px; 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: 60px; 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--gray-700); 
    box-shadow: var(--shadow-lg); 
    margin-bottom: 28px; 
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.badge-pulse { 
    position: absolute; 
    left: 16px; 
    width: 12px; height: 12px; 
    background: var(--secondary); 
    border-radius: 50%; 
    animation: pulse 2s ease-in-out infinite;
}
.badge-pulse::before { 
    content: ''; 
    position: absolute; 
    inset: -5px; 
    background: var(--secondary); 
    border-radius: 50%; 
    opacity: 0.3; 
    animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.5); opacity: 0; } }
.hero-badge i { color: var(--primary); margin-left: 12px; }
.hero-title { font-size: 58px; font-weight: 800; line-height: 1.1; color: var(--gray-900); margin-bottom: 28px; }
.hero-desc { font-size: 19px; color: var(--gray-600); margin-bottom: 40px; max-width: 540px; line-height: 1.8; }
.hero-desc strong { color: var(--gray-800); }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; align-items: center; }
.stat-box { text-align: center; }
.stat-num { display: block; font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.stat-divider { width: 2px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gray-300), transparent); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper { 
    position: relative; 
    border-radius: var(--radius-xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-xl);
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, transparent 50%);
    z-index: 1;
}
.hero-img { 
    width: 100%; 
    height: 480px; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image-wrapper:hover .hero-img { transform: scale(1.08); }
.glow-effect { 
    position: absolute; 
    inset: -30px; 
    background: var(--gradient); 
    opacity: 0.15; 
    filter: blur(50px); 
    z-index: -1; 
    border-radius: var(--radius-xl);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}
.floating-card { 
    position: absolute; 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px);
    padding: 16px 22px; 
    border-radius: 16px; 
    box-shadow: var(--shadow-lg); 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 600; 
    font-size: 14px; 
    color: var(--gray-700); 
    animation: float 5s ease-in-out infinite; 
    z-index: 10;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.floating-card i { 
    width: 40px; height: 40px; 
    background: var(--gradient); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    font-size: 16px;
}
.card-1 { top: 30px; left: -40px; animation-delay: 0s; }
.card-2 { top: 50%; right: -40px; animation-delay: 1.5s; }
.card-3 { bottom: 30px; left: 30px; animation-delay: 3s; }
@keyframes float { 
    0%, 100% { transform: translateY(0) rotate(0deg); } 
    50% { transform: translateY(-20px) rotate(2deg); } 
}


/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-image-wrapper { 
    position: relative; 
    border-radius: var(--radius-xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-xl); 
    margin-bottom: 30px;
}
.about-img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.8s ease; }
.about-image-wrapper:hover .about-img { transform: scale(1.05); }
.experience-badge { 
    position: absolute; 
    bottom: -25px; 
    right: 30px; 
    background: var(--gradient); 
    color: var(--white); 
    padding: 24px 36px; 
    border-radius: var(--radius-lg); 
    text-align: center; 
    box-shadow: var(--shadow-glow);
}
.exp-num { display: block; font-size: 42px; font-weight: 800; }
.exp-text { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; }
.techomission-meaning { margin-top: 30px; }
.meaning-card { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 28px; 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-lg); 
    flex-wrap: wrap; 
    justify-content: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.letter-box { 
    text-align: center; 
    padding: 18px 28px; 
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%); 
    border-radius: var(--radius);
}
.letter { display: block; font-size: 40px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.word { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 2px; }
.plus, .equals { font-size: 28px; font-weight: 700; color: var(--gray-400); }
.result-box { text-align: center; padding: 18px 28px; background: var(--gradient); border-radius: var(--radius); }
.result { display: block; font-size: 26px; font-weight: 900; color: var(--white); }
.tagline { font-size: 10px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 2px; }
.about-desc { font-size: 17px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.9; }
.about-points { display: flex; flex-direction: column; gap: 16px; }
.point { 
    display: flex; 
    gap: 18px; 
    padding: 22px; 
    background: rgba(255,255,255,0.8); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    transition: var(--transition);
}
.point:hover { 
    border-color: var(--primary); 
    box-shadow: var(--shadow-lg); 
    transform: translateX(12px);
    background: var(--white);
}
.point i { 
    width: 54px; height: 54px; 
    background: var(--gradient); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    font-size: 20px; 
    flex-shrink: 0;
}
.point h4 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; }
.point p { font-size: 14px; color: var(--gray-500); }

/* ===== BENEFITS SECTION ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 50px; }
.benefit-card { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    text-align: center; 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.benefit-card.featured { background: var(--gradient); border: none; color: var(--white); }
.benefit-card.featured::before { display: none; }
.benefit-card.featured h3, .benefit-card.featured p { color: var(--white); }
.benefit-card.featured .benefit-icon { background: rgba(255,255,255,0.2); }
.featured-tag { 
    position: absolute; 
    top: 16px; 
    right: 16px; 
    background: var(--accent); 
    color: var(--white); 
    padding: 8px 16px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 700; 
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.benefit-img { height: 150px; overflow: hidden; }
.benefit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.benefit-card:hover .benefit-img img { transform: scale(1.15); }
.benefit-icon { 
    width: 70px; height: 70px; 
    background: rgba(99, 102, 241, 0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
    color: var(--primary); 
    margin: -35px auto 20px; 
    position: relative; 
    z-index: 5; 
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}
.benefit-card h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; padding: 0 24px; }
.benefit-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; padding: 0 24px; line-height: 1.6; }
.benefit-stat { padding: 20px 24px; border-top: 1px solid rgba(99, 102, 241, 0.1); background: rgba(99, 102, 241, 0.03); }
.benefit-card.featured .benefit-stat { border-color: rgba(255,255,255,0.2); background: rgba(0,0,0,0.1); }
.stat-value { display: block; font-size: 32px; font-weight: 800; color: var(--primary); }
.benefit-card.featured .stat-value { color: var(--white); }
.stat-text { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.benefit-card.featured .stat-text { color: rgba(255,255,255,0.8); }
.benefits-cta { text-align: center; }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-card { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    position: relative; 
    transition: var(--transition); 
    overflow: hidden;
}
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.service-card.featured { border: 2px solid var(--primary); }
.service-card .featured-badge { position: absolute; top: 16px; right: 16px; z-index: 10; }
.service-img { height: 180px; overflow: hidden; position: relative; }
.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-card:hover .service-img img { transform: scale(1.15); }
.service-body { padding: 28px; }
.service-icon { 
    width: 64px; height: 64px; 
    background: var(--gradient); 
    border-radius: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 26px; 
    color: var(--white); 
    margin: -55px 0 20px; 
    position: relative; 
    z-index: 5; 
    box-shadow: var(--shadow-glow);
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.service-card > .service-body > p { font-size: 14px; color: var(--gray-500); margin-bottom: 18px; line-height: 1.7; }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--gray-600); }
.service-features i { color: var(--secondary); font-size: 12px; }
.service-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--primary); 
    font-weight: 600; 
    font-size: 14px; 
    text-decoration: none; 
    transition: var(--transition-fast);
}
.service-link:hover { gap: 16px; color: var(--primary-dark); }

/* ===== ROADMAP SECTION ===== */
.roadmap-wrapper { max-width: 1200px; margin: 0 auto 50px; }
.roadmap-timeline { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 20px; 
    position: relative; 
}
.roadmap-timeline::before { 
    content: ''; 
    position: absolute; 
    top: 28px; 
    left: 8%; 
    right: 8%; 
    height: 4px; 
    background: var(--gradient); 
    border-radius: 4px; 
    z-index: 0;
}
.roadmap-step { 
    position: relative; 
    z-index: 1; 
    flex: 1;
    max-width: 280px;
}
.step-number { 
    width: 56px; 
    height: 56px; 
    background: var(--gradient); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--white); 
    margin: 0 auto 20px; 
    box-shadow: var(--shadow-glow); 
    position: relative; 
    z-index: 2;
    border: 4px solid var(--white);
}
.step-content { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    overflow: hidden; 
    transition: var(--transition);
    text-align: center;
}
.step-content:hover { 
    border-color: var(--primary); 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-8px); 
}
.step-img { 
    height: 120px; 
    overflow: hidden; 
}
.step-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}
.step-content:hover .step-img img { 
    transform: scale(1.1); 
}
.step-icon { 
    width: 50px; 
    height: 50px; 
    background: rgba(99, 102, 241, 0.1); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    color: var(--primary); 
    margin: -25px auto 14px; 
    position: relative; 
    z-index: 5; 
    border: 4px solid var(--white);
}
.step-content h3 { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 8px; 
    padding: 0 16px; 
}
.step-content p { 
    font-size: 12px; 
    color: var(--gray-500); 
    line-height: 1.5; 
    padding: 0 16px 18px; 
}
.roadmap-cta { 
    text-align: center; 
}

/* ===== COURSES SECTION ===== */
.guarantee-banner { 
    background: var(--gradient); 
    border-radius: var(--radius-lg); 
    padding: 32px 40px; 
    margin-bottom: 44px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}
.guarantee-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.guarantee-content { display: flex; align-items: center; gap: 28px; color: var(--white); position: relative; z-index: 1; }
.guarantee-icon { 
    width: 72px; height: 72px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    flex-shrink: 0;
}
.guarantee-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.guarantee-text p { opacity: 0.9; font-size: 15px; }
.guarantee-features { display: flex; gap: 24px; margin-left: auto; }
.guarantee-features span { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    overflow: hidden; 
    transition: var(--transition);
}
.course-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.course-img { height: 180px; overflow: hidden; position: relative; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.course-card:hover .course-img img { transform: scale(1.15); }
.course-badge { 
    position: absolute; 
    top: 14px; 
    right: 14px; 
    background: rgba(239, 68, 68, 0.95); 
    color: var(--white); 
    padding: 8px 14px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    backdrop-filter: blur(4px);
}
.course-body { padding: 24px; }
.course-meta { display: flex; gap: 18px; margin-bottom: 14px; }
.course-meta span { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 7px; }
.course-meta i { color: var(--primary); }
.course-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.course-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.course-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.course-highlights span { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    padding: 6px 12px; 
    background: rgba(99, 102, 241, 0.08); 
    border-radius: 50px; 
    font-size: 11px; 
    color: var(--gray-600);
}
.course-highlights i { color: var(--secondary); font-size: 10px; }
.course-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(99, 102, 241, 0.1); }
.course-price { display: flex; flex-direction: column; }
.price-old { font-size: 13px; color: var(--gray-400); text-decoration: line-through; }
.price-new { font-size: 28px; font-weight: 800; color: var(--primary); }
/* ===== WHY CHOOSE US SECTION ===== */
.why-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.why-content { }
.why-desc { 
    font-size: 17px; 
    color: var(--gray-600); 
    margin-bottom: 32px; 
    line-height: 1.8; 
}
.why-points { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.why-point { 
    display: flex; 
    gap: 20px; 
    padding: 24px; 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    transition: var(--transition);
}
.why-point:hover { 
    border-color: var(--primary); 
    box-shadow: var(--shadow-lg); 
    transform: translateX(12px);
    background: var(--white);
}
.point-icon { 
    width: 60px; 
    height: 60px; 
    background: var(--gradient); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    font-size: 24px; 
    flex-shrink: 0;
    box-shadow: var(--shadow);
}
.point-content h4 { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 8px; 
}
.point-content p { 
    font-size: 14px; 
    color: var(--gray-500); 
    line-height: 1.6; 
}
.why-visual { 
    position: relative; 
}
.why-image-wrapper { 
    position: relative; 
    border-radius: var(--radius-xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-xl); 
    margin-bottom: 30px;
}
.why-img { 
    width: 100%; 
    height: 400px; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.8s ease; 
}
.why-image-wrapper:hover .why-img { 
    transform: scale(1.05); 
}
.stats-showcase { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
    margin-top: -40px; 
    position: relative; 
    z-index: 10;
}
.showcase-card { 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px);
    padding: 20px; 
    border-radius: var(--radius-lg); 
    text-align: center; 
    box-shadow: var(--shadow-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}
.showcase-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-xl); 
    border-color: var(--primary);
}
.showcase-num { 
    display: block; 
    font-size: 32px; 
    font-weight: 800; 
    background: var(--gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 4px;
}
.showcase-label { 
    font-size: 12px; 
    color: var(--gray-500); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: start; 
}
.contact-info { }
.contact-desc { 
    font-size: 17px; 
    color: var(--gray-600); 
    margin-bottom: 40px; 
    line-height: 1.8; 
}
.contact-cards { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    margin-bottom: 40px; 
}
.contact-card { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 24px; 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(99, 102, 241, 0.1); 
    transition: var(--transition);
}
.contact-card:hover { 
    border-color: var(--primary); 
    box-shadow: var(--shadow-lg); 
    transform: translateX(12px);
    background: var(--white);
}
.card-icon { 
    width: 56px; 
    height: 56px; 
    background: var(--gradient); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    font-size: 20px; 
    flex-shrink: 0;
    box-shadow: var(--shadow);
}
.card-info { 
    display: flex; 
    flex-direction: column; 
}
.card-label { 
    font-size: 12px; 
    color: var(--gray-500); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 4px;
}
.card-value { 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--gray-900); 
}
.social-links { 
    display: flex; 
    gap: 16px; 
}
.social-link { 
    width: 48px; 
    height: 48px; 
    background: rgba(99, 102, 241, 0.1); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); 
    font-size: 18px; 
    text-decoration: none; 
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.social-link:hover { 
    background: var(--gradient); 
    color: var(--white); 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-lg);
}
.contact-form-wrapper { }
.form-card { 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px);
    padding: 40px; 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-xl); 
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.form-card h3 { 
    font-size: 28px; 
    font-weight: 800; 
    color: var(--gray-900); 
    margin-bottom: 8px; 
}
.form-card > p { 
    font-size: 15px; 
    color: var(--gray-500); 
    margin-bottom: 32px; 
}
.contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
}
.form-group { 
    display: flex; 
    flex-direction: column; 
}
.form-group label { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--gray-700); 
    margin-bottom: 8px; 
}
.form-group label i { 
    color: var(--primary); 
}
.form-group input, 
.form-group select { 
    padding: 16px 20px; 
    border: 2px solid rgba(99, 102, 241, 0.1); 
    border-radius: var(--radius); 
    font-size: 15px; 
    background: rgba(255,255,255,0.8); 
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    color: var(--gray-700);
}
.form-group input:focus, 
.form-group select:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: var(--white);
}
.form-group input::placeholder { 
    color: var(--gray-400); 
}
.alert { 
    padding: 16px 20px; 
    border-radius: var(--radius); 
    margin-bottom: 24px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 14px; 
    font-weight: 500;
}
.alert-success { 
    background: rgba(16, 185, 129, 0.1); 
    color: var(--secondary); 
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.alert-error { 
    background: rgba(239, 68, 68, 0.1); 
    color: #ef4444; 
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .hero-grid, .about-grid, .why-grid, .contact-grid { gap: 60px; }
    .benefits-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar { max-width: 90%; }
    .roadmap-timeline { gap: 16px; }
    .roadmap-step { max-width: 240px; }
}

/* Desktop Medium - 1280px to 1399px */
@media (max-width: 1399px) and (min-width: 1280px) {
    .navbar {
        max-width: 92%;
        padding: 12px 26px;
    }
    .nav-menu {
        gap: 5px;
    }
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    .nav-right .btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    .logo-main {
        font-size: 19px;
    }
    .logo-sub {
        font-size: 8.5px;
    }
    .logo-icon {
        width: 42px;
        height: 42px;
    }
}

/* Desktop Small - 1100px to 1279px */
@media (max-width: 1279px) and (min-width: 1100px) {
    .navbar {
        max-width: 93%;
        padding: 11px 24px;
    }
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 9px 15px;
        font-size: 13.5px;
    }
    .nav-right .btn {
        padding: 10px 21px;
        font-size: 13.5px;
    }
    .logo-main {
        font-size: 18.5px;
    }
    .logo-sub {
        font-size: 8px;
    }
    .logo-icon {
        width: 41px;
        height: 41px;
    }
}

/* Tablet Landscape - 1024px to 1099px */
@media (max-width: 1099px) and (min-width: 1024px) {
    .navbar { 
        max-width: 94%; 
        padding: 10px 22px;
        top: 15px;
    }
    .navbar .container {
        gap: 14px;
    }
    .nav-menu { 
        gap: 3px; 
    }
    .nav-link { 
        padding: 8px 14px; 
        font-size: 13px; 
    }
    .nav-right .btn { 
        padding: 10px 20px; 
        font-size: 13px; 
    }
    .logo-main { 
        font-size: 18px; 
    }
    .logo-sub { 
        font-size: 8px; 
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .navbar { 
        max-width: 95%; 
        padding: 10px 20px;
        top: 15px;
    }
    .navbar .container {
        gap: 15px;
    }
    .nav-menu { 
        gap: 4px; 
    }
    .nav-link { 
        padding: 8px 14px; 
        font-size: 13px; 
    }
    .nav-right .btn { 
        padding: 10px 20px; 
        font-size: 13px; 
    }
    .logo-main { 
        font-size: 18px; 
    }
    .logo-sub { 
        font-size: 8px; 
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .roadmap-timeline { gap: 12px; }
    .roadmap-step { max-width: 200px; }
    .step-content h3 { font-size: 14px; }
    .step-content p { font-size: 11px; }
}

/* Tablet Portrait - 900px to 1023px */
@media (max-width: 1023px) and (min-width: 900px) {
    .navbar {
        max-width: 95%;
        padding: 10px 19px;
    }
    .nav-menu {
        gap: 3px;
    }
    .nav-link {
        padding: 8px 13px;
        font-size: 12.5px;
    }
    .nav-right .btn {
        padding: 9px 19px;
        font-size: 12.5px;
    }
    .logo-main {
        font-size: 17.5px;
    }
}

/* Tablet Portrait - 900px */
@media (max-width: 900px) {
    .navbar {
        max-width: 96%;
        padding: 10px 18px;
    }
    .nav-menu {
        gap: 2px;
    }
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    .nav-right .btn {
        padding: 9px 18px;
        font-size: 12px;
    }
    .logo-main {
        font-size: 17px;
    }
}

/* Tablet Small - 820px to 899px */
@media (max-width: 899px) and (min-width: 820px) {
    .navbar {
        max-width: 96%;
        padding: 10px 17px;
        top: 12px;
    }
    .nav-menu {
        gap: 2px;
    }
    .nav-link {
        padding: 7px 11px;
        font-size: 11.5px;
    }
    .nav-right .btn {
        padding: 8px 17px;
        font-size: 11.5px;
    }
    .logo-main {
        font-size: 16.5px;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
    }
}

/* Tablet Small - 774px to 819px */
@media (max-width: 819px) and (min-width: 774px) {
    .navbar {
        max-width: 96%;
        padding: 10px 16px;
        top: 12px;
    }
    .nav-menu {
        gap: 1px;
    }
    .nav-link {
        padding: 7px 10px;
        font-size: 11px;
    }
    .nav-right .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    .logo-main {
        font-size: 16px;
    }
    .logo-sub {
        font-size: 7px;
    }
    .logo-icon {
        width: 37px;
        height: 37px;
    }
}

/* Mobile & Tablet - 768px */
@media (max-width: 768px) {
    .navbar { 
        top: 10px; 
        padding: 10px 16px; 
        max-width: 95%;
        min-width: 280px;
        border-radius: 50px;
    }
    .navbar .container { 
        gap: 12px; 
    }
    .nav-menu { 
        display: none; 
    }
    .hamburger { 
        display: flex; 
    }
    .nav-right { 
        display: none; 
    }
    .logo {
        gap: 10px;
    }
    .logo-main {
        font-size: 16px;
    }
    .logo-sub {
        font-size: 7px;
        letter-spacing: 1px;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    .hamburger {
        padding: 8px;
    }
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    /* Mobile Menu Responsive */
    .mobile-menu {
        width: 90%;
        max-width: 350px;
    }
    .mobile-nav-links {
        padding: 70px 0 20px;
    }
    .mobile-nav-links .nav-link {
        padding: 14px 25px;
        font-size: 15px;
    }
    .mobile-cta {
        padding: 20px 25px 35px;
    }
    .mobile-cta .btn {
        padding: 14px;
        font-size: 15px;
    }
    .hero-grid, .about-grid, .why-grid, .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
    }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 36px; }
    .benefits-grid, .services-grid, .courses-grid { 
        grid-template-columns: 1fr; 
    }
    .roadmap-timeline { 
        flex-direction: column; 
        gap: 30px;
        align-items: center;
    }
    .roadmap-timeline::before { 
        display: none; 
    }
    .roadmap-step { 
        max-width: 100%;
        width: 100%;
    }
    .hero-cta { 
        justify-content: center; 
    }
    .hero-stats { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    .stats-showcase { 
        grid-template-columns: repeat(2, 1fr); 
        margin-top: 20px; 
    }
    .guarantee-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
    }
    .guarantee-features { 
        margin-left: 0; 
        justify-content: center; 
        flex-wrap: wrap; 
    }
    .slide-nav { 
        right: 20px; 
    }
    .scroll-indicator { 
        bottom: 30px; 
    }
}

/* Mobile Large - 640px */
@media (max-width: 640px) {
    .navbar {
        top: 8px;
        padding: 8px 14px;
        max-width: 96%;
        min-width: 260px;
    }
    .navbar .container {
        gap: 10px;
    }
    .logo {
        gap: 8px;
    }
    .logo-main {
        font-size: 15px;
    }
    .logo-sub {
        font-size: 6px;
        letter-spacing: 0.8px;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    .hamburger {
        padding: 7px;
    }
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    /* Mobile Menu */
    .mobile-menu {
        width: 92%;
        max-width: 320px;
    }
    .mobile-nav-links {
        padding: 65px 0 15px;
    }
    .mobile-nav-links .nav-link {
        padding: 13px 20px;
        font-size: 14px;
    }
    .mobile-cta {
        padding: 18px 20px 30px;
    }
    .mobile-cta .btn {
        padding: 13px;
        font-size: 14px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .slide-content { padding: 100px 0 60px; }
    .navbar {
        top: 8px;
        padding: 8px 12px;
        max-width: 94%;
        min-width: 240px;
        border-radius: 40px;
    }
    .navbar .container {
        gap: 8px;
    }
    .logo {
        gap: 6px;
    }
    .logo-main {
        font-size: 14px;
    }
    .logo-sub {
        display: none; /* Hide subtitle on very small screens */
    }
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    .hamburger {
        padding: 6px;
        border-radius: 10px;
    }
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    /* Mobile Menu */
    .mobile-menu {
        width: 95%;
        max-width: 300px;
    }
    .mobile-nav-links {
        padding: 60px 0 15px;
    }
    .mobile-nav-links .nav-link {
        padding: 12px 18px;
        font-size: 14px;
        gap: 10px;
    }
    .mobile-nav-links .nav-link::before {
        font-size: 20px;
    }
    .mobile-cta {
        padding: 15px 18px 25px;
    }
    .mobile-cta .btn {
        padding: 12px;
        font-size: 14px;
    }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .form-card { padding: 24px; }
    .contact-cards { gap: 12px; }
    .contact-card { padding: 20px; }
    .why-points { gap: 16px; }
    .why-point { padding: 20px; }
    .stats-showcase { grid-template-columns: 1fr; }
}

/* Mobile Small - 375px (iPhone SE, Galaxy S8) */
@media (max-width: 375px) {
    .navbar {
        top: 6px;
        padding: 6px 10px;
        max-width: 92%;
        min-width: 220px;
        border-radius: 35px;
    }
    .navbar .container {
        gap: 6px;
    }
    .logo {
        gap: 5px;
    }
    .logo-main {
        font-size: 13px;
    }
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    .hamburger {
        padding: 5px;
        border-radius: 8px;
    }
    .hamburger span {
        width: 18px;
        height: 1.5px;
    }
    /* Mobile Menu */
    .mobile-menu {
        width: 96%;
        max-width: 280px;
    }
    .mobile-nav-links {
        padding: 55px 0 12px;
    }
    .mobile-nav-links .nav-link {
        padding: 11px 16px;
        font-size: 13px;
        gap: 8px;
    }
    .mobile-nav-links .nav-link::before {
        font-size: 18px;
    }
    .mobile-cta {
        padding: 12px 16px 20px;
    }
    .mobile-cta .btn {
        padding: 11px;
        font-size: 13px;
    }
}

/* Mobile Extra Small - 320px (iPhone 5/SE) */
@media (max-width: 320px) {
    .navbar {
        top: 5px;
        padding: 6px 8px;
        max-width: 90%;
        min-width: 200px;
        border-radius: 30px;
    }
    .navbar .container {
        gap: 5px;
    }
    .logo {
        gap: 4px;
    }
    .logo-main {
        font-size: 12px;
    }
    .logo-icon {
        width: 26px;
        height: 26px;
    }
    .hamburger {
        padding: 4px;
        border-radius: 6px;
    }
    .hamburger span {
        width: 16px;
        height: 1.5px;
    }
    /* Mobile Menu */
    .mobile-menu {
        width: 98%;
        max-width: 260px;
    }
    .mobile-nav-links {
        padding: 50px 0 10px;
    }
    .mobile-nav-links .nav-link {
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px;
    }
    .mobile-nav-links .nav-link::before {
        font-size: 16px;
    }
    .mobile-cta {
        padding: 10px 14px 18px;
    }
    .mobile-cta .btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar {
        top: 5px;
        padding: 6px 12px;
        border-radius: 30px;
    }
    .navbar .container {
        gap: 8px;
    }
    .logo {
        gap: 5px;
    }
    .logo-main {
        font-size: 13px;
    }
    .logo-sub {
        display: none;
    }
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    .hamburger {
        padding: 5px;
    }
    .hamburger span {
        width: 18px;
        height: 2px;
    }
}

/* Tablet Landscape Specific */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .navbar {
        max-width: 96%;
        padding: 10px 20px;
    }
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    .nav-right .btn {
        padding: 9px 16px;
        font-size: 12px;
    }
}

/* Large Desktop - 1440px and above */
@media (min-width: 1440px) {
    .navbar {
        max-width: 1400px;
        padding: 14px 28px;
    }
    .logo-main {
        font-size: 22px;
    }
    .logo-sub {
        font-size: 10px;
    }
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    .nav-link {
        padding: 12px 20px;
        font-size: 15px;
    }
    .nav-right .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Ultra Wide - 1920px and above */
@media (min-width: 1920px) {
    .navbar {
        max-width: 1600px;
        padding: 16px 32px;
    }
    .logo-main {
        font-size: 24px;
    }
    .logo-icon {
        width: 52px;
        height: 52px;
    }
    .nav-link {
        padding: 14px 22px;
        font-size: 16px;
    }
    .nav-right .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    position: relative;
    z-index: 100;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.footer .container {
    position: relative;
    z-index: 1;
}
.footer-content {
    padding: 60px 0 20px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand {
    max-width: 400px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: var(--transition);
}
.footer-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.footer-logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.footer-logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.3));
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
}
.footer-logo-main {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.footer-logo-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 2px;
}
.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-social-link:hover {
    background: var(--gradient);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(8px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact li span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.5;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}
.footer-copyright p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}
.footer-links-bottom {
    display: flex;
    gap: 24px;
}
.footer-links-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}
.footer-links-bottom a:hover {
    color: var(--white);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        gap: 40px;
    }
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 20px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 0 15px;
    }
    .footer-links {
        gap: 25px;
    }
    .footer-column h4 {
        font-size: 16px;
    }
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* ===== MODERN FOOTER DESIGN ===== */
.footer-modern {
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 25%, #2d1b69 50%, #1e293b 75%, #0f172a 100%);
    color: var(--white);
    margin-top: 80px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
}

/* Animated Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: floatAnimation 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    top: 60%;
    right: 30%;
    animation-delay: -14s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(20px, -30px) scale(1.05); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.footer-content-modern {
    position: relative;
    z-index: 2;
    padding: 60px 0 20px;
}

/* Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.footer-brand-section {
    max-width: 500px;
}

.brand-logo-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.logo-container-modern {
    width: 80px;
    height: 80px;
    position: relative;
}

.logo-container-modern svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.4));
}

.brand-text-modern {
    display: flex;
    flex-direction: column;
}

.brand-name-modern {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.brand-tagline-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 4px 0 0 0;
}

.brand-description-modern {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* CTA Section */
.footer-cta-section {
    display: flex;
    justify-content: flex-end;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
}

.cta-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
}

.cta-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Middle Section */
.footer-middle {
    margin-bottom: 50px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.link-column {
    position: relative;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px 0;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.column-title i {
    color: #6366f1;
    font-size: 16px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 6px 0;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links-list a i {
    font-size: 12px;
    width: 16px;
    color: #8b5cf6;
}

/* Contact Column */
.contact-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon-modern {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-modern i {
    font-size: 16px;
    color: #6366f1;
}

.contact-details-modern {
    display: flex;
    flex-direction: column;
}

.contact-label-modern {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-value-modern:hover {
    color: #6366f1;
}

/* Bottom Section */
.footer-bottom-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.stat-item-modern {
    text-align: center;
}

.stat-number-modern {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #6366f1; /* Fallback color */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label-modern {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}

.footer-social-modern {
    text-align: right;
}

.footer-social-modern h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px 0;
}

.social-links-modern {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link-modern.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-link-modern.instagram:hover { border-color: #e4405f; color: #e4405f; }
.social-link-modern.linkedin:hover { border-color: #0077b5; color: #0077b5; }
.social-link-modern.youtube:hover { border-color: #ff0000; color: #ff0000; }
.social-link-modern.twitter:hover { border-color: #1da1f2; color: #1da1f2; }

.social-link-modern i {
    font-size: 14px;
}

/* Copyright Section */
.footer-copyright-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.copyright-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyright-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 16px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-badge i {
    color: #ef4444;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-stats {
        gap: 20px;
    }
    
    .stat-number-modern {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer-content-modern {
        padding: 40px 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-cta-section {
        justify-content: center;
    }
    
    .cta-card {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-modern {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-column {
        order: -1;
    }
    
    .footer-bottom-modern {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-social-modern {
        text-align: center;
    }
    
    .social-links-modern {
        justify-content: center;
    }
    
    .footer-copyright-modern {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        margin-top: 60px;
        border-radius: 20px 20px 0 0;
    }
    
    .brand-logo-modern {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .logo-container-modern {
        width: 60px;
        height: 60px;
    }
    
    .brand-name-modern {
        font-size: 24px;
    }
    
    .cta-card {
        padding: 24px;
    }
    
    .cta-buttons {
        gap: 8px;
    }
    
    .btn-modern {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-number-modern {
        font-size: 20px;
    }
    
    .social-links-modern {
        gap: 8px;
    }
    
    .social-link-modern {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .social-link-modern span {
        display: none;
    }
}
/* ===== LOGO IMAGE STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.5)) brightness(1.1);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2)) brightness(1.2);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) brightness(1.4);
}

.brand-logo-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.brand-text-modern {
    text-align: left;
}

.brand-name-modern {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline-modern {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .brand-name-modern {
        font-size: 20px;
    }
    
    .brand-tagline-modern {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 45px;
    }
    
    .brand-logo-modern {
        align-items: center;
        text-align: center;
    }
    
    .brand-text-modern {
        text-align: center;
    }
}

/* ===== MSME BADGE STYLING ===== */
.msme-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    margin-bottom: 8px;
}

.msme-badge i {
    color: #ffffff;
    font-size: 16px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.badge-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.badge-number {
    font-size: 10px;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

.made-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-500);
    font-size: 14px;
}

.made-badge i {
    color: #ef4444;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Badge Enhancement for MSME */
.hero-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-badge i {
    color: #10b981;
}

/* Why Choose Us MSME Point Styling */
.why-point:first-child .point-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.why-point:first-child .point-icon i {
    color: #ffffff;
}

/* Responsive MSME Badge */
@media (max-width: 768px) {
    .msme-badge {
        padding: 6px 10px;
    }
    
    .badge-title {
        font-size: 11px;
    }
    
    .badge-number {
        font-size: 9px;
    }
    
    .hero-badge span {
        font-size: 12px;
    }
}
/* ===== LOGO FIXED STYLES ===== */
.logo-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

/* Ensure navbar logo container is visible */
.navbar .logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    text-decoration: none;
}

/* Footer logo styles */
.footer-logo-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

/* Brand logo styles */
.brand-logo-modern img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hover effects */
.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.5)) brightness(1.1);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) brightness(1.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .brand-logo-modern img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 45px;
    }
    
    .brand-logo-modern img {
        height: 45px;
    }
}

/* Enhanced Logo Size - Override */
.navbar .logo-image {
    height: 60px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .navbar .logo-image {
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .navbar .logo-image {
        height: 45px !important;
    }
}

/* ===== PORTALS SECTION ===== */
.portals-section {
    position: relative;
}

/* Portals Highlight Banner */
.portals-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.portals-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* Portals Grid */
.portals-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 28px; 
    margin-top: 40px;
}

.portal-card { 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portal-card:hover::before {
    transform: scaleX(1);
}

.portal-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2); 
    border-color: var(--primary); 
}

.portal-card.featured { 
    border: 3px solid var(--primary); 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    transform: scale(1.02);
}

.portal-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Portal Badges */
.portal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.portal-badge.trending {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.portal-badge.new {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.portal-badge.featured-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.portal-badge.advanced {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.portal-icon { 
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.portal-card:hover .portal-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.portal-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

.portal-card h3 { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--gray-900); 
    margin-bottom: 12px;
    line-height: 1.3;
}

.portal-card > p { 
    font-size: 14px; 
    color: var(--gray-600); 
    margin-bottom: 20px; 
    line-height: 1.7; 
    min-height: 60px;
}

/* Portal Stats */
.portal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-features { 
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.portal-features span { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 14px; 
    color: var(--gray-700);
    font-weight: 500;
}

.portal-features i { 
    color: var(--primary); 
    font-size: 14px; 
}

.portal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.portal-link:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.portal-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.portal-link:hover i {
    transform: translateX(6px);
}

/* Portals CTA */
.portals-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    padding: 50px;
    border-radius: 24px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-600);
}

/* Responsive Design for Portals */
@media (max-width: 1200px) {
    .portals-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .portal-card.featured { transform: scale(1); }
    .portal-card.featured:hover { transform: translateY(-12px) scale(1); }
}

@media (max-width: 768px) {
    .portals-grid { grid-template-columns: 1fr; gap: 20px; }
    .highlight-grid { grid-template-columns: 1fr; gap: 16px; }
    .portal-card { padding: 24px; }
    .portal-icon { width: 60px; height: 60px; font-size: 26px; }
    .portals-highlight { padding: 24px; }
    .portal-stats { grid-template-columns: 1fr; }
    .cta-content h3 { font-size: 22px; }
    .portals-cta { padding: 30px; }
}
