/* Stellorix Technologies – Brand-Aligned Blue Theme */

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    /* Ensure padding doesn't increase width */
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    /* CRITICAL: Prevent horizontal scroll */
    margin: 0;
    padding: 0;
}


:root {
    /* Light Theme Colors */
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --bg-card-content: #f0f7ff;

    /* Text Colors */
    --text: #1e293b;
    --text-heading: #0a1628;
    --text-muted: #64748b;
    --text-soft: #475569;
    --text-on-accent: #ffffff;

    /* Primary Accent – Logo Blue/Cyan */
    --accent: #00BFFF;
    --accent-hover: #0099CC;
    --accent-light: #00D4FF;
    --accent-deep: #0080FF;
    --accent-darker: #0066CC;

    /* Course Card Colors – Professional Blue-Adjacent Palette */
    --color-1: #00D4FF;
    /* Bright Cyan */
    --color-2: #00BFFF;
    /* Sky Blue - Logo color */
    --color-3: #14B8A6;
    /* Teal */
    --color-4: #3B82F6;
    /* Royal Blue */
    --color-5: #6366F1;
    /* Indigo */
    --color-6: #8B5CF6;
    /* Purple-Blue */
    --color-7: #1E40AF;
    /* Navy Blue */

    /* Cloud Colors – Blue/Cyan Tones */
    --cloud-red: rgba(0, 212, 255, 0.12);
    /* Bright Cyan */
    --cloud-blue: rgba(0, 128, 255, 0.15);
    /* Royal Blue */
    --cloud-green: rgba(0, 191, 255, 0.12);
    /* Sky Blue */
    --cloud-purple: rgba(0, 102, 204, 0.12);
    /* Deep Blue */
    --cloud-orange: rgba(26, 95, 180, 0.10);
    /* Cobalt Blue */

    /* Gradients */
    --gradient-btn: linear-gradient(135deg, #00D4FF 0%, #00BFFF 30%, #0080FF 70%, #0066CC 100%);
    --gradient-btn-hover: linear-gradient(135deg, #00E5FF 0%, #00D4FF 30%, #00BFFF 70%, #0080FF 100%);
    --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);

    /* Borders & Shadows – Blue-tinted */
    --border: #e0eeff;
    --border-strong: #c7deff;
    --shadow-card: 0 4px 20px rgba(0, 128, 255, 0.08);
    /* Softened */
    --shadow-card-hover: 0 12px 48px rgba(0, 102, 204, 0.20);

    /* Layout */
    --radius-card: 24px;
    /* Increased radius */
    --radius-lg: 32px;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 12px;
}

/* Dark Theme – Premium Navy/Slate Base */
body.dark {
    /* Backgrounds */
    --bg: #020617;
    /* Rich dark navy/black */
    --bg-light: #0f172a;
    /* Slate 900 */
    --bg-section: #020617;
    --bg-card: #1e293b;
    /* Slate 800 - better separation */
    --bg-card-content: #1e293b;
    /* Consistent card bg */

    /* Text */
    --text: #cbd5e1;
    /* Slate 300 - readable body text */
    --text-heading: #f8fafc;
    /* Slate 50 - high contrast white */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --text-soft: #64748b;
    /* Slate 500 */

    /* UI Elements */
    --border: #334155;
    /* Slate 700 */
    --border-strong: #475569;
    /* Slate 600 */

    /* Glass Effect Adjustments */
    --glass-bg: rgba(30, 41, 59, 0.7);
    /* Dark semi-transparent slate */
    --glass-border: rgba(255, 255, 255, 0.1);
    /* Subtle white border */
    --glass-blur: 16px;

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 10px 40px rgba(56, 189, 248, 0.15);
    /* Sky blue glow */

    /* Cloud Colors – Adjusted for visibility on dark bg */
    --cloud-red: rgba(14, 165, 233, 0.15);
    /* Sky 500 */
    --cloud-blue: rgba(59, 130, 246, 0.15);
    /* Blue 500 */
    --cloud-green: rgba(16, 185, 129, 0.15);
    /* Emerald 500 */
    --cloud-purple: rgba(139, 92, 246, 0.15);
    /* Violet 500 */
    --cloud-orange: rgba(249, 115, 22, 0.15);
    /* Orange 500 */
}

/* Keyframes */
@keyframes cloudMove {
    0% {
        transform: translate(var(--start-x), var(--start-y));
    }

    100% {
        transform: translate(var(--end-x), var(--end-y));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

@keyframes float {

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

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

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(0, 191, 255, 0.5), 0 0 20px rgba(0, 191, 255, 0.3);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes arrow-bounce {

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

    50% {
        transform: translateX(5px);
    }
}

@keyframes waveform {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 25px;
    }
}

/* Support Cards Animations */
@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
    }
}

@keyframes floatLeft {

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

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

@keyframes floatRight {

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

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

/* ========================================
   BEAUTIFUL ANIMATIONS – Scroll & Entrance
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroFloat {

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

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

/* Scroll-reveal: elements start hidden, animate in when .visible */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.animate-on-scroll.delay-1 {
    transition-delay: 0.08s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.16s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.24s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.32s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.4s;
}

/* Hero entrance – staggered reveal on load */
.hero .left .hero-welcome {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.hero .left .hero-tagline {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hero .left .main-title {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.hero .left .cta-row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.hero .right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.hero.hero-visible .left .hero-welcome,
.hero.hero-visible .left .hero-tagline,
.hero.hero-visible .left .main-title,
.hero.hero-visible .left .cta-row,
.hero.hero-visible .right {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Subtle float on hero image */
.hero .main-img {
    animation: heroFloat 5s ease-in-out infinite;
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ========================================
   ACCESSIBILITY UTILITIES
======================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-btn);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0 0 12px 12px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-content,
    .testimonials-track {
        animation: none !important;
    }

    .hero .main-img {
        animation: none !important;
    }

    .hero .left .hero-welcome,
    .hero .left .hero-tagline,
    .hero .left .main-title,
    .hero .left .cta-row,
    .hero .right {
        opacity: 1 !important;
        transform: none !important;
    }

    .liked-card .rating {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ========================================
   ANIMATED CLOUDS BACKGROUND
======================================== */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    /* Reduced from 80px */
    animation: cloudMove linear infinite;
    will-change: transform;
    /* Performance optimization */
}

/* Legacy cloud colors (for compatibility) */
.cloud.red {
    background: var(--cloud-red);
}

.cloud.blue {
    background: var(--cloud-blue);
}

.cloud.green {
    background: var(--cloud-green);
}

.cloud.purple {
    background: var(--cloud-purple);
}

.cloud.orange {
    background: var(--cloud-orange);
}

/* Brand-aligned blue cloud colors */
.cloud.cyan-bright {
    background: rgba(0, 212, 255, 0.15);
}

.cloud.blue-royal {
    background: rgba(0, 128, 255, 0.18);
}

.cloud.cyan-sky {
    background: rgba(0, 191, 255, 0.12);
}

.cloud.blue-deep {
    background: rgba(0, 102, 204, 0.15);
}

.cloud.blue-cobalt {
    background: rgba(26, 95, 180, 0.12);
}

body.dark .cloud.cyan-bright {
    background: rgba(0, 212, 255, 0.08);
}

body.dark .cloud.blue-royal {
    background: rgba(0, 128, 255, 0.10);
}

body.dark .cloud.cyan-sky {
    background: rgba(0, 191, 255, 0.06);
}

body.dark .cloud.blue-deep {
    background: rgba(0, 102, 204, 0.08);
}

body.dark .cloud.blue-cobalt {
    background: rgba(26, 95, 180, 0.06);
}

/* ========================================
   NAVBAR
======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    /* Increased shadow */
    /* Subtle border for transparency */
    transition: background 0.3s ease;
}

/* Optional: Add slight glass effect if user wants, but start with transparent as requested */
/* We need to ensure the border is visible if background is transparent */

body.dark .site-header .nav-links a {
    color: #fff !important;
}

body.dark .site-header .nav-links a:hover {
    color: #fff !important;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-full-img,
.nav-logo {
    height: 50px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-full-img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.5rem;
}

.site-header .nav-links a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000 !important;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.nav-links a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.site-header .nav-links a:hover {
    color: #000 !important;
}

.nav-links a:not(.btn-nav-cta):hover::after {
    width: 100%;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--gradient-btn);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle Button – sun/moon icon only, no circle */
.theme-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    color: #0a1628 !important;
    transition: color 0.25s ease, transform 0.2s ease;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.theme-toggle i {
    color: inherit !important;
    display: inline-block !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
    width: 1em;
    height: 1em;
}

.theme-toggle i.fa-moon {
    color: #0a1628 !important;
    filter: brightness(0.4);
}

body.dark .theme-toggle i.fa-moon {
    color: #1a1a1a !important;
}

.theme-icon-moon {
    display: inline-block !important;
    font-size: 1.6rem;
    line-height: 1;
}

.theme-icon-sun {
    display: none !important;
    font-size: 1.6rem;
    line-height: 1;
}

body.dark .theme-toggle .theme-icon-moon {
    display: none !important;
}

body.dark .theme-toggle .theme-icon-sun {
    display: inline-block !important;
}

.theme-toggle i {
    position: relative;
    z-index: 1;
}

.theme-toggle:hover {
    color: #00BFFF !important;
    transform: scale(1.15);
}

body.dark .theme-toggle {
    color: #ffffff !important;
}

body.dark .theme-toggle:hover {
    color: #00D4FF !important;
}

/* Ensure header-actions container is visible */
.header-actions {
    display: flex !important;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Ensure above menu */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        /* Show hamburger on mobile/tablet */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        margin: 0;
        transform: none;
        /* Override desktop transform */
        left: auto;
        /* Override desktop left */
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1.5rem 0;
        color: var(--text-heading) !important;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

.hero .container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 60px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centered vertically */
    min-height: 100vh;
    box-sizing: border-box;
}

.hero .left {
    flex: 1 1 55%;
    min-width: 400px;
    padding-top: 60px;
}

.hero .hero-welcome {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.hero .hero-tagline {
    letter-spacing: 0.2em;
    color: var(--text-soft);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.hero .main-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.1;
    margin: 0 0 1.2rem 0;
}

body.dark .hero .main-title {
    color: #b0b8c0;
}

.hero .cta-row {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 20px 48px;
    /* Larger click area */
    background: var(--gradient-btn);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 100px;
    /* Fully rounded */
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    /* Bouncy transition */
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

.enroll-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.5);
    animation: none;
}

.enroll-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.enroll-btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-left: 15px;
    background: #0f172a;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

.enroll-btn:hover .arrow {
    animation: none;
    transform: translateX(8px);
}

.hero .enroll-info {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero .enroll-info .students {
    font-weight: 700;
    color: var(--text-heading);
}

/* Hero Right Side */
.hero .right {
    position: relative;
    flex: 1 1 40%;
    min-width: 350px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.hero .main-img {
    border-radius: 32px;
    width: 380px;
    height: auto;
    object-fit: contain;
    object-position: center top;
    z-index: 1;
}

.hero .google-cert {
    position: absolute;
    top: 50px;
    right: 40px;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    padding: 12px 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 2;
    color: var(--text-heading);
}

.hero .google-cert img {
    height: 33px;
    margin-right: 10px;
}

.hero .students-card {
    position: absolute;
    left: 20px;
    bottom: 140px;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    padding: 11px 25px;
    font-size: 1rem;
    gap: 11px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero .students-card .profile {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -9px;
    border: 2px solid var(--bg-card);
}

.hero .students-card .profile-stack {
    display: flex;
    align-items: center;
}

.hero .students-card .profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: #fff;
    margin-right: -8px;
    border: 2px solid var(--bg-card);
}

.hero .students-card .count {
    font-weight: 700;
    color: var(--text-heading);
    margin-left: 10px;
}

.hero .reviews-card {
    position: absolute;
    right: 22px;
    bottom: 38px;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    font-size: 1rem;
    min-width: 210px;
    padding: 14px 25px;
    gap: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero .reviews-card .stars {
    color: #fc0;
    margin-right: 4px;
    font-size: 1.1em;
}

.hero .reviews-card img {
    height: 24px;
    margin-right: 7px;
}

/* ========================================
   POPUP FORM
======================================== */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-form .form-content {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.popup-form .form-content h2[style*="color:black"] {
    color: black !important;
}

body.dark .popup-form .form-content h2[style*="color:black"] {
    color: black !important;
}

.popup-form .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-form .close-btn:hover {
    color: var(--text-heading);
}

.popup-form h2 {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    color: var(--text-heading);
    text-align: center;
}

.popup-form .form-content h2 {
    margin-bottom: 20px;
}

.popup-form form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    outline: none;
}

.popup-form input:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: #000;
}

.popup-form button[type="submit"],
.popup-form .submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
    margin-top: 10px;
}

.popup-form button[type="submit"]:hover,
.popup-form .submit-btn:hover {
    background: #333;
}

.popup-form .thank-you {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.popup-form .thank-you i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.popup-form .thank-you h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin: 0 0 0.5rem;
}

.popup-form .thank-you h3[style*="color: black"] {
    color: black !important;
}

.popup-form .thank-you p {
    color: var(--text-muted);
    margin: 0;
}

.popup-form .thank-you p[style*="color: black"] {
    color: black !important;
}

.popup-form #message {
    display: none;
    color: green;
    margin-top: 10px;
    text-align: center;
}

/* Form Groups */
.popup-form .form-group {
    margin-bottom: 0;
}

/* Error States */
.popup-form .error-message {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

.popup-form input.input-error,
.popup-form select.input-error,
.popup-form textarea.input-error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.popup-form input.input-error:focus,
.popup-form select.input-error:focus,
.popup-form textarea.input-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Error Message Box */
.popup-form .form-error {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.popup-form .form-error i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.popup-form .form-error p {
    color: #ef4444;
    margin: 0;
    font-size: 0.9rem;
}

/* Loading Button State */
.popup-form .submit-btn {
    position: relative;
    overflow: hidden;
}

.popup-form .submit-btn .btn-text {
    transition: opacity 0.2s ease;
}

.popup-form .submit-btn .btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.popup-form .submit-btn.loading .btn-loader {
    display: block;
}

.popup-form .submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Select Dropdown Styling */
.popup-form select {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.popup-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.popup-form select option {
    padding: 10px;
}

/* ========================================
   COMPANY SCROLL STRIP
======================================== */
.scroll-container {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.scroll-content {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
    gap: 4rem;
    align-items: center;
}

.scroll-content:hover {
    animation-play-state: paused;
}

.scroll-content img {
    height: 120px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.9;
    margin: 0 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-content img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ========================================
   SECTIONS COMMON
======================================== */
.section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   COURSE SECTION
======================================== */
.course {
    padding: 80px;
    position: relative;
    z-index: 1;
}

.course .section-label,
.course h3 {
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0 0 1%;
}

.course h2,
.course h1 {
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-heading);
    margin: 0 0 1%;
    line-height: 1.2;
}

.course .section-desc,
.course>p {
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-soft);
    margin: 0 0 3%;
}

.course .filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.course .filter-buttons button,
.course .filter-buttons .btn-all,
.course button {
    padding: 8px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.course .filter-buttons button:hover,
.course .filter-buttons button.active,
.course .filter-buttons .btn-all:hover,
.course .filter-buttons .btn-all.active,
.course button:hover,
.course button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    text-decoration: none;
}

.course button i {
    margin-right: 0.5rem;
}

.coursecount {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Course Cards Grid */
.course_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.course_card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
    /* Force card to fill grid cell height */
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.course_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.course_card .top {
    padding: 2rem 1.5rem;
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course_card .top h2 {
    font-size: 2.3em;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.course_card .bottom {
    padding: 2rem 1.5rem;
    background: var(--bg-card-content);
    flex: 1;
}

.course_card .bottom h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

.course_card .bottom h4 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course_card .bottom .btn-course-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    background: transparent;
    border: none !important;
    /* Force no border */
    text-decoration: none;
    /* Add this since it's an anchor now */
    padding: 0;
    cursor: pointer;
    margin-top: 1rem;
}

.course_card .bottom .btn-course-view:hover {
    color: var(--accent);
}

/* ========================================
   EXTRA INFO CARDS (Liked & Offers)
======================================== */
.experts-extra-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    /* Reduced gap */
    padding: 0;
    /* Remove container padding */
    margin: 0 auto;
    max-width: 900px;
    /* Constrain width */
    position: relative;
    z-index: 1;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    /* Minimal padding */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.info-card .card-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
    /* Reduced from 1rem to 0.5rem */
}

.info-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.5rem;
    /* Reduced from 1.5rem to 0.5rem */
    line-height: 1.3;
}

/* Liked card: center rating (star + 4.5+) and add glow */
.liked-card {
    text-align: center;
}

.liked-card .card-label,
.liked-card h2 {
    text-align: center;
}

.liked-card .rating {
    font-size: 3.5rem;
    /* Increased font size for text */
    font-weight: 800;
    /* Bold text */
    color: #fbbf24;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 40px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    animation: ratingGlowBlink 1.8s ease-in-out infinite;
}

.liked-card .rating i {
    font-size: 6rem;
    /* MASSIVE star size to fill box */
    line-height: 0.8;
    display: block;
    transform: translateY(20px);
    /* Move star moving down without affecting flow/height */
}

@keyframes ratingGlowBlink {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 25px rgba(251, 191, 36, 0.9), 0 0 50px rgba(251, 191, 36, 0.6), 0 0 75px rgba(251, 191, 36, 0.35);
    }

    50% {
        opacity: 2;
        text-shadow: 0 0 12px rgba(251, 191, 36, 0.5), 0 0 25px rgba(251, 191, 36, 0.3), 0 0 40px rgba(251, 191, 36, 0.15);
    }
}

.offers-card {
    text-align: center;
}

.offers-card .offer-desc {
    color: var(--text-soft);
    margin: 0 0 1rem;
    /* Reduced from 1.5rem */
}

.offers-card .tags {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    /* Center buttons */
}

/* Gold Buttons */
.offers-card .tag,
.offers-card .discount {
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    /* Gold gradient */
    color: #000;
    /* Dark text for contrast on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    text-transform: uppercase;
}

/* Ensure discount tag overrides conflicting styles if any */
.offers-card .discount {
    font-size: 0.9rem;
    /* Reset font size to match button style */
}

/* ========================================
   FEEDBACK/TESTIMONIALS SECTION
======================================== */
.feedback-section {
    padding: 80px;
    position: relative;
    z-index: 1;
}

.feedback-section .section-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.section-header-left {
    flex: 1;
}

.section-header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.feedback-section .feedback-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.feedback-section .main-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.1;
    margin: 0 0 20px;
    line-height: 1.2;
}

.feedback-section .subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Google Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
}

.badge-content {
    text-align: right;
}

.badge-rating {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.badge-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.google-logo {
    font-size: 1.25rem;
    font-weight: 700;
}

.google-logo .google-g {
    color: #4285f4;
}

.google-logo .google-o1 {
    color: #ea4335;
}

.google-logo .google-o2 {
    color: #fbbc05;
}

.google-logo .google-g2 {
    color: #4285f4;
}

.google-logo .google-l {
    color: #34a853;
}

.google-logo .google-e {
    color: #ea4335;
}

.badge-reviews {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonials Carousel */
.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.author-avatar.avatar-1 {
    background: linear-gradient(135deg, #00D4FF 0%, #00BFFF 100%);
}

.author-avatar.avatar-2 {
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
}

.author-avatar.avatar-3 {
    background: linear-gradient(135deg, #0080FF 0%, #0066CC 100%);
}

.author-avatar.avatar-4 {
    background: linear-gradient(135deg, #0066CC 0%, #1a5fb4 100%);
}

.author-avatar.avatar-5 {
    background: linear-gradient(135deg, #1a5fb4 0%, #1c3a5e 100%);
}

.author-name {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* ========================================
   SUPPORT BANNER
======================================== */
.support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: 30px;
    margin: 0 80px 60px;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.support-text {
    flex: 1;
}

.support-card-para {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.support-card-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.support-card-para-grey {
    color: var(--text-soft);
    margin: 0;
    max-width: 400px;
}

.support-images {
    position: relative;
    width: 350px;
    height: 350px;
}

.support-images .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.support-images .circle.green {
    width: 200px;
    height: 200px;
    background: var(--cloud-green);
    top: 50%;
    left: 0;
}

.support-images .circle.blue {
    width: 180px;
    height: 180px;
    background: var(--cloud-blue);
    top: 20%;
    right: 20%;
}

.support-images .circle.yellow {
    width: 150px;
    height: 150px;
    background: var(--cloud-orange);
    bottom: 10%;
    right: 10%;
}

.support-images .man {
    position: absolute;
    bottom: 0;
    right: 20px;
    height: 300px;
    object-fit: contain;
    z-index: 1;
}

/* ========================================
   CONTACT CARDS SECTION
======================================== */
.section_cards_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 80px 60px;
    position: relative;
    z-index: 1;
}

.section_cards_container .card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.section_cards_container .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.section_cards_container .card h5,
.section_cards_container .card .card-label,
.section_cards_container .card h3.card-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.section_cards_container .card h2,
.section_cards_container .card .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1.5rem;
    line-height: 1.3;
    flex: 1;
}

.section_cards_container .card .btn-card-action {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section_cards_container .card .btn-card-action:hover {
    background: var(--text-heading);
    border-color: var(--text-heading);
    color: #fff;
}

/* Call Us Card Content Layout */
.section_cards_container .card .call-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.section_cards_container .card .call-us-content button {
    flex: 1;
    width: auto;
}

/* WhatsApp Link in Call Us Card - Right Side */
.section_cards_container .card .whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.section_cards_container .card .whatsapp-link svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.section_cards_container .card .whatsapp-link:hover {
    transform: scale(1.15);
}

.section_cards_container .card .whatsapp-link:hover svg {
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.4));
}

/* Request Button styling */
.requestBtn {
    margin-bottom: 1rem;
}

.requestBtn button {
    background: var(--gradient-btn) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    width: auto !important;
}

/* Waveform Animation */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.waveform .bar {
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
    animation: waveform 0.8s ease-in-out infinite;
}

.waveform .bar:nth-child(1) {
    animation-delay: 0s;
}

.waveform .bar:nth-child(2) {
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(3) {
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(4) {
    animation-delay: 0.3s;
}

.waveform .bar:nth-child(5) {
    animation-delay: 0.4s;
}

.waveform .bar:nth-child(6) {
    animation-delay: 0.5s;
}

.waveform .bar:nth-child(7) {
    animation-delay: 0.4s;
}

.waveform .bar:nth-child(8) {
    animation-delay: 0.3s;
}

.waveform .bar:nth-child(9) {
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(10) {
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(11) {
    animation-delay: 0s;
}

.waveform .bar:nth-child(12) {
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(13) {
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(14) {
    animation-delay: 0.3s;
}

/* Dialogue Box */
.dialogueBox_container {
    margin-bottom: 1.5rem;
}

.dialogue_box,
.dialogue_box2 {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.dialogue_box {
    background: var(--bg-card-content);
    color: var(--text-soft);
}

.dialogue_box2 {
    background: var(--accent);
    color: #fff;
    margin-left: 1rem;
}

/* ========================================
   FOOTER
======================================== */
.above-footer {
    background: var(--bg-card);
    border-radius: 20px 20px 0 0;
    padding: 3rem;
    text-align: center;
    margin: 0 80px;
}

.af-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.af-logo {
    height: 60px;
}

.above-footer h2,
.above-footer .af-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-heading);
    margin: 0;
}

.footer-column address {
    font-style: normal;
}

.main-footer {
    background: var(--bg-card);
    padding: 3rem 80px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0 0 1.5rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin: 0.5rem 0;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-column p i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-column p a {
    color: var(--text-soft);
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: var(--accent);
}

/* Social Footer */
.below-footer {
    background: var(--bg-card);
    padding: 2rem 80px;
    border-top: 1px solid var(--border);
}

.social-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-left p {
    margin: 0;
    color: var(--text-soft);
}

.social-right {
    display: flex;
    gap: 2rem;
}

.social-right a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-right a:hover {
    color: var(--accent);
}

.social-right a i {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom2 {
    background: var(--bg-card);
    padding: 1.5rem 80px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom2 a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom2 a:hover {
    color: var(--accent);
}

.footer-bottom2 span {
    color: var(--border-strong);
}

/* Footer Full Width Logo */
.footer-logo {
    background: var(--bg-card);
    padding: 3rem 80px;
    text-align: center;
}

.footer-img {
    max-width: 100%;
    height: auto;
    opacity: 0.1;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    z-index: 99;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.45);
}

/* ========================================
   INNER PAGES
======================================== */
.page-main {
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

.page-hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-hero.programs-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    margin-top: 5%;
}

.page-hero .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Center View Program link on course cards */
.course-card a[href*="course-detail"] {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.page-hero .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

/* Section styling for inner pages */
.section-programs,
.section-about,
.section-contact {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-soft);
    margin: 0 0 2rem;
}

/* Course filter buttons */
.course-filter-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.course-filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.course-filter-btn:hover,
.course-filter-btn.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Course grid for programs page */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.course-card-header {
    padding: 2rem 1.5rem;
    min-height: 160px;
    display: flex;
    align-items: flex-end;
}

.course-card:nth-child(7n+1) .course-card-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.course-card:nth-child(7n+2) .course-card-header {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.course-card:nth-child(7n+3) .course-card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.course-card:nth-child(7n+4) .course-card-header {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.course-card:nth-child(7n+5) .course-card-header {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.course-card:nth-child(7n+6) .course-card-header {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.course-card:nth-child(7n+7) .course-card-header {
    background: linear-gradient(135deg, #0c4a6e 0%, #0a1628 100%);
}

.course-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.course-name-sub {
    display: block;
    font-weight: 800;
}

.course-card-content {
    padding: 2rem 1.5rem;
    background: var(--bg-card-content);
}

.course-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

.course-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1.25rem;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-heading);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-block {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.contact-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1rem;
}

.contact-block p,
.contact-block a {
    color: var(--text-soft);
}

.contact-block a:hover {
    color: var(--accent);
}

/* Enroll form */
.enroll-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.enroll-form input,
.enroll-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
}

.enroll-form input:focus,
.enroll-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--gradient-btn);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

/* About page */
.about-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-soft);
    line-height: 1.8;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-strong);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-heading);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .hero .container {
        padding: 40px;
    }

    .course,
    .feedback-section {
        padding: 60px 40px;
    }

    .experts-extra-cards,
    .section_cards_container {
        padding: 0 40px 40px;
    }

    .support-card {
        margin: 0 40px 40px;
        padding: 2rem 3rem;
    }

    .main-footer,
    .below-footer,
    .footer-bottom2,
    .footer-logo {
        padding-left: 40px;
        padding-right: 40px;
    }

    .above-footer {
        margin: 0 40px;
    }
}

@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .section_cards_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .hero .left,
    .hero .right {
        min-width: auto;
        width: 100%;
        padding: 0;
    }

    .hero .main-title {
        font-size: 3rem;
    }

    .hero .right {
        min-height: 500px;
    }

    .hero .main-img {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }

    .experts-extra-cards {
        grid-template-columns: 1fr;
    }

    .support-card {
        flex-direction: column;
        text-align: center;
    }

    .support-card-para-grey {
        max-width: none;
    }

    .support-images {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .feedback-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:not(.btn-nav-cta)::after {
        display: none;
    }

    .btn-nav-cta {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .hero .hero-welcome {
        font-size: 1.75rem;
    }

    .hero .main-title {
        font-size: 2.5rem;
    }

    .hero .google-cert,
    .hero .reviews-card,
    .hero .students-card {
        position: static;
        margin: 10px 0;
        justify-content: center;
    }

    .course,
    .feedback-section {
        padding: 40px 20px;
    }

    .experts-extra-cards,
    .section_cards_container {
        padding: 0 20px 30px;
    }

    .section_cards_container {
        grid-template-columns: 1fr;
    }

    .support-card {
        margin: 0 20px 30px;
        padding: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column p {
        justify-content: center;
    }

    .main-footer,
    .below-footer,
    .footer-bottom2,
    .footer-logo {
        padding-left: 20px;
        padding-right: 20px;
    }

    .above-footer {
        margin: 0 20px;
    }

    .social-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom2 {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-bottom2 span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero .hero-welcome {
        font-size: 1.5rem;
    }

    .hero .main-title {
        font-size: 2rem;
    }

    .hero .enroll-btn {
        width: 100%;
        justify-content: center;
    }

    .course h1,
    .feedback-section .main-title,
    .support-card-heading {
        font-size: 1.75rem;
    }

    .course_cards {
        grid-template-columns: 1fr;
    }

    .info-card h2,
    .section_cards_container .card h2 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        width: 300px;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   COURSE DETAIL (VIEW PROGRAM) PAGE
   FlexCoders-style layout
======================================== */
.program_container {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.program_container .hero-card {
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
    margin-bottom: 30px;
}

.program_container .hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.program_container .category {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.program_container .main-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 62px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
}

.program_container .subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.5rem, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
}

.program_container .trained-by {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
}

.program_container .company-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    position: relative;
}

.program_container .company-logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.program_container .certificate-badge {
    position: absolute;
    top: 15px;
    right: 50px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #0a1628;
}

body.dark .program_container .certificate-badge {
    background: var(--bg-card);
    color: var(--text-heading);
}

.program_container .certificate-badge img {
    display: inline-block;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.program_container .stipend-badge {
    position: absolute;
    bottom: 40px;
    right: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.program_container .program-info {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.program_container .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.program_container .info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.program_container .icon-blue {
    background: #e3f2fd;
    color: #2962ff;
}

.program_container .icon-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.program_container .icon-yellow {
    background: #fff8e1;
    color: #f9a825;
}

.program_container .info-content h3 {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.program_container .info-content p {
    font-size: 20px;
    color: var(--text-heading);
    font-weight: 600;
}

.program_container .divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

.program_container .register-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    text-decoration: none;
}

.program_container .register-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
    color: #fff;
}

.program_container .course-details-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.program_container .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-heading);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.program_container .section-title {
    font-size: clamp(2rem, 4vw, 52px);
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 50px;
}

.program_container .details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.program_container .detail-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.program_container .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program_container .detail-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.program_container .detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

.program_container .detail-icon {
    position: absolute;
    right: 35px;
    bottom: 35px;
    font-size: 70px;
    opacity: 0.15;
}

.program_container .highlights-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.program_container .highlights-title {
    font-size: clamp(2rem, 4vw, 48px);
    margin-bottom: 50px;
    color: var(--text-heading);
    font-weight: 700;
}

.program_container .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.program_container .highlight-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    min-height: 140px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program_container .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program_container .highlight-card .card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program_container .highlight-card .card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1024px) {
    .program_container .program-info {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .program_container .divider {
        display: none;
    }

    .program_container .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program_container .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program_container {
        padding: 0 20px;
        margin: 20px auto;
    }

    .program_container .hero-card {
        padding: 40px 30px;
    }

    .program_container .certificate-badge {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 20px;
    }

    .program_container .stipend-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .program_container .program-info {
        padding: 30px 25px;
    }

    .program_container .details-grid {
        grid-template-columns: 1fr;
    }

    .program_container .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Curriculum section on course detail */
.curriculum_container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.curriculum_container .main-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.curriculum_container .curriculum-section {
    margin-bottom: 80px;
}

.curriculum_container .small-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.curriculum_container .main-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-heading);
}

.curriculum_container .curriculum-item {
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.curriculum_container .curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.curriculum_container .curriculum-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.curriculum_container .curriculum-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-heading);
    padding-top: 20px;
    padding-bottom: 8px;
}

.curriculum_container .toggle-btn {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.curriculum_container .curriculum-content {
    display: none;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: 15px;
    padding-bottom: 10px;
}

.curriculum_container .curriculum-item.active .curriculum-content {
    display: block;
}

.curriculum_container .curriculum-item.active .toggle-btn {
    transform: rotate(45deg);
}

.curriculum_container .middle {
    width: 100%;
    height: 2px;
    background: var(--border);
    margin: 60px 0;
}

.curriculum_container .register-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.curriculum_container .register-left {
    flex: 1;
    min-width: 280px;
}

.curriculum_container .register-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.curriculum_container .register-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-heading);
}

.curriculum_container .register-right {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.curriculum_container .register-right .card {
    background: var(--accent);
    color: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 350px;
    margin: 0 auto;
}

.curriculum_container .register-right .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-top: 0;
}

.curriculum_container #registerForm input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
    background: var(--bg);
    color: var(--text);
}

.curriculum_container #registerForm input:focus {
    outline: none;
    border-color: var(--accent);
}

.curriculum_container #registerForm .submit-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
}

.curriculum_container #registerForm .submit-btn:hover {
    background: var(--accent-hover);
}

.curriculum_container .form-message {
    margin-top: 10px;
    font-size: 15px;
}

.curriculum_container .form-message.success {
    color: #0f9d58;
}

.curriculum_container .form-message.error {
    color: #d93025;
}

@media (max-width: 900px) {
    .curriculum_container .register-section {
        flex-direction: column;
        text-align: center;
    }

    .curriculum_container .register-left {
        order: 1;
    }

    .curriculum_container .register-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .curriculum_container .main-card {
        padding: 40px 25px;
    }

    .curriculum_container .main-heading {
        font-size: 32px;
    }
}

/* ========================================
   ABOUT PAGE (FlexCoders-style)
======================================== */
.about-page .section1 {
    margin-top: 10%;
    min-height: 40vh;
    padding: 2rem 1rem;
}

.about-page .section1 h4 {
    letter-spacing: 2px;
    text-align: center;
    font-weight: 900;
    font-size: 1em;
    margin-bottom: 3%;
    color: var(--text-muted);
}

.about-page .section1 h1 {
    font-size: clamp(2rem, 4vw, 4em);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--text-heading);
    line-height: 1.3;
}

body.dark .about-page .section1 h1 {
    color: var(--text-heading);
}

.about-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--bg-card);
    padding: 25px 40px;
    /* Reduced vertical padding */
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
    transition: background 0.3s, color 0.3s;
}

body.dark .about-card {
    background: var(--bg-card);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
}

.about-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    min-width: 280px;
    padding-right: 20px;
}

.about-right {
    flex: 1;
    min-width: 280px;
}

.about-page .small-heading {
    color: var(--text-muted);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-page .main-heading {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.3;
    color: var(--text-heading);
}

body.dark .about-page .main-heading {
    color: var(--text-heading);
}

.about-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-soft);
}

body.dark .about-right p {
    color: var(--text-soft);
}

.about-page .divider {
    border: none;
    border-top: 1px dashed var(--border);
    margin: 20px 0;
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-page .social-text h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-heading);
}

.about-page .social-text span {
    color: var(--accent);
    font-size: 22px;
}

.about-page .social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid var(--text-heading);
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    color: var(--text-heading);
    transition: 0.3s;
    background: transparent;
}

.about-page .btn:hover {
    background: var(--text-heading);
    color: var(--text-on-accent);
}

body.dark .about-page .btn {
    border-color: var(--text-heading);
    color: var(--text-heading);
}

body.dark .about-page .btn:hover {
    background: var(--text-heading);
    color: var(--bg);
}

/* Stats section */
.stats-section {
    padding: 5% 20px;
    position: relative;
    z-index: 1;
}

.stats-container {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}

.stats-card {
    position: relative;
    width: 350px;
    max-width: 100%;
    min-height: 350px;
    padding: 20px 30px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
}

body.dark .stats-card {
    background: var(--bg-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stats-card h4 {
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.stats-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.stats-card p {
    color: var(--text-muted);
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.count-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-page .count {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent);
    text-align: center;
}

.bluebar {
    height: 3vh;
    min-height: 12px;
    background: var(--bg-card-content);
    border-radius: 10px;
    width: 80%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

body.dark .bluebar {
    background: var(--border);
}

.bluebar.leftToRight {
    top: 0;
    left: 0;
    animation: aboutSlideRight 4s linear infinite;
}

.bluebar.rightToLeft {
    bottom: 0;
    right: 0;
    animation: aboutSlideLeft 4s linear infinite;
}

@keyframes aboutSlideRight {
    0% {
        transform: translateX(-100%);
    }

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

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

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

.logo-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 100px;
    margin-top: 15px;
}

.logo-container .logos {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: aboutScroll 15s linear infinite;
}

.logo-container .logos img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    vertical-align: middle;
}

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

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

/* Features section */
.features-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.features-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    text-align: center;
    max-width: 340px;
    padding: 25px 20px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body.dark .feature-card {
    background: var(--bg-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-card-content);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card .icon-box i {
    font-size: 28px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text-heading);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* Section 6 - Work with us */
.about-section6 {
    margin: 2rem auto 3rem;
    /* Reduced bottom margin */
    width: 80%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 15px 40px;
    /* Further reduced vertical padding */
    gap: 30px;
    position: relative;
    z-index: 1;
}

body.dark .about-section6 {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.about-section6 .left {
    width: 40%;
    min-width: 280px;
    padding: 0 3%;
}

.about-section6 .left h5 {
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 10px;
    /* Reduced margin */
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
}

.about-section6 .left h1 {
    font-size: clamp(1.75rem, 3vw, 3em);
    margin-bottom: 10px;
    /* Reduced margin */
    color: var(--text-heading);
}

.about-section6 .left p {
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 16px;
}

.about-section6 .button_wrapper {
    margin-top: 1rem;
}

.about-section6 .button_wrapper .btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--text-heading);
    color: var(--text-on-accent);
    font-size: 16px;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.about-section6 .button_wrapper .btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 191, 255, 0.3);
    color: #fff;
}

body.dark .about-section6 .button_wrapper .btn {
    background: var(--text-heading);
    color: var(--bg);
}

body.dark .about-section6 .button_wrapper .btn:hover {
    background: var(--accent-light);
    color: var(--bg);
}

@media (max-width: 1024px) {
    .about-page .main-heading {
        font-size: 32px;
    }

    .about-card {
        padding: 30px;
    }

    .stats-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .about-top {
        flex-direction: column;
        gap: 20px;
    }

    .about-left,
    .about-right {
        padding-right: 0;
        min-width: 100%;
    }

    .about-page .main-heading {
        font-size: 28px;
    }

    .about-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stats-card {
        width: 100%;
        max-width: 350px;
        min-height: 320px;
    }

    .about-section6 {
        flex-direction: column;
        width: 90%;
        padding: 30px;
        text-align: center;
    }

    .about-section6 .left {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 20px;
        border-radius: 15px;
    }

    .about-page .main-heading {
        font-size: 24px;
    }

    .about-section6 {
        width: 95%;
        padding: 20px;
    }

    .about-section6 .left h1 {
        font-size: 1.8em;
    }
}

/* ========================================
   CAREER PAGE (FlexCoders-style)
======================================== */
.career-container {
    position: relative;
    z-index: 1;
}

.career-container .hero {
    margin-top: 5%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.career-container .hero-content {
    width: 100%;
    max-width: 900px;
}

.career-container .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4em);
    letter-spacing: 2px;
    margin: 0 auto 0.5rem;
    color: var(--text-heading);
    text-align: center;
}

.career-container .hero-content h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5em);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
}

/* Jobs section */
.career-container .jobs-container {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.career-container .jobs-header {
    margin-bottom: 2rem;
}

.career-container .jobs-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.career-container .loading-dots::after {
    content: '';
    animation: careerDots 1.2s steps(4, end) infinite;
}

@keyframes careerDots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

.career-container .jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-container .job-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-container .job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.dark .career-container .job-card:hover {
    box-shadow: 0 4px 16px rgba(0, 191, 255, 0.12);
}

.career-container .job-card-inner {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}

body.dark .career-container .job-card-inner {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.career-container .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    flex-wrap: wrap;
    transition: background 0.2s;
}

.career-container .job-header:hover {
    background: var(--bg-card-content);
}

body.dark .career-container .job-header:hover {
    background: rgba(21, 42, 69, 0.5);
}

.career-container .job-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.35rem;
}

.career-container .job-info .job-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.career-container .apply-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--text-heading);
    color: var(--text-on-accent);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.career-container .apply-btn:hover {
    background: var(--accent);
    transform: scale(1.02);
}

body.dark .career-container .apply-btn {
    background: var(--text-heading);
    color: var(--bg);
}

body.dark .career-container .apply-btn:hover {
    background: var(--accent-light);
    color: var(--bg);
}

.career-container .job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.career-container .job-details.expanded {
    max-height: 2000px;
}

.career-container .job-description {
    padding: 0 1.75rem 1.5rem;
    border-top: 1px solid var(--border);
}

.career-container .job-description p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0;
    white-space: pre-line;
}

.career-container .apply-now-container {
    padding: 0 1.75rem 1.5rem;
}

.career-container .apply-now-btn,
.career-container .green-apply-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.career-container .apply-now-btn:hover,
.career-container .green-apply-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Content box - Mission */
.career-container .content-box {
    margin: 2rem auto 3rem;
    max-width: 1100px;
    width: 100%;
    padding: 2rem 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

body.dark .career-container .content-box {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.career-container .content-box .left {
    flex: 1;
    min-width: 220px;
}

.career-container .content-box .left h5 {
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.career-container .content-box .left h1 {
    font-size: clamp(1.75rem, 3vw, 2.5em);
    color: var(--text-heading);
    margin: 0;
    line-height: 1.3;
}

.career-container .content-box .right {
    flex: 1;
    min-width: 260px;
}

.career-container .content-box .right p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0;
}

@media (max-width: 768px) {
    .career-container .job-header {
        padding: 1.25rem 1.5rem;
    }

    .career-container .job-info h3 {
        font-size: 1.1rem;
    }

    .career-container .content-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .career-container .content-box .left,
    .career-container .content-box .right {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .career-container .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-container .apply-btn {
        width: 100%;
    }
}

/* ========================================
   REFERRALS PAGE (Simple)
======================================== */
.referrals-page {
    position: relative;
    z-index: 1;
}

.referrals-page .section1 {
    margin-top: 2%;
    min-height: 85vh;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.referrals-page .section1 h4 {
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 1em;
    margin: 0 auto 0.5rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.referrals-page .section1 h1 {
    font-size: clamp(2rem, 4vw, 3.5em);
    letter-spacing: 2px;
    margin: 0 auto 0.5rem;
    color: var(--text-heading);
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.referrals-page .section1 p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 auto;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.referrals-page .referral-section {
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem 4rem;
}

.referrals-page .referral-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    max-width: 900px;
    width: 95%;
    transition: background 0.3s, color 0.3s;
}

body.dark .referrals-page .referral-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.referrals-page .referral-card .small-heading {
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.referrals-page .referral-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.referrals-page .referral-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0 0 1.25rem;
}

.referrals-page .referral-card .divider {
    border: none;
    border-top: 1px dashed var(--border);
    margin: 1.5rem 0;
}

.referrals-page .referral-card .rewards-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.referrals-page .referral-card .reward-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.25rem;
    background: var(--bg-card-content);
    border-radius: 10px;
}

.referrals-page .referral-card .reward-item strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.referrals-page .referral-card .reward-item span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.referrals-page .referral-card .terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.referrals-page .referral-card .terms-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.referrals-page .referral-card .terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.referrals-page .referral-card .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--text-heading);
    color: var(--text-on-accent);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.referrals-page .referral-card .cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

body.dark .referrals-page .referral-card .cta-btn {
    background: var(--text-heading);
    color: var(--bg);
}

body.dark .referrals-page .referral-card .cta-btn:hover {
    background: var(--accent-light);
    color: var(--bg);
}

@media (max-width: 768px) {
    .referrals-page .referral-card {
        padding: 28px 24px;
    }

    .referrals-page .referral-card .rewards-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .referrals-page .referral-card {
        padding: 20px;
        border-radius: 16px;
    }

    .referrals-page .referral-card h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {

    .clouds,
    .site-header,
    .scroll-to-top,
    .theme-toggle,
    .hamburger,
    .popup-form,
    .waveform,
    .support-images {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    a {
        text-decoration: underline;
    }

    .hero .main-title,
    .course h2,
    .feedback-section .main-title,
    .support-card-heading {
        color: #000 !important;
    }

    .course_card,
    .info-card,
    .section_cards_container .card,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border: #000;
        --border-strong: #000;
    }

    body.dark {
        --border: #fff;
        --border-strong: #fff;
    }

    .hero .enroll-btn,
    .btn-nav-cta,
    .popup-form .submit-btn,
    .requestBtn button {
        border: 2px solid #000;
    }

    body.dark .hero .enroll-btn,
    body.dark .btn-nav-cta,
    body.dark .popup-form .submit-btn,
    body.dark .requestBtn button {
        border: 2px solid #fff;
    }
}

/* Windows High Contrast Mode */
@media (forced-colors: active) {

    .hero .enroll-btn,
    .btn-nav-cta,
    .popup-form .submit-btn {
        border: 2px solid currentColor;
    }

    .course_card .top,
    .course-card-header {
        border: 2px solid currentColor;
    }
}

/* ========================================
   Refined Social Footer (Boxed)
======================================== */
.below-footer {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    /* Removed potential borders/shadows if they existed */
    background: transparent;
}

.social-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-card);
    border: 1px solid #000;
    /* Thin black border */
    flex-wrap: wrap;
    max-width: 95%;
    width: 95%;
    margin: 2rem auto;
}

body.dark .social-footer {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Darker footer bottom links */
.footer-bottom2 p,
.footer-bottom2 a,
.footer-bottom2 span {
    color: #6c757d !important;
    /* Lighter shade (Bootstrap muted gray) */
    font-weight: 400;
    /* Normal weight */
    opacity: 0.8;
    /* Slight transparency */
    font-size: 1.05em;
    /* Slightly larger */
    text-shadow: 0.5px 0 0 #000;
    /* Faux bold for extra thickness */
}

.footer-bottom2 a:hover {
    text-decoration: underline;
    color: var(--accent) !important;
}

.social-left p {
    margin: 0;
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.social-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.social-right a:hover {
    color: var(--accent);
    background: var(--bg-card-content);
    transform: translateY(-2px);
}

.social-right a i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .social-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 24px;
        width: 100%;
    }

    .social-right {
        gap: 0.5rem;
    }

    .social-right a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Re-implemented Referral Cards (Image Exact Match) */
.referral-steps-section {
    padding: 2rem 0;
    width: 100%;
}

.referral-grid-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    /* Force single row */
    margin-bottom: 3rem;
    width: 100%;
    align-items: stretch;
    /* Ensure equal height */
}

.referral-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.referral-card {
    background: #fff;
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft diffuse shadow */
    flex: 1;
    /* Fill the column height */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.referral-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.ref-icon {
    font-size: 4rem;
    color: #00C2FF;
    margin-bottom: 1.5rem;
}

.ref-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.ref-desc {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Dark Mode Overrides */
body.dark .referral-card {
    background: var(--bg-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

body.dark .ref-title {
    color: var(--text-heading);
}

body.dark .ref-desc {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .referral-grid-row {
        flex-direction: column;
        gap: 2rem;
    }

    .referral-col {
        width: 100%;
    }
}

/* GLOBAL SCROLLBAR REMOVAL - FORCE */
html,
body {
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE 10+ */
    overflow-x: hidden !important;
}

/* Chrome, Safari, Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    background: transparent !important;
    -webkit-appearance: none !important;
}

/* FORCE REMOVE FOOTER DIVIDERS/BORDERS */
.site-footer,
.main-footer,
.footer-columns,
.footer-column,
.below-footer,
.footer-bottom2 {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-top: 0 !important;
    /* Remove gaps */
    padding-top: 1rem !important;
    /* Adjust padding */
}

/* KEEP Social Footer Styling */
.social-footer {
    border: 1px solid #000 !important;
    background: var(--bg-card) !important;
    box-shadow: var(--shadow-card) !important;
}

/* About Page Stats Updates */
.stats-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-card);
    /* Ensure card bg is set */
}

.count-wrapper .bluebar {
    background: #0357ab !important;
    /* Dark blue */
}

.count-wrapper .count {
    color: #0357ab !important;
    /* Dark blue */
}

body.dark .count-wrapper .bluebar {
    background: var(--accent) !important;
    /* Use accent instead of white */
}

body.dark .count-wrapper .count {
    color: #fff !important;
}

/* Feature Icons (Reverted to Bootstrap Icons) */
.feature-card .icon-box {
    width: 100px;
    height: 100px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card .icon-box i {
    font-size: 4rem;
    /* Adjusted */
    color: var(--accent);
    /* Use site accent color */
}

/* Programs Hero Font Fix */
.programs-hero .section-title {
    font-size: clamp(2rem, 4vw, 4em) !important;
    line-height: 1.3;
}

/* Add spacing for enroll button in support/CTA sections */
.support-text .enroll-btn {
    margin-top: 2rem;
}


/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    color: var(--text-heading);
}

.theme-toggle:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.theme-toggle i {
    font-size: 1.25rem;
    line-height: 1;
}

/* Visibility Logic */
.theme-icon-moon,
.theme-icon-sun {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* In Light Mode: Show Moon, Hide Sun */
body:not(.dark) .theme-icon-sun,
body.light .theme-icon-sun {
    display: none;
}

/* In Dark Mode: Show Sun, Hide Moon */
body.dark .theme-icon-moon {
    display: none;
}

/* ========================================
   DARK THEME OVERRIDES (Comprehensive)
   ======================================== */
body.dark input,
body.dark select,
body.dark textarea {
    background-color: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

body.dark input::placeholder,
body.dark textarea::placeholder {
    color: var(--text-muted);
}

body.dark .site-header.scrolled {
    background: rgba(2, 6, 23, 0.95) !important;
    /* Dark navy glass */
    border-bottom: 1px solid var(--border);
}

body.dark .feature-card,
body.dark .referral-card,
body.dark .testimonial-card,
body.dark .info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

body.dark .dropdown-menu {
    background-color: var(--bg-card);
    border-color: var(--border);
}

body.dark .dropdown-item {
    color: var(--text);
}

body.dark .dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--text-heading);
}

body.dark .accordion-item {
    background-color: var(--bg-card);
    border-color: var(--border);
}

body.dark .accordion-button {
    background-color: var(--bg-card);
    color: var(--text-heading);
}

body.dark .accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--accent);
    box-shadow: inset 0 -1px 0 var(--border);
}

/* Ensure text visibility on colored backgrounds if any */
body.dark .btn-primary,
body.dark .btn-accent {
    color: #fff;
}

/* ========================================
   SUPPORT ACTION CARDS (3 Cards)
   ======================================== */
.section_cards_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.section_cards_container .card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 8px 40px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Unique color for each card */
.section_cards_container .card:nth-child(1) {
    border-color: rgba(138, 43, 226, 0.2);
}

.section_cards_container .card:nth-child(2) {
    border-color: rgba(0, 191, 255, 0.2);
}

.section_cards_container .card:nth-child(3) {
    border-color: rgba(16, 185, 129, 0.2);
}

.section_cards_container .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.section_cards_container .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 191, 255, 0.15),
        0 20px 60px rgba(138, 43, 226, 0.1),
        0 0 80px rgba(0, 191, 255, 0.08);
    border-color: rgba(0, 191, 255, 0.3);
}

.section_cards_container .card:hover::before {
    opacity: 1;
}

.section_cards_container .card h5 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin: 0;
}

.section_cards_container .card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.2;
}

.section_cards_container .card button {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Unique button colors for each card - All Green */
.section_cards_container .card:nth-child(1) button {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.section_cards_container .card:nth-child(1) button:hover {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.section_cards_container .card:nth-child(2) button {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    width: 100%;
}

.section_cards_container .card:nth-child(2) button:hover {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.section_cards_container .card:nth-child(3) button {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    width: 100%;
}

.section_cards_container .card:nth-child(3) button:hover {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.section_cards_container .card button:hover {
    background: var(--gradient-btn-hover);
    transform: scale(1.05);
}

.section_cards_container .card a {
    text-decoration: none;
}

/* Request Button (Demo Card) */
.requestBtn {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.requestBtn button {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    padding: 12px 24px;
    font-size: 1rem;
    animation: buttonPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.requestBtn button:hover {
    animation: none;
    background: linear-gradient(135deg, #059669, #0d9488);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

/* Waveform Animation (Call Card) */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 60px;
    margin: 0.5rem 0;
}

.waveform .bar {
    width: 6px;
    background: linear-gradient(180deg, #10b981, #14b8a6);
    border-radius: 3px;
    animation: waveform 1.2s ease-in-out infinite;
}

.waveform .bar:nth-child(1) {
    animation-delay: 0s;
}

.waveform .bar:nth-child(2) {
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(3) {
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(4) {
    animation-delay: 0.3s;
}

.waveform .bar:nth-child(5) {
    animation-delay: 0.4s;
}

.waveform .bar:nth-child(6) {
    animation-delay: 0.5s;
}

.waveform .bar:nth-child(7) {
    animation-delay: 0.6s;
}

.waveform .bar:nth-child(8) {
    animation-delay: 0.5s;
}

.waveform .bar:nth-child(9) {
    animation-delay: 0.4s;
}

.waveform .bar:nth-child(10) {
    animation-delay: 0.3s;
}

.waveform .bar:nth-child(11) {
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(12) {
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(13) {
    animation-delay: 0s;
}

.waveform .bar:nth-child(14) {
    animation-delay: 0.1s;
}

/* Dialogue Boxes (Query Card) */
.dialogueBox_container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.dialogue_box,
.dialogue_box2 {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    max-width: 80%;
}

.dialogue_box {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation: floatLeft 3s ease-in-out infinite;
}

.dialogue_box2 {
    align-self: flex-end;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: #fff;
    border-color: transparent;
    border-bottom-right-radius: 4px;
    animation: floatRight 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Dark Mode Adjustments */
body.dark .section_cards_container .card {
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

body.dark .waveform .bar {
    background: var(--accent);
}

body.dark .dialogue_box {
    background: var(--bg-card);
    border-color: var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .section_cards_container {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section_cards_container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .section_cards_container .card h2 {
        font-size: 1.75rem;
    }
}

/* ========================================
   MOBILE RESPONSIBILITY FIXES
======================================== */

@media (max-width: 1200px) {
    .hero .container {
        padding: 0 40px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 60px;
        padding-top: 100px;
        /* Space for navbar */
    }

    .hero .left {
        min-width: 0;
        padding-top: 0;
        align-items: center;
        width: 100%;
    }

    .hero .main-title {
        font-size: 3.5rem;
    }

    .hero .cta-row {
        justify-content: center;
    }

    .hero .right {
        min-width: 0;
        width: 100%;
        min-height: auto;
        padding-top: 0;
    }
}

@media (max-width: 768px) {

    /* Hero Section */
    .hero .container {
        padding: 80px 20px 40px;
        /* Adjust padding for mobile */
        width: 100%;
        max-width: 100%;
    }

    .hero .main-title {
        font-size: 2.5rem;
    }

    .hero .hero-welcome {
        font-size: 1.8rem;
    }

    .hero .main-img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    /* Floating Cards in Hero */
    .hero .google-cert {
        top: 20px;
        right: 0;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero .students-card {
        bottom: 80px;
        left: 0;
        padding: 8px 16px;
    }

    .hero .reviews-card {
        right: 0;
        bottom: 40px;
    }

    /* Support Card */
    .support-card {
        margin: 0 20px 40px;
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .support-images {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .support-images .man {
        right: 50%;
        transform: translateX(50%);
        height: 250px;
    }

    /* Course Section */
    .course {
        padding: 40px 20px;
    }

    .course h1 {
        font-size: 2rem;
    }

    /* Footer */
    .main-footer {
        padding: 3rem 20px;
    }

    .above-footer {
        margin: 0 20px;
        padding: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Feedback Section */
    .feedback-section {
        padding: 40px 20px;
    }

    .feedback-section .main-title {
        font-size: 2.5rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .enroll-btn {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero .students-card,
    .hero .reviews-card,
    .hero .google-cert {
        position: relative;
        inset: auto;
        margin: 10px auto;
        width: max-content;
        transform: none !important;
    }

    .hero .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}