@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* "Modern Tech" Premium Palette */
    --brand-primary: #2563EB;
    /* Vibrant Royal Blue */
    --brand-secondary: #00B4B3;
    /* Bright Teal */
    --brand-accent: #7C3AED;
    /* Rich Purple */
    --brand-midnight: #0B2D3A;
    /* Deep Tech Blue */
    --brand-deep: #F0F9FF;
    /* Lighter Blue Base */
    --brand-slate: #5F6F73;
    /* Professional Slate */
    --brand-studio: #FFFFFF;
    /* Pure White */

    /* Brighter Aurora Colors */
    --aurora-1: rgba(37, 99, 235, 0.15);
    /* Bright Blue */
    --aurora-2: rgba(0, 180, 179, 0.15);
    /* Vibrant Teal */
    --aurora-3: rgba(124, 58, 237, 0.15);
    /* Electric Purple */

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --bg-app: #FFFFFF;

    --text-heading: #0B2D3A;
    --text-body: #475569;
    --text-muted: #5F6F73;

    /* Glassmorphism Presets */
    --glass-soft: rgba(255, 255, 255, 0.7);
    --glass-vibrant: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-pro: 0 10px 30px -5px rgba(11, 45, 58, 0.08);
    --shadow-float: 0 25px 50px -12px rgba(11, 45, 58, 0.15);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.2);
}

/* Global Typography Improvements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    /* Force smooth momentum on iOS */
}

/* Disable smooth scroll on mobile to prevent conflicts with momentum */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-main);
    background-color: transparent;
    color: var(--text-body);
    line-height: 1.6;
}

/* Navigation: Premium White Glass Style */
.nav-chic {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: #FFFFFF;
    border-bottom: 2px solid var(--brand-studio);
    box-shadow: 0 4px 6px -1px rgba(0, 29, 61, 0.05);
}

.nav-chic a {
    color: var(--brand-midnight) !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-chic a:hover {
    color: var(--brand-primary) !important;
    transform: translateY(-1px);
}

.nav-chic .dropdown-chic {
    background: white;
    border: 1px solid rgba(0, 180, 179, 0.1);
}

.nav-chic .dropdown-link {
    color: var(--brand-midnight) !important;
    font-weight: 700;
}

/* Global Logo Polish: Ultra-Vivid & Animated */
.logo-wrap img {
    mix-blend-mode: multiply;
    /* Removes white background box */
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoFloat 4s ease-in-out infinite;
}

.nav-chic .logo-wrap img {
    height: 52px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

.nav-chic .logo-wrap img {
    height: 52px;
    width: auto;
}

.nav-chic .logo-wrap img:hover {
    filter: brightness(1.15) contrast(1.2);
    transform: scale(1.05);
}

/* Dropdown System */
.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.dropdown-chic {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 280px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(31, 41, 51, 0.05);
    box-shadow: var(--shadow-float);
    opacity: 0;
    visibility: hidden;
}

.nav-item:hover .dropdown-chic {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 12px 18px;
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-link:hover {
    background: rgba(0, 124, 122, 0.05);
    color: var(--brand-teal);
    padding-left: 24px;
}

/* "Most Recommended" Hero (Clean Split Layout) */
.hero-chic {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-app);
    min-height: 85vh;
}

/* Hero Premium - Transparent to show mesh */
.hero-premium {
    background: transparent;
    position: relative;
}

.hero-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 8px solid white;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust List Styling */
.trust-list {
    margin: 32px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-body);
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--brand-light-cyan);
    color: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Glass-Pro Card System */
.glass-pro {
    background: #FFFFFF;
    border: 1px solid rgba(0, 29, 61, 0.08);
    box-shadow: var(--shadow-pro);
    border-radius: 8px;
    /* Classic sharp-round */
    transition: all 0.3s ease;
}

.glass-pro:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-float);
}

.shadow-cyan-glow {
    text-shadow: 0 0 20px rgba(0, 180, 179, 0.6), 0 0 40px rgba(0, 180, 179, 0.2);
}

.hero-text-white {
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtext-white {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-stats-white {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.hero-card-stack {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-card-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography Gradient */
.text-jewel {
    background: var(--grad-jewel);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-jewel {
    background: var(--brand-primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.3);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-jewel:hover {
    background: #1557B0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

.btn-jewel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-jewel:hover::after {
    animation: shimmer 1s;
}

.btn-jewel:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5), 0 0 20px rgba(0, 180, 179, 0.2);
}

/* Partner Logos Grayscale: Clean & Bright */
.grayscale {
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.grayscale:hover {
    filter: grayscale(0%) brightness(1.2) saturate(1.1);
    opacity: 1 !important;
}

/* Pillar Styling */
.pillar-icon {
    transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Specific Footer Padding */
footer .logo-wrap img {
    height: 40px;
}

/* Scroll Offset Fix */
html {
    scroll-padding-top: 100px;
}

.btn-chic-outline {
    background: white;
    color: var(--brand-dark);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 14px;
    border: 1px solid rgba(0, 56, 60, 0.1);
    box-shadow: var(--shadow-pro);
    transition: all 0.3s ease;
}

.btn-chic-outline:hover {
    border-color: var(--brand-cyan);
    background: rgba(0, 229, 255, 0.03);
}

/* Component Cards */
.card-jewel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-pro);
    transition: all 0.4s ease;
    position: relative;
}

.card-jewel:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-float);
}

.card-jewel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.card-jewel:hover::before {
    opacity: 1;
}

/* Course Section Styles */

/* Old card style removed to prevent conflict with .course-card-clean */

/* New Course Card Pricing Styles */
/* Course Card Clean Styles (Matching script.js injection) */
.course-card-clean {
    background: white;
    border-radius: 32px;
    padding: 0;
    border: 1px solid rgba(0, 181, 184, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.course-card-clean:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: #1A73E8;
}

.course-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-clean:hover .course-image {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.course-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 24px;
    font-weight: 900;
    color: #001D3D;
    line-height: 1.2;
    margin-bottom: 16px;
}

.course-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #001D3D;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #00B4B3;
}

.course-pricing-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.price-main {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 22px;
    font-weight: 900;
    color: #1A73E8;
}

.price-original {
    font-size: 13px;
    text-decoration: line-through;
    color: #94A3B8;
    font-weight: 700;
}

.price-discount {
    background: #00B4B3;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
}

.course-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #001D3D;
    color: white;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.course-cta:hover {
    background: #1A73E8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.cta-arrow {
    width: 18px;
    height: 18px;
}

/* Contact Section Styles */
.contact-section {
    background: white;
    border-radius: 48px;
    padding: 80px;
    border: 1px solid rgba(0, 181, 184, 0.1);
    box-shadow: var(--shadow-pro);
}

.input-chic {
    width: 100%;
    padding: 16px 24px;
    background: #F8FAFC;
    border: 1px solid rgba(0, 56, 60, 0.05);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--brand-dark);
    transition: all 0.3s ease;
}

.input-chic:focus {
    outline: none;
    background: white;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.contact-info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.05);
    color: var(--brand-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-value {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.icon-chic {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.05);
    color: var(--brand-cyan);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

/* Chatbot Custom Styles */
#chat-window.active {
    display: flex !important;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 85%;
    position: relative;
    animation: slideInChat 0.3s ease-out forwards;
}

.chat-bubble-ai {
    background: white;
    color: var(--brand-midnight);
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.chat-bubble-user {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1D4ED8 100%);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.chat-bubble strong {
    font-weight: 800;
    color: inherit;
}

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

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

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    width: fit-content;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 0 4px;
}

.chat-option-btn {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    /* Bold & Professional */
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chat-option-btn:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, #1D4ED8 0%, #0D9488 100%);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.lucide-bot-premium {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-trigger:hover .lucide-bot-premium,
.floating-action-trigger:hover .lucide-bot-premium {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

@keyframes botPulse {

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

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

.lucide-bot-premium {
    animation: botPulse 3s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

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

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

#chat-messages::-webkit-scrollbar {
    width: 6px;
}

#chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

#chat-messages::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 10px;
}

/* Chatbot Interactive Options */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-left: 12px;
    max-width: 85%;
    animation: slideInChat 0.3s ease-out forwards;
}

/* Base for all premium triggers */
.floating-action-trigger {
    position: fixed;
    width: 65px;
    height: 65px;
    right: 32px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    /* Modern Squircle */
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
}

.floating-action-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shineSweepBtn 4s infinite;
}

@keyframes shineSweepBtn {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.floating-action-trigger:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-action-trigger svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
}

.floating-action-trigger:hover svg {
    transform: scale(1.2);
}

/* Standalone WhatsApp Float */
/* WhatsApp Specialization */
.whatsapp-float {
    bottom: 110px !important;
    right: 32px;
    background: linear-gradient(135deg, #25D366 0%, #075E54 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1001;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Callback Specialization */
.callback-float {
    bottom: 195px !important;
    right: 32px !important;
    left: auto !important;
    background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
    border: none !important;
    cursor: pointer;
    z-index: 2005;
    /* Supreme layer */
    color: white !important;
}

.callback-float .float-label {
    right: 75px !important;
    left: auto !important;
    transform: translateY(-50%) translateX(10px);
}

.callback-float:hover {
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.5);
    transform: translateY(-8px) rotate(-5deg) scale(1.05);
}

.callback-float:hover .float-label {
    transform: translateY(-50%) translateX(0);
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(250, 204, 21, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
    }
}

/* Page Termination Polish */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


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

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

.animate-fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 3s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

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

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

.hover-glow-card:hover {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* WhatsApp Hover (Cleaned) */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating Labels (Tooltips) */
.float-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #FFFFFF;
    color: #001D3D;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Show label on hover of the parent group */
.group:hover .float-label,
.whatsapp-float:hover .float-label,
.callback-float:hover .float-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {

    /* Shrink Buttons */
    .whatsapp-float,
    .callback-float {
        width: 48px;
        height: 48px;
        right: 16px;
        font-size: 20px;
    }

    .whatsapp-float {
        bottom: 85px;
    }

    .callback-float {
        bottom: 145px;
    }

    /* Hide Float side-labels on touch to avoid stickiness and clutter */
    .float-label {
        display: none !important;
    }

    /* Adjust SVG icon sizes inside buttons */
    .whatsapp-float svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ========================================
   CLEAN COURSE SECTION STYLES WITH ANIMATIONS
   ======================================== */

/* Course Section Container */
#courses {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    animation: flowingGradient 15s ease infinite;
    position: relative;
}

/* Flowing wave background */
#courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 179, 0.03) 0%, transparent 40%);
    pointer-events: none;
    animation: wave 20s ease-in-out infinite;
}

/* Add flowing particles effect */
#courses::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(26, 115, 232, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 180, 179, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: float 30s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes gentleFloat {

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

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

/* Course Grid */
#course-container {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Clean Course Card with Entrance Animation */
.course-card-clean {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.course-card-clean:hover {
    border-color: #E2E8F0;
    box-shadow:
        0 20px 40px rgba(26, 115, 232, 0.2),
        0 0 60px rgba(26, 115, 232, 0.15);
    transform: translateY(-12px) scale(1.02);
}

/* Image Section */
.course-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    z-index: 1;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card-clean:hover .course-image {
    transform: scale(1.15) rotate(2deg);
}

/* Badge with subtle animation */
.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: badgeFadeIn 0.6s ease 0.3s both;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

/* Content Section */
.course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Title with slide-in animation */
.course-title {
    font-size: 18px;
    font-weight: 800;
    color: #0B2D3A;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
}

.course-card-clean:hover .course-title {
    color: #1A73E8;
    text-shadow: 0 0 20px rgba(26, 115, 232, 0.3);
    transform: translateX(4px);
}

/* Description */
.course-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Features List with stagger animation */
.course-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.course-card-clean:hover .feature-item {
    transform: translateX(8px);
}

.feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
    transition-delay: 0.15s;
}

.feature-item:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #1A73E8;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.course-card-clean:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
}

/* Premium CTA Button */
.course-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0B2D3A 0%, #1A4D6F 100%);
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(11, 45, 58, 0.2);
}

/* Button shine effect */
.course-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.course-cta:hover::before {
    left: 100%;
}

.course-cta:hover {
    background: linear-gradient(135deg, #1A73E8 0%, #2E8FFF 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(26, 115, 232, 0.35),
        0 0 0 1px rgba(26, 115, 232, 0.2);
}

.course-cta:active {
    transform: translateY(0);
}

.cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Enhanced AOS Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================================
   PREMIUM BUTTON STYLES (GLOBAL)
   ======================================== */

/* Enhanced .btn-jewel */
.btn-jewel {
    position: relative;
    background: linear-gradient(135deg, #1A73E8 0%, #2E8FFF 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow:
        0 4px 14px rgba(26, 115, 232, 0.3),
        0 0 0 1px rgba(26, 115, 232, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.btn-jewel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-jewel:hover::before {
    left: 100%;
}

.btn-jewel:hover {
    background: linear-gradient(135deg, #1557B0 0%, #1A73E8 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(26, 115, 232, 0.45),
        0 0 0 1px rgba(26, 115, 232, 0.2);
}

.btn-jewel:active {
    transform: translateY(-1px);
}

/* Enhanced outline button */
.btn-chic-outline {
    background: white;
    color: #0B2D3A;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-chic-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-chic-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-chic-outline:hover {
    border-color: #1A73E8;
    color: #1A73E8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}


/* Responsive Grid */
@media (min-width: 1024px) {
    #course-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #course-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #course-container {
        grid-template-columns: 1fr;
    }

    .course-image-wrapper {
        height: 180px;
    }

    .course-content {
        padding: 20px;
    }

    .course-card-clean:hover {
        transform: translateY(-4px);
    }
}

/* ========================================
   GLOBAL FLOWING EFFECTS & SMOOTH UX
   ======================================== */

/* Smooth scroll behavior */
/* Callback and other modal triggers */
.trigger-callback-modal {
    position: relative;
    overflow: hidden;
}

.trigger-callback-modal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.trigger-callback-modal:active::after {
    width: 200px;
    height: 200px;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scrolling with momentum */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

/* Flowing background animation for all sections */
section {
    position: relative;
    overflow: hidden;
    /* Critical for mobile zoom safety */
    max-width: 100%;
    transform: translateZ(0);
    /* Force GPU layer for all major sections */
    backface-visibility: hidden;
}

/* Prevent AOS from causing horizontal scroll */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* Add flowing gradient background to alternating sections */
section:nth-child(even) {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* Animated gradient background */
@keyframes flowingGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Flowing wave animation */
@keyframes wave {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-5px) translateY(-5px);
    }

    50% {
        transform: translateX(-10px) translateY(0);
    }

    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

/* Smooth element entrance */
@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Floating animation for decorative elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(2deg);
    }

    66% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

/* Pulse glow effect */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(26, 115, 232, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(26, 115, 232, 0.6);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
textarea,
select {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover states */
a:hover,
button:hover {
    transform: translateY(-2px);
}

/* Flowing cursor effect */
* {
    cursor: default;
}

a,
button,
[role="button"],
input[type="submit"] {
    cursor: pointer;
}

/* ========================================
   TESTIMONIALS INFINITE SCROLL CAROUSEL
   ======================================== */

/* Container for scrolling testimonials */
.testimonial-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Scrolling track */
.testimonial-scroll-track {
    display: flex;
    gap: 24px;
    animation: scrollLeft 3s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.testimonial-scroll-track:hover {
    animation-play-state: paused;
}

/* Reverse direction for second row */
.testimonial-scroll-reverse {
    animation: scrollRight 3s linear infinite;
}

/* Scroll animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Individual testimonial card in carousel */
.testimonial-scroll-card {
    min-width: 450px;
    max-width: 450px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.testimonial-scroll-card:hover {
    border-color: #1A73E8;
    box-shadow:
        0 12px 32px rgba(26, 115, 232, 0.15),
        0 0 40px rgba(26, 115, 232, 0.1);
    transform: translateY(-4px) scale(1.02);
}

/* Large quote mark */
.quote-mark {
    font-size: 64px;
    line-height: 1;
    color: #1A73E8;
    opacity: 0.15;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

/* Testimonial text */
.testimonial-scroll-text {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
}

/* Author section */
.testimonial-scroll-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

/* Small avatar */
.author-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* Author name */
.author-name-small {
    font-size: 14px;
    font-weight: 700;
    color: #0B2D3A;
    margin-bottom: 2px;
}

/* Author role */
.author-role-small {
    font-size: 12px;
    font-weight: 600;
    color: #1A73E8;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testimonial-scroll-card {
        min-width: 320px;
        max-width: 320px;
        padding: 20px;
    }

    .testimonial-scroll-text {
        font-size: 13px;
    }

    .quote-mark {
        font-size: 48px;
    }
}

/* ========================================
   CONTACT SECTION - MODERN COLORFUL TEMPLATE
   ======================================== */

/* Contact Info Cards with Vibrant Colors */
.contact-info-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: gentleFloat 6s ease-in-out infinite;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Gradient border effect */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 50%, #7C3AED 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:nth-child(2) {
    animation-delay: 1s;
}

/* Gentle floating animation */
@keyframes gentleFloat {

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

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

/* Colorful gradient bar */
.contact-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, #1A73E8 0%, #00B4B3 50%, #7C3AED 100%);
    border-radius: 24px 0 0 24px;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-card:hover::after {
    height: 100%;
}

/* Vibrant hover effect */
.contact-info-card:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
    box-shadow:
        0 20px 60px rgba(26, 115, 232, 0.15),
        0 0 80px rgba(0, 180, 179, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-10px) scale(1.02);
    animation: none;
}

/* Colorful Icon Wrapper with Multiple Gradients */
.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow:
        0 8px 20px rgba(26, 115, 232, 0.4),
        0 0 40px rgba(0, 180, 179, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Email icon - Blue gradient */
.contact-info-card:nth-child(1) .contact-icon-wrapper {
    background: linear-gradient(135deg, #1A73E8 0%, #4F46E5 100%);
}

/* Phone icon - Teal gradient */
.contact-info-card:nth-child(2) .contact-icon-wrapper {
    background: linear-gradient(135deg, #00B4B3 0%, #10B981 100%);
}

/* Animated pulse ring */
.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 3px solid currentColor;
    transform: translate(-50%, -50%);
    animation: pulseRing 2.5s ease-out infinite;
    opacity: 0;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.2) rotate(10deg);
    box-shadow:
        0 12px 32px rgba(26, 115, 232, 0.5),
        0 0 60px rgba(0, 180, 179, 0.3);
}

.contact-info-card:hover .contact-icon-wrapper svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Colorful Labels */
.contact-label {
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-label {
    letter-spacing: 2px;
    transform: translateX(4px);
}

/* Contact Values with Gradient on Hover */
.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: #0B2D3A;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A73E8 0%, #00B4B3 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.contact-value:hover::after {
    width: 100%;
}

.contact-value:hover {
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(8px) scale(1.05);
}

/* Modern Colorful Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 2px solid #E2E8F0;
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Animated colorful gradient background */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(26, 115, 232, 0.05) 40%,
            rgba(0, 180, 179, 0.05) 50%,
            rgba(124, 58, 237, 0.05) 60%,
            transparent 70%);
    animation: waveMove 10s linear infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-form-wrapper:hover {
    box-shadow:
        0 24px 60px rgba(26, 115, 232, 0.15),
        0 0 80px rgba(0, 180, 179, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    border-color: #1A73E8;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

/* Form heading with gradient */
.contact-form-wrapper h3 {
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Group */
.form-group {
    position: relative;
}

/* Modern Colorful Inputs */
.contact-input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    font-size: 15px;
    color: #0B2D3A;
    background: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.contact-input:focus {
    border-color: transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
        linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%) border-box;
    border: 2px solid transparent;
    box-shadow:
        0 0 0 6px rgba(26, 115, 232, 0.1),
        0 12px 28px rgba(26, 115, 232, 0.15),
        0 0 60px rgba(0, 180, 179, 0.1);
    transform: translateY(-4px) scale(1.01);
}

/* Colorful placeholder */
.contact-input::placeholder {
    color: #94A3B8;
    transition: all 0.3s ease;
}

.contact-input:focus::placeholder {
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(6px);
}

/* Textarea specific */
textarea.contact-input {
    resize: vertical;
    min-height: 150px;
    line-height: 1.7;
}

/* Enhanced Submit Button */
.contact-form-wrapper .btn-jewel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    box-shadow:
        0 8px 24px rgba(26, 115, 232, 0.4),
        0 0 40px rgba(0, 180, 179, 0.2);
}

.contact-form-wrapper .btn-jewel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form-wrapper .btn-jewel:hover::before {
    width: 400px;
    height: 400px;
}

.contact-form-wrapper .btn-jewel:hover {
    box-shadow:
        0 12px 40px rgba(26, 115, 232, 0.5),
        0 0 60px rgba(0, 180, 179, 0.3);
    transform: translateY(-3px) scale(1.02);
}

/* Softer floating background */
@keyframes animate-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translate(25px, -25px) scale(1.08);
        opacity: 0.6;
    }

    66% {
        transform: translate(-18px, 18px) scale(0.92);
        opacity: 0.55;
    }
}

.animate-float {
    animation: animate-float 28s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .contact-form-wrapper {
        padding: 36px;
    }

    .contact-info-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 28px;
    }

    .contact-input {
        padding: 18px 20px;
        font-size: 14px;
    }

    .contact-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .contact-value {
        font-size: 17px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer links with smooth hover */
.footer-link {
    color: #B0C4D0;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1A73E8 0%, #00B4B3 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

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

/* Social icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0C4D0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

.social-icon svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Footer logo fix - Branded Platinum Silver Effect */
.footer-logo {
    mix-blend-mode: normal !important;
    /* This creates a high-end silver version with a slight blue tint */
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(180deg) brightness(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)) !important;
    opacity: 1 !important;
    transition: all 0.4s ease;
    animation: none !important;
    position: relative;
    z-index: 5;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Info Cards with Softer Animations */
.contact-info-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 28px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: gentleFloat 6s ease-in-out infinite;
}

.contact-info-card:nth-child(2) {
    animation-delay: 1s;
}

/* Gentle floating animation */
@keyframes gentleFloat {

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

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

/* Gradient bar effect */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #1A73E8 0%, #00B4B3 100%);
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-card:hover::before {
    height: 100%;
}

/* Soft glow on hover */
.contact-info-card:hover {
    border-color: #1A73E8;
    box-shadow:
        0 20px 50px rgba(26, 115, 232, 0.12),
        0 0 60px rgba(26, 115, 232, 0.08);
    transform: translateY(-8px) scale(1.02);
    animation: none;
}

/* Contact Icon Wrapper with Pulse */
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A73E8 0%, #00B4B3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Pulse ring animation */
.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid #1A73E8;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.5);
}

.contact-info-card:hover .contact-icon-wrapper svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Contact Labels with Slide Animation */
.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-label {
    color: #1A73E8;
    transform: translateX(4px);
}

/* Contact Values with Smooth Transition */
.contact-value {
    font-size: 19px;
    font-weight: 700;
    color: #0B2D3A;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.contact-value:hover {
    color: #1A73E8;
    transform: translateX(6px) scale(1.05);
    text-shadow: 0 2px 8px rgba(26, 115, 232, 0.2);
}

/* Contact Form Wrapper with Wave Effect */
.contact-form-wrapper {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(26, 115, 232, 0.03) 50%,
            transparent 70%);
    animation: waveMove 8s linear infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-form-wrapper:hover {
    box-shadow:
        0 20px 50px rgba(26, 115, 232, 0.12),
        0 0 60px rgba(26, 115, 232, 0.06);
    transform: translateY(-6px);
    border-color: #1A73E8;
}

/* Form Group with Label Animation */
.form-group {
    position: relative;
}

/* Contact Input with Smooth Focus */
.contact-input {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-size: 15px;
    color: #0B2D3A;
    background: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
    position: relative;
    z-index: 1;
}

.contact-input:focus {
    border-color: #1A73E8;
    box-shadow:
        0 0 0 5px rgba(26, 115, 232, 0.08),
        0 8px 20px rgba(26, 115, 232, 0.12);
    transform: translateY(-3px) scale(1.01);
    background: #FAFBFF;
}

/* Animated placeholder */
.contact-input::placeholder {
    color: #94A3B8;
    transition: all 0.3s ease;
}

.contact-input:focus::placeholder {
    color: #CBD5E1;
    transform: translateX(4px);
}

/* Textarea specific styles */
textarea.contact-input {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Submit button enhancement */
.contact-form-wrapper .btn-jewel {
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper .btn-jewel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form-wrapper .btn-jewel:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating animation for background elements - Softer */
@keyframes animate-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.5;
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
        opacity: 0.45;
    }
}

.animate-float {
    animation: animate-float 25s ease-in-out infinite;
}

/* Success state animation (for future use) */
@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

/* Responsive adjustments for contact section */
@media (max-width: 1023px) {
    .contact-form-wrapper {
        padding: 32px;
    }

    .contact-info-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-input {
        padding: 16px 18px;
        font-size: 14px;
    }

    .contact-icon-wrapper {
        width: 52px;
        height: 52px;
    }

    .contact-value {
        font-size: 16px;
    }
}

/* ========================================
   PREMIUM HERO SECTION STYLES
   ======================================== */

.hero-premium {
    background: transparent;
    position: relative;
    z-index: 10;
}

/* Redundant block removed to prevent conflicts */

/* Tech Grid Overlay - Global Visibility */
.tech-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(11, 45, 58, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 45, 58, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.5;
}

/* Floating Tech Particles - Fixed */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--brand-primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 12s infinite ease-in-out;
}

.p1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.p2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.p3 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

.p4 {
    width: 5px;
    height: 5px;
    top: 10%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.2;
    }

    50% {
        transform: translate(20px, -40px);
        opacity: 0.6;
    }
}

/* Text Effects - Ultra Vivid Holographic */
.shine-text-light {
    position: relative;
    display: inline-block;
    font-weight: 900;
    color: var(--brand-midnight);
    background: linear-gradient(90deg,
            var(--brand-midnight) 0%,
            var(--brand-primary) 20%,
            var(--brand-accent) 50%,
            var(--brand-primary) 80%,
            var(--brand-midnight) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineSweep 5s linear infinite;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.1));
}

.shine-text-dark {
    position: relative;
    display: inline-block;
    color: var(--brand-midnight);
    background: linear-gradient(90deg, var(--brand-midnight) 0%, var(--brand-primary) 50%, var(--brand-midnight) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineSweep 4s linear infinite;
}

@keyframes shineSweep {
    to {
        background-position: 200% center;
    }
}

.text-gradient-vibrant-light {
    background: linear-gradient(135deg, white 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.text-gradient-vibrant-dark {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Helper for better readability on complex backgrounds */
.text-glow-light {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Hero Visual Shadow Fix */
.hero-visual img {
    border-radius: 30px;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

/* Global Gradient Accent */
.bg-gradient-premium {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
}

/* Section Dividers */
.section-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 5;
    overflow: hidden;
    /* Added to clip the slightly wider SVG */
}

.section-divider svg {
    position: relative;
    display: block;
    width: 100%;
    transform: scaleX(1.02);
    /* Safer overflow fit than calc(100% + 1.3px) */
    height: 40px;
}

/* Premium Button Shine Animation */
.btn-jewel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-jewel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 60%,
            transparent 100%);
    transition: all 0.6s ease;
    z-index: -1;
    transform: rotate(35deg);
}

.btn-jewel:hover::after {
    left: 100%;
}

/* Glassmorphism Utility Classes */
.glass-panel {
    background: var(--glass-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-pro);
}

.glass-vibrant {
    background: var(--glass-vibrant);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* --- Course Detail Enhanced Animations --- */
@keyframes float {

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

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

#courseVideo {
    accent-color: #FF0000;
    /* YouTube Red Accent */
}

video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7)) !important;
}

.shine-text-dark {
    background: linear-gradient(120deg, #001D3D 30%, #1A73E8 50%, #001D3D 70%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 8s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.syllabus-item:hover h4 {
    color: #1A73E8 !important;
    transform: translateX(8px);
}

.syllabus-item {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-jewel:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.3);
}

/* --- SUPERB UI & ANIMATIONS --- */

/* 1. Dynamic Mesh 2.0 (Organic Floating Background) */
.global-mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Changed from 100vh for stability */
    z-index: -1;
    overflow: hidden;
    background: #FFFFFF;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    animation: blobFloat 20s infinite alternate;
    will-change: transform;
    transform: translateZ(0);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

/* 2. Staggered Text Reveal */
.reveal-text {
    display: inline-block;
    overflow: hidden;
}

.reveal-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px) rotate(2deg);
    /* Reduced movement */
    animation: charReveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Custom AOS Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Enhanced Glassmorphism (Frosty Premium) */
.glass-panel-premium {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -4px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

/* 4. Magnetic Button Micro-interaction */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-magnetic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
    pointer-events: none;
}

.btn-magnetic:hover::after {
    transform: scale(1);
    opacity: 1;
    transition: 0s;
}

/* 5. Typography Polish */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

.text-gradient-superb {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- FINAL AGGRESSIVE MOBILE ZOOM FIX --- */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Clip any wayward background elements */
    .global-mesh-bg,
    #courses::after,
    #courses::before,
    .section-divider,
    .hero-premium {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Force blobs to be stable on mobile but visible */
    .blob-1,
    .blob-2,
    .blob-3 {
        opacity: 0.05 !important;
        animation-name: none !important;
        /* Stop movement entirely on mobile for max stability */
    }

    /* Disable some heavy effects on mobile that cause scroll lag */
    .section-divider svg {
        transform: translateZ(0);
    }

    /* Performance Purge for Mobile */
    *,
    *::before,
    *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .glass-panel,
    .glass-vibrant,
    .glass-card,
    .backdrop-blur-sm,
    .glass-panel-premium {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: none !important;
    }

    /* Isolate repaint cycles */
    section {
        contain: paint;
    }

    /* Simplify transitions to avoid frame drops */
    .group,
    .group-hover,
    [data-aos],
    .transition-all {
        transition: transform 0.2s ease, opacity 0.2s ease !important;
    }
}
/* Premium Plans Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

#plans-modal {
    animation: modalFadeIn 0.3s ease-out;
}

#plans-modal > div {
    animation: modalSlideUp 0.4s ease-out;
}

#plans-modal .pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#plans-modal .pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#plans-modal .pricing-card:nth-child(1) {
    animation: modalSlideUp 0.5s ease-out 0.1s both;
}

#plans-modal .pricing-card:nth-child(2) {
    animation: modalSlideUp 0.5s ease-out 0.2s both;
}

#plans-modal .pricing-card:nth-child(3) {
    animation: modalSlideUp 0.5s ease-out 0.3s both;
}

#plans-modal .choose-plan-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#plans-modal .choose-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#plans-modal .choose-plan-btn:active {
    transform: translateY(0);
}

/* Gradient animation for Pro plan */
#plans-modal .pricing-card:nth-child(3) {
    background-size: 200% 200%;
    animation: modalSlideUp 0.5s ease-out 0.3s both, gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Close button animation */
#plans-modal button[onclick*='plans-modal'] {
    transition: all 0.2s ease;
}

#plans-modal button[onclick*='plans-modal']:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: #f3f4f6;
}


/* Additional spacing for navigation */
.nav-chic .nav-links {
    margin-left: 3rem;
}


/* Marquee animation class */
.animate-marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
    will-change: transform;
}


/* Mobile visibility fixes for feature cards */
@media (max-width: 768px) {
    /* Make stat badges more visible on mobile */
    .rounded-full.border.border-white\/20 {
        font-size: 11px !important;
        padding: 0.375rem 0.75rem !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        font-weight: 800 !important;
    }
    
    /* Improve heading visibility */
    .text-xl.font-black.text-white {
        font-size: 1.375rem !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    /* Make description text more readable */
    .text-sm.leading-relaxed.text-slate-300 {
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }
    
    /* Enhance Learn More link visibility */
    .text-xs.font-bold.uppercase.tracking-widest {
        font-size: 0.8125rem !important;
        font-weight: 900 !important;
    }
}

