/* ========================================
   BBX Academy - Landing Pages Styles
   ======================================== */

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    transition: color 0.3s ease;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-orange);
}
.logo-image {
    width: 200px;
}

.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(255, 110, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 110, 59, 0.4);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--pure-white);
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--pure-white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--medium-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-elements {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

/* Hero Image & Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--pure-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin: 0;
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: -1;
}

.visual-circle {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.student-page .hero-image {
    height: auto;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.student-page .student-hero-scene {
    position: relative;
    width: min(100%, 480px);
    margin: 0 auto;
    padding-top: 20px;
}

.student-page .student-hero-illustration {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 370px;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.22));
}

.student-page .student-hero-glow {
    position: absolute;
    bottom: 68%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 160, 110, 0.45) 0%, rgba(255, 110, 59, 0) 70%);
    filter: blur(22px);
    opacity: 0.85;
    z-index: 1;
    animation: heroGlowPulse 6s ease-in-out infinite;
}

.student-page .student-hero-light {
    position: absolute;
    bottom: 36%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 230, 214, 0.95) 0%, rgba(255, 170, 120, 0.4) 45%, rgba(255, 170, 120, 0) 100%);
    clip-path: polygon(18% 0%, 82% 0%, 100% 100%, 0 100%);
    filter: blur(4px);
    opacity: 0.7;
    z-index: 0;
    animation: heroBeamPulse 5s ease-in-out infinite;
}

.student-page .student-hero-spark {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 158, 106, 0.8));
    opacity: 0.6;
    z-index: 2;
    animation: heroSpark 4.5s ease-in-out infinite;
}

.student-page .spark-1 {
    bottom: 55%;
    left: 18%;
    animation-delay: 0.4s;
}

.student-page .spark-2 {
    bottom: 69%;
    right: 23%;
    animation-delay: 1.2s;
}

.student-page .spark-3 {
    bottom: 42%;
    right: 6%;
    animation-delay: 2s;
}

.student-page .course-particle {
    position: absolute;
    left: 50%;
    bottom: 30%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.16);
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-grey);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    backdrop-filter: blur(6px);
    animation: courseParticleRise 7.5s ease-in-out infinite;
}

.student-page .course-particle span {
    white-space: nowrap;
}

.student-page .course-particle .particle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff6e3b 0%, #ff9f70 100%);
    color: var(--pure-white);
    flex-shrink: 0;
}

.student-page .course-particle .particle-icon svg {
    width: 18px;
    height: 18px;
}

.student-page .course-particle.particle-marketing {
    --offset-x: -160px;
    --float-distance: 240px;
    animation-delay: 0s;
}

.student-page .course-particle.particle-frontend {
    --offset-x: 120px;
    --float-distance: 210px;
    animation-delay: 1.2s;
}

.student-page .course-particle.particle-fullstack {
    --offset-x: 40px;
    --float-distance: 260px;
    animation-delay: 2.4s;
}

.student-page .course-particle.particle-automation {
    --offset-x: -80px;
    --float-distance: 220px;
    animation-delay: 3.6s;
}

@keyframes heroGlowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes heroBeamPulse {
    0%, 100% {
        opacity: 0.55;
        filter: blur(4px);
    }
    40% {
        opacity: 0.9;
        filter: blur(2px);
    }
    70% {
        opacity: 0.75;
    }
}

@keyframes heroSpark {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.6);
        opacity: 0.3;
    }
    50% {
        transform: translate3d(10px, -25px, 0) scale(1);
        opacity: 0.8;
    }
}

@keyframes courseParticleRise {
    0% {
        transform: translate3d(-50%, 40px, 0) scale(0.85);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    45% {
        transform: translate3d(calc(-50% + var(--offset-x)), calc(var(--float-distance) * -0.55), 0) scale(1.05);
    }
    100% {
        transform: translate3d(calc(-50% + var(--offset-x)), calc(var(--float-distance) * -1), 0) scale(0.85);
        opacity: 0;
    }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-waves path {
    fill: var(--pure-white);
}

/* Sections */

.section-badge {
    display: inline-block;
    background: rgba(255, 110, 59, 0.1);
    border: 2px solid rgba(255, 110, 59, 0.3);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background: var(--pure-white);
}
.about{
    display: flex;
    justify-content: center;
}

.about-image {
    position: relative;
    height: 430px;
}

.about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.stat-item {
    flex: 1;
    background: var(--pure-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin: 0;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 110, 59, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-orange);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--medium-grey);
    margin: 0;
}

/* Courses Section */
.courses-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.course-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

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

.course-card.featured {
    background: var(--gradient-primary);
    color: var(--pure-white);
}

.course-card.featured * {
    color: var(--pure-white);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange) !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.course-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.course-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.course-pricing {
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-grey);
}

.price-small {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* ========================================
   Course Showcase - Premium Design
   ======================================== */

.course-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    /* align-items: center; */
    position: relative;
}

/* Reversed Layout - Small cards left, Big card right */
.course-showcase-reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

/* Main Course Wrapper with Mascot */
.course-main-wrapper {
    position: relative;
    padding-bottom: 60px;
}

.course-card-hero {
    background: linear-gradient(135deg, #e85a2b 0%, #ff6e3b 50%, #ff8259 100%);
    border-radius: 24px;
    padding: 45px 40px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.course-card-hero:hover {
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    top: -80px;
    right: -60px;
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    bottom: 40px;
    left: -40px;
}

.hero-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 10px 10px;
}

/* Hero Badge */
.course-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6e3b;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff6e3b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.course-title-hero {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.course-desc-hero {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Interactive Highlight Pills */
.highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.pill-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pill-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
}

/* Hero Enroll Button */
.btn-hero-enroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ff6e3b;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-enroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,110,59,0.08), transparent);
    transition: left 0.5s ease;
}

.btn-hero-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: #ff6e3b;
}

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

.btn-hero-enroll svg {
    transition: transform 0.3s ease;
}

.btn-hero-enroll:hover svg {
    transform: translateX(4px);
}

/* Mascot Character */
.course-mascot {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 10;
}

.mascot-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mascot-bubble {
    position: absolute;
    top: 0;
    left: -80px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 20px 20px 5px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: bounceIn 0.5s ease 1s both;
}

/* Mascot on left side (for reversed layout) */
.course-mascot-left {
    right: auto;
    left: -20px;
}

.mascot-bubble-right {
    left: auto;
    right: -80px;
    border-radius: 20px 20px 20px 5px;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Mini Course Stack - Premium Style */
.course-mini-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    /* padding: 20px 0; */
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Remove staggered positioning - align all cards */
.mini-card-1,
.mini-card-2,
.mini-card-3 {
    transform: translateX(0);
}

.mini-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.06),
        0 8px 24px rgba(0,0,0,0.1);
    border-color: rgba(232, 90, 43, 0.2);
}

/* Accent Bar */
.mini-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #e85a2b, #ff6e3b);
    transition: width 0.3s ease;
}

.mini-card:hover .mini-card-accent {
    width: 5px;
}

/* Card Icon - Premium */
.mini-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #fef5f2 0%, #feede8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 90, 43, 0.1);
}

.mini-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #e85a2b;
    stroke-width: 1.5;
}

.mini-card:hover .mini-card-icon {
    background: linear-gradient(135deg, #e85a2b, #ff6e3b);
    border-color: transparent;
}

.mini-card:hover .mini-card-icon svg {
    stroke: #fff;
}

/* Card Content */
.mini-card-content {
    flex: 1;
}

.mini-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.mini-card-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.45;
}

.mini-tags {
    display: flex;
    gap: 16px;
}

.mini-tags span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.mini-tags svg {
    width: 14px;
    height: 14px;
    stroke: #9ca3af;
    stroke-width: 1.5;
}

/* Arrow Button - Premium */
.mini-card-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.mini-card-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #9ca3af;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.mini-card:hover .mini-card-arrow {
    background: #e85a2b;
    border-color: #e85a2b;
}

.mini-card:hover .mini-card-arrow svg {
    stroke: #fff;
    transform: translateX(2px);
}

/* Floating Elements - Premium Icons */
.floating-element {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: floatAround 4s ease-in-out infinite;
    pointer-events: none;
}

.floating-element svg {
    width: 18px;
    height: 18px;
    stroke: #e85a2b;
    stroke-width: 1.5;
}

.float-star {
    top: -10px;
    right: 40px;
    animation-delay: 0s;
}

.float-rocket {
    bottom: 30px;
    left: -10px;
    animation-delay: 1s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 991px) {
    .course-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .course-showcase-reverse {
        grid-template-columns: 1fr;
    }
    
    /* Reorder so main card appears first on mobile */
    .course-showcase-reverse .course-main-wrapper {
        order: -1;
    }
    
    .course-main-wrapper {
        padding-bottom: 80px;
    }
    
    .mascot-img {
        width: 140px;
    }
    
    /* Reset mascot position on mobile */
    .course-mascot-left {
        left: auto;
        right: -20px;
    }
    
    .mascot-bubble-right {
        right: auto;
        left: -80px;
        border-radius: 20px 20px 5px 20px;
    }
    
    .mini-card:hover {
        transform: translateX(8px);
    }
}

@media (max-width: 576px) {
    .course-card-hero {
        padding: 30px 25px 40px;
    }
    
    .course-title-hero {
        font-size: 1.6rem;
    }
    
    .highlight-pills {
        gap: 8px;
    }
    
    .pill-item {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .mascot-img {
        width: 100px;
    }
    
    .mascot-bubble {
        display: none;
    }
    
    .mini-card {
        padding: 16px 18px;
    }
    
    .mini-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .floating-element {
        display: none;
    }
}

/* ========================================
   Coming Soon - Tab Content
   ======================================== */

.coming-soon-wrapper {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Interactive Moving Circles Background */
.interactive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(0px);
    transition: transform 0.3s ease-out, opacity 0.3s ease;
    will-change: transform;
}

/* Orange circles */
.floating-circle.circle-1 {
    width: 80px;
    height: 80px;
    background: rgba(232, 90, 43, 0.336);
    border: 2px solid rgba(232, 90, 43, 0.2);
    top: 10%;
    left: 5%;
    animation: float1 8s ease-in-out infinite;
}

.floating-circle.circle-2 {
    width: 120px;
    height: 120px;
    background: rgba(200, 200, 200, 0.233);
    border: 2px solid rgba(180, 180, 180, 0.15);
    top: 60%;
    left: 15%;
    animation: float2 10s ease-in-out infinite;
}

/* White/Light grey circles */
.floating-circle.circle-3 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(232, 90, 43, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    top: 20%;
    right: 10%;
    animation: float3 7s ease-in-out infinite;
}

.floating-circle.circle-4 {
    width: 100px;
    height: 100px;
    background: rgba(232, 90, 43, 0.212);
    border: 2px solid rgba(232, 90, 43, 0.15);
    bottom: 15%;
    right: 20%;
    animation: float4 9s ease-in-out infinite;
}

.floating-circle.circle-5 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(200, 200, 200, 0.315);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    top: 50%;
    left: 40%;
    animation: float5 6s ease-in-out infinite;
}

.floating-circle.circle-6 {
    width: 70px;
    height: 70px;
    background: rgba(97, 97, 97, 0.2);
    border: 2px solid rgba(232, 90, 43, 0.1);
    bottom: 30%;
    left: 60%;
    animation: float6 11s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(60px, 10px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 25px) scale(1.08); }
    66% { transform: translate(25px, -35px) scale(0.92); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-25px, 15px) scale(1.15); }
    40% { transform: translate(15px, 35px) scale(0.9); }
    60% { transform: translate(35px, -10px) scale(1.05); }
    80% { transform: translate(-10px, -25px) scale(1.1); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -40px) scale(1.1); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, 20px) scale(1.2); }
    50% { transform: translate(-20px, 40px) scale(0.85); }
    75% { transform: translate(-40px, -15px) scale(1.1); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(1.15); }
}

.coming-soon-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coming-soon-image {
    flex: 1;
    max-width: 400px;
}

.coming-soon-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); */
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.192));
}

.coming-soon-text {
    flex: 1;
    text-align: left;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef5f2 0%, #feede8 100%);
    color: #e85a2b;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 90, 43, 0.15);
}

.coming-soon-badge svg {
    width: 18px;
    height: 18px;
    stroke: #e85a2b;
}

.coming-soon-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.coming-soon-text p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e85a2b 0%, #ff6e3b 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(232, 90, 43, 0.25);
    transition: all 0.3s ease;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 90, 43, 0.35);
    color: #fff;
}

.btn-notify svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* Responsive Coming Soon */
@media (max-width: 768px) {
    .coming-soon-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .coming-soon-image {
        max-width: 280px;
    }
    
    .coming-soon-text {
        text-align: center;
    }
    
    .coming-soon-text h3 {
        font-size: 1.6rem;
    }
    
    .coming-soon-text p {
        font-size: 0.95rem;
    }
}

/* Comparison Section */
.comparison-section {
    background: var(--pure-white);
}

.comparison-table {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--light-grey);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header-row {
    background: var(--gradient-dark);
    color: var(--pure-white);
    font-weight: 700;
}

.comparison-cell {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.highlight {
    background: rgba(255, 110, 59, 0.05);
    color: var(--primary-orange);
    font-weight: 700;
}

.comparison-row.header-row .comparison-cell.highlight {
    background: var(--gradient-primary);
    color: var(--pure-white);
}

.comparison-cell svg {
    width: 24px;
    height: 24px;
}

.comparison-cell.highlight svg {
    color: var(--primary-orange);
}

.comparison-row:not(.header-row) .comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
}

/* Methodology Section */
.methodology-section {
    padding-bottom: 0;
}
   .orbit-section {
      padding: clamp(60px, 10vw, 120px) 0;
      position: relative;
      overflow: hidden;
    }

    .orbit-container {
      position: relative;
      width: 750px;
      height: 520px;
      margin: 0 auto;
      margin-top: 5rem;
      margin-right: 15rem;
    }

    .orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 1.8px dotted rgba(10, 75, 115, 0.25);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: rotateOrbit 90s linear infinite reverse;
    }

  .orbit.orbit-1 { width: 770px; height: 770px; }
  .orbit.orbit-2 { width: 570px; height: 570px; }
  .orbit.orbit-3 { width: 370px; height: 370px; }

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

    .icon {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      transition: transform 0.3s ease;
    }

    .icon img {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

    .icon:hover {
      transform: scale(1.15);
    }

    /* Floating animation */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
      100% { transform: translateY(0px); }
    }

    /* Responsive */
    @media (max-width: 1199.98px) {
      .orbit-section {
        padding: clamp(60px, 12vw, 100px) 0;
      }

      .orbit-container {
        width: 520px;
        height: 520px;
        margin: 0 auto 3rem;
      }

      .orbit.orbit-1 { width: 520px; height: 520px; }
      .orbit.orbit-2 { width: 370px; height: 370px; }
      .orbit.orbit-3 { width: 240px; height: 240px; }

      .icon {
        width: 68px;
        height: 68px;
      }
    }

    @media (max-width: 767.98px) {
      .orbit-container {
        width: 320px;
        height: 320px;
      }

      .orbit.orbit-1 { width: 320px; height: 320px; }
      .orbit.orbit-2 { width: 230px; height: 230px; }
      .orbit.orbit-3 { width: 150px; height: 150px; }

      .icon {
        width: 56px;
        height: 56px;
      }
    }

    /* Right content styling */
    .content h6 {
      color: #0a4b73;
      font-weight: 600;
    }

    .content h2 {
      font-weight: 700;
    }

    .btn-custom {
      background: linear-gradient(90deg, #0a4b73, #ff7b00);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      transform: translateY(-3px);
      background: linear-gradient(90deg, #ff7b00, #0a4b73);
    }

    .methodology-points {
      padding: 0;
      margin: 0;
    }

    .methodology-points li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .methodology-points .check {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: #fff;
      font-weight: 600;
      flex-shrink: 0;
    }

    .methodology-points span:last-child {
      line-height: 1.5;
      flex: 1;
    }

    @media (max-width: 991.98px) {
      .content {
        text-align: center;
        padding: 0 1rem;
      }

      .methodology-points li {
        justify-content: center;
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      .btn-custom {
        margin-left: auto;
        margin-right: auto;
        display: inline-flex;
      }
    }

/* Testimonials Section (default carousel layout) */
.testimonials-section {
    background: var(--gradient-dark);
    color: var(--pure-white);

}



.testimonials-section .section-title,
.testimonials-section .section-description {
    color: var(--pure-white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--pure-white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.testimonial-author h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.testimonial-author p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-orange);
    opacity: 0.9;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background: var(--primary-orange);
}

/* Testimonials Section – Student Page stream layout */
.student-page .testimonials-section {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 7, 7, 0.98) 0%, rgba(14, 14, 14, 0.98) 100%);
    color: var(--pure-white);
    padding: clamp(3rem, 8vh, 5.5rem) 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.student-page .testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at -10% 20%, rgba(255, 110, 59, 0.3), transparent 55%),
                radial-gradient(circle at 110% 80%, rgba(255, 110, 59, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0.6;
}

.student-page .testimonials-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.student-page .testimonials-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--pure-white);
}

.student-page .testimonials-section .section-title,
.student-page .testimonials-section .section-description {
    color: var(--pure-white);
}

.student-page .testimonials-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 3rem;
    align-items: stretch;
}

.student-page .testimonials-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 420px;
}

.student-page .testimonial-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.student-page .testimonial-highlights li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.student-page .testimonial-highlights .spark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 0 18px rgba(255, 110, 59, 0.6);
    flex-shrink: 0;
}

.student-page .testimonials-stream {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.student-page .testimonials-stream::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.student-page .testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    padding: 0.15rem;
    will-change: transform;
}

.student-page .testimonial-card {
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 220px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.student-page .testimonial-card::after {
    display: none;
}

.student-page .testimonial-card.is-active {
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark-grey);
    border-color: rgba(255, 110, 59, 0.24);
    box-shadow: var(--shadow-xl);
}

.student-page .testimonial-card.is-active::after {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 110, 59, 0.2);
    pointer-events: none;
}

.student-page .testimonial-card.is-active:hover {
    transform: translateY(-8px);
}


.student-page .testimonial-card.is-placeholder {
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: transparent;
    min-height: 200px;
}

.student-page .testimonial-card.is-placeholder::before {
    content: "";
    display: block;
    width: 48%;
    height: 32%;
    border-radius: 20px;
    /* background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.25); */
}

.student-page .testimonial-card.is-placeholder:hover {
    transform: none;
}

.student-page .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-page .testimonial-avatar,
.student-page .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.student-page .testimonial-header h5,
.student-page .testimonial-author h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0.15rem;
}

.student-page .testimonial-header p,
.student-page .testimonial-author p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.student-page .testimonial-card.is-active .testimonial-header p,
.student-page .testimonial-card.is-active .testimonial-author p {
    color: var(--medium-grey);
}

.student-page .testimonial-body,
.student-page .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: inherit;
    margin: 0;
}

.student-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.student-page .quote-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .student-page .testimonials-wrapper {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .student-page .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .student-page .testimonials-intro {
        max-width: 100%;
    }

    .student-page .testimonials-stream {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .student-page .testimonials-section {
        padding: 4rem 0;
        align-items: flex-start;
    }

    .student-page .testimonials-stream {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .student-page .testimonial-column {
        gap: 1.25rem;
    }

    .student-page .testimonial-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .student-page .testimonial-card {
        padding: 1.5rem;
    }

    .student-page .testimonial-card.is-placeholder::before {
        width: 56%;
        height: 38%;
    }

    .student-page .testimonial-card.is-placeholder {
        min-height: 160px;
    }

    .student-page .testimonial-avatar,
    .student-page .author-avatar {
        width: 52px;
        height: 52px;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--pure-white);
}

.faq-contact {
    margin-top: 30px;
}

.faq-contact p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background: var(--pure-white);
    border: 2px solid var(--light-grey);
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    color: var(--dark-black);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--pure-white);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--pure-white);
    border: 2px solid var(--light-grey);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px 25px;
    color: var(--dark-grey);
    line-height: 1.8;
}

.accordion-collapse {
    border: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-card {
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-features span {
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}

.student-page .cta-section {
    background: #f4f6f9;
    padding: 90px 0;
}

.student-page .cta-card.cta-dual {
    background: transparent;
    color: var(--dark-black);
    box-shadow: none;
    padding: 0;
}

.student-page .cta-info-card,
.student-page .cta-form-card {
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 2.75rem);
    
}
.student-page .cta-form-card {
    background: var(--pure-white);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.student-page .cta-info-card h2 {
    color: var(--dark-black);
}

.student-page .cta-info-card p {
    color: var(--medium-grey);
}

.student-page .cta-point-list {
    display: grid;
    gap: 16px;
}

.student-page .cta-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-black);
}

.student-page .cta-point-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 110, 59, 0.12);
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.student-page .cta-actions .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 14px 24px;
}

.student-page .cta-actions .btn-light {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--dark-black);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.student-page .cta-note {
    font-size: 0.95rem;
    color: var(--medium-grey);
}

.student-page .cta-form-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-page .cta-form-card .form-label {
    font-weight: 600;
}

.student-page .cta-form-card .floating-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.student-page .cta-form-card .floating-field .form-control,
.student-page .cta-form-card .floating-field .form-select {
    padding: 1.25rem 1rem 0.75rem;
    background-color: rgba(241, 245, 249, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.student-page .cta-form-card .floating-field .form-select {
    padding-right: 2.75rem;
}

.student-page .cta-form-card .floating-field .floating-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-weight: 600;
    pointer-events: none;
    transition: top 0.18s ease, transform 0.18s ease, font-size 0.18s ease, color 0.18s ease;
    color: var(--medium-grey);
    background-color: transparent;
    padding: 0 4px;
}

.student-page .cta-form-card .floating-field .form-control:focus,
.student-page .cta-form-card .floating-field .form-select:focus {
    background-color: var(--pure-white);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 110, 59, 0.18);
}

.student-page .cta-form-card .floating-field .form-control:focus ~ .floating-label,
.student-page .cta-form-card .floating-field .form-control:not(:placeholder-shown) ~ .floating-label,
.student-page .cta-form-card .floating-field .form-control:-webkit-autofill ~ .floating-label,
.student-page .cta-form-card .floating-field .form-select:focus ~ .floating-label,
.student-page .cta-form-card .floating-field .form-select:valid ~ .floating-label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--primary-orange);
    background-color: var(--pure-white);
}

.student-page .cta-form-card .floating-field .form-select:invalid {
    color: var(--medium-grey);
}

.student-page .cta-form-card .floating-field .form-select option {
    color: var(--dark-black);
}

.student-page .cta-form-card .floating-field .form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--pure-white) inset;
    -webkit-text-fill-color: var(--dark-black);
}

.student-page .cta-form-card button {
    border-radius: 14px;
    font-weight: 700;
    padding: 14px 24px;
}

.student-page .location-section {
    background: #eef1f6;
    padding: 90px 0;
}

.student-page .location-section .section-description {
    color: var(--medium-grey);
}

.student-page .location-section ul {
    margin: 0;
}

.student-page .location-section .check {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 110, 59, 0.18);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
}

.student-page .location-section li span:last-child {
    color: var(--dark-black);
    font-weight: 600;
}

/* Contact Section - Dark Theme with World Map */
.student-page .contact-section {
    /* background-color: #2a2a2a; */
    background-image: url('../assets/images/download\ \(1\).jfif');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.student-page .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 232, 232, 0.129);
    z-index: 0;
}

.student-page .contact-section .container {
    position: relative;
    z-index: 1;
}

.student-page .contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--neu-accent);
    margin-bottom: 0.5rem;
}

.student-page .contact-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--neu-accent);
    margin-bottom: 3rem;
}

/* Contact Form */
.student-page .contact-form .contact-field {
    margin-bottom: 1.25rem;
}

.student-page .contact-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 12px 0;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.student-page .contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.student-page .contact-form .form-control:focus {
    background: transparent;
    border-color: var(--neu-accent);
    box-shadow: none;
    outline: none;
}

.student-page .contact-form textarea.form-control {
    resize: none;
    min-height: 100px;
}

.student-page .btn-contact-submit {
    background: var(--neu-accent);
    color: #1a1a1a;
    border: 2px solid var(--neu-accent);
    padding: 12px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 0;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.student-page .btn-contact-submit:hover {
    background: transparent;
    color: var(--neu-accent);
}

/* Contact Info Card */
.student-page .contact-info-card {
    color: #ffffff;
}

.student-page .contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.student-page .contact-info-header h3 {
    color: var(--neu-accent);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.student-page .contact-info-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neu-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-page .contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--neu-accent);
}

.student-page .contact-info-details {
    margin-bottom: 2rem;
}

.student-page .contact-info-item {
    margin-bottom: 1.5rem;
}

.student-page .contact-info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(44, 44, 44, 0.85);
}

.student-page .contact-info-item strong {
    color: #171717;
}

/* Contact Social Links */
.student-page .contact-social h4 {
    color: var(--neu-accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.student-page .contact-social-links {
    display: flex;
    gap: 15px;
}

.student-page .contact-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neu-accent);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.student-page .contact-social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .student-page .contact-section {
        padding: 60px 0;
    }
    
    .student-page .contact-info-card {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .student-page .contact-section {
        padding: 50px 0;
    }
    
    .student-page .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .student-page .cta-section {
        padding: 70px 0;
    }

    .student-page .cta-info-card,
    .student-page .cta-form-card {
        padding: 1.75rem;
    }

    .student-page .cta-actions .btn {
        font-size: 1rem;
    }

    .student-page .location-section {
        padding: 70px 0;
    }
}

/* Footer */
.footer {
    background: var(--pure-white);
    color: var(--dark-black);
    padding: 80px 0 40px;
    border-top: 1px solid #f1f1f1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-main {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 800;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
  width: 250px;
}

.footer-logo .logo-sub {
    font-size: 1rem;
    color: var(--dark-black);
    font-weight: 600;
}

.footer-description {
    color: var(--medium-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h6.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    color: var(--medium-grey);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #f1f1f1;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--medium-grey);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid var(--light-grey);
    padding: 25px 30px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
}

.modal-body {
    padding: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 110, 59, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 50px;
    }
    
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .comparison-cell {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* section {
        padding: 20px 0;
    } */
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-cell {
        justify-content: flex-start;
    }
    
    .course-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-nav {
        /* grid-template-columns: 1fr; */
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        gap: 24px;
    }
}

/* ========================================
   Neumorphism Hero Section Styles
   ======================================== */

.hero-section-neu {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #f0f0f3 0%, #e8e8eb 50%, #f5f5f7 100%); */
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    display: flex;
    align-items: flex-start;
}

.hero-section-neu .container {
    width: 100%;
}

/* Hero Image Container - New Centered Layout */
.hero-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* margin-top: 2rem; */
}

.hero-group-image {
    max-width: 1200px;
    width:  800px;
    max-height: 50vh;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Neumorphic Badge */
.hero-badge-neu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #ff6e3b;
    margin-bottom: 25px;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.08),
        -8px -8px 20px rgba(255, 255, 255, 0.95);
}

.hero-badge-neu .badge-icon {
    font-size: 1.2rem;
}

/* Neumorphic Typography */
.hero-headline-neu {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #414042;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        -1px -1px 3px rgba(0, 0, 0, 0.096);
}

.gradient-text-neu {
    background: linear-gradient(135deg, #ff6e3b 0%, #ff8f6b 50%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description-neu {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 720px;
    margin-bottom: 2rem;
}

/* Neumorphic CTA Buttons */
.hero-ctas-neu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-neu {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-neu {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    color: #fff;
    box-shadow: 
        6px 6px 16px rgba(255, 87, 34, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 0 0 0 rgba(255, 255, 255, 0);
}

.btn-primary-neu:hover {
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 24px rgba(255, 87, 34, 0.4),
        -6px -6px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline-neu {
    background: linear-gradient(145deg, #f5f5f7, #e8e8eb);
    color: #1a1a2e;
    border: 2px solid transparent;
    box-shadow: 
        6px 6px 16px rgba(0, 0, 0, 0.08),
        -6px -6px 16px rgba(255, 255, 255, 0.9);
}

.btn-outline-neu:hover {
    background: linear-gradient(145deg, #ffffff, #f0f0f3);
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1);
    color: #ff6e3b;
}

/* Neumorphic Trust Elements */
.trust-elements-neu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge-neu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    box-shadow: 
        5px 5px 12px rgba(0, 0, 0, 0.06),
        -5px -5px 12px rgba(255, 255, 255, 0.9);
}

.trust-badge-neu svg {
    width: 18px;
    height: 18px;
    stroke: #ff6e3b;
}

/* Mascot Scene Container */
.mascot-scene {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neumorphic Platform */
.neu-platform {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 40px;
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border-radius: 20px;
    box-shadow: 
        15px 15px 35px rgba(255, 87, 34, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.5),
        inset 2px 2px 5px rgba(255, 255, 255, 0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.1);
}

.neu-platform::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, #ff8a55, #ff6e3b);
    border-radius: 30px;
    box-shadow: 
        20px 20px 50px rgba(255, 87, 34, 0.25),
        -15px -15px 35px rgba(255, 255, 255, 0.6),
        inset 3px 3px 8px rgba(255, 255, 255, 0.4),
        inset -3px -3px 8px rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.neu-platform::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) perspective(200px) rotateX(80deg);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 87, 34, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.platform-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 110, 59, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Mascot Image */
.mascot-image {
    position: relative;
    z-index: 10;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(46, 46, 46, 0.241));
    margin-top: 3rem;
    /* animation: mascotFloat 4s ease-in-out infinite; */
}

/* @keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
} */

/* Floating Code Snippets */
.floating-code {
    position: absolute;
    border-radius: 12px;
    padding: 0;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 10px;
    z-index: 5;
    animation: codeFloat 5s ease-in-out infinite;
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.12),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.1);
}

.code-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.code-header .dot.red { background: #ff5f56; }
.code-header .dot.yellow { background: #ffbd2e; }
.code-header .dot.green { background: #27ca40; }

.code-body {
    padding: 10px 14px;
}

.code-line {
    line-height: 1.6;
    white-space: nowrap;
}

.code-line.indent {
    padding-left: 16px;
}

/* Dark Code Theme */
.code-dark {
    background: linear-gradient(145deg, #2d2d3a, #1a1a24);
    color: #e0e0e0;
    top: 80px;
    right: 20px;
    transform: rotate(3deg);
    animation-delay: 0s;
}

.code-dark .keyword { color: #c792ea; }
.code-dark .class-name { color: #82aaff; }
.code-dark .method { color: #f07178; }
.code-dark .string { color: #c3e88d; }
.code-dark .func { color: #ffcb6b; }

/* Orange Code Theme */
.code-orange {
    background: linear-gradient(145deg, #fff5f0, #ffe8dd);
    color: #5d4037;
    bottom: 180px;
    right: -10px;
    transform: rotate(-2deg);
    animation-delay: 1.5s;
}

.code-orange .prop { color: #ff6e3b; }
.code-orange .attr { color: #bf360c; }
.code-orange .value { color: #e65100; }

@keyframes codeFloat {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.code-orange {
    animation-name: codeFloatAlt;
}

@keyframes codeFloatAlt {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-4deg); }
}

/* Floating Skill Badges */
.floating-badges-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(145deg, #ffffff, #f0f0f3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    z-index: 5;
    box-shadow: 
        6px 6px 16px rgba(0, 0, 0, 0.08),
        -4px -4px 12px rgba(255, 255, 255, 0.95);
    pointer-events: auto;
    cursor: default;
    opacity: 0;
    white-space: nowrap;
    min-width: 140px;
    /* Start position - center top */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(-300px);
    will-change: transform, opacity, left, top;
    --mouse-x: 0px;
    --mouse-y: 0px;
    --float-offset: 0px;
}

/* Uniform badge text */
.floating-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

/* Phase 1: Fall from top to center - smoother easing */
.floating-badge.phase-fall {
    animation: fallToCenter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--fall-delay, 0s);
}

@keyframes fallToCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-350px) scale(0.8);
    }
    50% {
        opacity: 1;
    }
    85% {
        transform: translate(-50%, -50%) translateY(10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

/* Phase 2: Scatter to final positions - smoother transition */
.floating-badge.phase-scatter {
    animation: none;
    opacity: 1;
    transition: left 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                top 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.badge-marketing.phase-scatter {
    left: -10px;
    top: 100px;
    transform: translate(0, 0);
}

.badge-webdev.phase-scatter {
    left: -30px;
    top: 320px;
    transform: translate(0, 0);
}

.badge-ai.phase-scatter {
    left: calc(100% + 10px);
    top: 140px;
    transform: translate(-100%, 0);
}

.badge-frontend.phase-scatter {
    left: calc(100% - 10px);
    top: 360px;
    transform: translate(-100%, 0);
}

.badge-python.phase-scatter {
    left: 40px;
    top: 210px;
    transform: translate(0, 0);
}

/* Phase 3: Floating with mouse interaction */
.floating-badge.phase-float {
    transition: transform 0.2s ease-out;
}

.badge-marketing.phase-float {
    transform: translate(var(--mouse-x), calc(var(--mouse-y) + var(--float-offset)));
}

.badge-webdev.phase-float {
    transform: translate(var(--mouse-x), calc(var(--mouse-y) + var(--float-offset)));
}

.badge-ai.phase-float {
    transform: translate(calc(-100% + var(--mouse-x)), calc(var(--mouse-y) + var(--float-offset)));
}

.badge-frontend.phase-float {
    transform: translate(calc(-100% + var(--mouse-x)), calc(var(--mouse-y) + var(--float-offset)));
}

.badge-python.phase-float {
    transform: translate(var(--mouse-x), calc(var(--mouse-y) + var(--float-offset)));
}

.floating-badge:hover {
    box-shadow: 
        10px 10px 25px rgba(0, 0, 0, 0.1),
        -6px -6px 20px rgba(255, 255, 255, 1);
}

.badge-icon-neu {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border-radius: 50%;
    box-shadow: 
        2px 2px 6px rgba(255, 87, 34, 0.25),
        -2px -2px 4px rgba(255, 255, 255, 0.6);
}

.badge-icon-neu svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

/* Badge fall delay variables - closer timing for unified feel */
.badge-marketing { --fall-delay: 0s; }
.badge-webdev { --fall-delay: 0.08s; }
.badge-ai { --fall-delay: 0.16s; }
.badge-frontend { --fall-delay: 0.12s; }
.badge-python { --fall-delay: 0.2s; }

/* Code Screenshot Boxes */
.code-screenshot {
    position: absolute;
    border-radius: 12px;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 11px;
    z-index: 3;
    background: linear-gradient(145deg, #1e1e2e, #2d2d3a);
    box-shadow: 
        15px 15px 40px rgba(0, 0, 0, 0.2),
        -10px -10px 30px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    animation: codeSlideIn 0.7s ease-out forwards;
}

.code-screenshot .code-header {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
}

.code-screenshot .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-screenshot .dot.red { background: #ff5f56; }
.code-screenshot .dot.yellow { background: #ffbd2e; }
.code-screenshot .dot.green { background: #27ca40; }

.code-screenshot .code-body {
    padding: 12px 16px;
    color: #e0e0e0;
    line-height: 1.7;
}

.code-screenshot .code-line {
    white-space: nowrap;
}

.code-screenshot .code-line.indent { padding-left: 16px; }
.code-screenshot .code-line.indent2 { padding-left: 32px; }

.code-screenshot .keyword { color: #c792ea; }
.code-screenshot .variable { color: #82aaff; }
.code-screenshot .func { color: #82aaff; }
.code-screenshot .prop { color: #f07178; }
.code-screenshot .string { color: #c3e88d; }
.code-screenshot .boolean { color: #ff9cac; }
.code-screenshot .number { color: #f78c6c; }

/* Left Code Screenshot - Top Left */
.code-screenshot-left {
    top: 40px;
    left: -60px;
    transform: rotate(-5deg);
    animation-delay: 0.3s;
}

/* Right Code Screenshot - Right Middle */
.code-screenshot-right {
    top: 50%;
    right: -80px;
    transform: translateY(-50%) rotate(4deg);
    animation-delay: 0.5s;
}

@keyframes codeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) rotate(-8deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(-5deg);
    }
}

.code-screenshot-right {
    animation-name: codeSlideInRight;
}

@keyframes codeSlideInRight {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(30px) rotate(8deg);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotate(4deg);
    }
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #ff6e3b, #ffb74d);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 20;
    animation: sparkleAnimate 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 100px;
    right: 100px;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 200px;
    right: 150px;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 250px;
    left: 50px;
    animation-delay: 1s;
}

@keyframes sparkleAnimate {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.3) rotate(180deg); 
        opacity: 1; 
    }
}

/* Neumorphic Background Shapes */
.neu-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.neu-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3);
    box-shadow: 
        30px 30px 60px rgba(0, 0, 0, 0.06),
        -30px -30px 60px rgba(255, 255, 255, 0.8);
}

.neu-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: shapeMove 20s ease-in-out infinite;
}

.neu-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation: shapeMove 25s ease-in-out infinite reverse;
}

@keyframes shapeMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.05); }
}

/* Responsive adjustments for Neumorphism Hero */
@media (max-width: 1200px) {
    .hero-group-image {
        max-height: 45vh;
    }
}

@media (max-width: 992px) {
    .hero-section-neu {
        padding-top: 80px;
    }
    
    .hero-section-neu .row {
        text-align: center;
    }
    
    .hero-description-neu {
        margin: 0 auto 2rem;
    }
    
    .hero-ctas-neu {
        justify-content: center;
    }

    .trust-elements-neu {
        justify-content: center;
    }
    
    .hero-group-image {
        max-height: 40vh;
    }
    
    .floating-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .badge-marketing {
        left: 10px;
        top: 80px;
    }
    
    .badge-webdev {
        left: 0;
        bottom: 250px;
    }
    
    .badge-ai {
        right: 10px;
        top: 140px;
    }

    .badge-frontend {
        right: 0;
        bottom: 180px;
    }
}

@media (max-width: 768px) {
    .hero-section-neu {
        padding-top: 30px;
    }
    
    .hero-headline-neu {
        font-size: 2.2rem;
    }
    
    .hero-group-image {
        max-height: 35vh;
    }

    .hero-ctas-neu {
        /* flex-direction: column; */
        align-items: center;
    }

    /* .btn-neu {
        width: 100%;
        max-width: 280px;
    } */

    .trust-elements-neu {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-headline-neu {
        font-size: 1.8rem;
    }
    
    .hero-group-image {
        max-height: 30vh;
    }
    .logo-image{
        width: 130px;
    }
}

/* ========================================
   FULL PAGE NEUMORPHISM STYLES
   ======================================== */

/* Global Neumorphism Variables */
.student-page {
    --neu-bg: #e8e8eb;
    --neu-bg-light: #f0f0f3;
    --neu-bg-dark: #d1d1d4;
    --neu-shadow-light: rgba(255, 255, 255, 0.9);
    --neu-shadow-dark: rgba(0, 0, 0, 0.12);
    --neu-text-dark: #1a1a2e;
    --neu-text-medium: #555;
    --neu-accent: #ff6e3b;
    --neu-accent-light: #ff8f6b;
}

/* Apply neumorphism background to entire page */
.student-page {
    background: linear-gradient(135deg, #e8e8eb 0%, #f0f0f3 50%, #e8e8eb 100%);
}

/* ========================================
   Neumorphic Navigation
   ======================================== */
.student-page .navbar {
    /* background: linear-gradient(145deg, #f5f5f7, #e8e8eb) !important; */
    border: none;
    /* box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 -2px 10px rgba(255, 255, 255, 0.8); */
}

.student-page .navbar .nav-link {
    color: var(--neu-text-dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.student-page .navbar .nav-link:hover {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.06),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
    color: var(--neu-accent);
}

.student-page .navbar .btn-primary {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border: none;
    box-shadow: 
        5px 5px 15px rgba(255, 87, 34, 0.3),
        -3px -3px 10px rgba(255, 255, 255, 0.8);
}

.student-page .navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 20px rgba(255, 87, 34, 0.4),
        -5px -5px 15px rgba(255, 255, 255, 0.9);
}

/* ========================================
   Neumorphic About Section
   ======================================== */
.student-page .about-section {
    background: linear-gradient(135deg, #e8e8eb 0%, #f0f0f3 100%);
    padding: 100px 0;
}

.student-page .about-section .section-badge {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.95);
}

.student-page .about-section .section-title {
    color: var(--neu-text-dark);
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        -1px -1px 3px rgba(0, 0, 0, 0.05);
}

.student-page .about-section .section-description {
    color: var(--neu-text-medium);
}

.student-page .about-image {
    background: transparent;
}

.student-page .about-shape {
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3);
    opacity: 1;
    box-shadow: 
        20px 20px 50px rgba(0, 0, 0, 0.1),
        -20px -20px 50px rgba(255, 255, 255, 0.9),
        inset 3px 3px 8px rgba(255, 255, 255, 0.5),
        inset -3px -3px 8px rgba(0, 0, 0, 0.05);
}

.student-page .stat-item {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        10px 10px 25px rgba(0, 0, 0, 0.08),
        -10px -10px 25px rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.student-page .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        15px 15px 35px rgba(0, 0, 0, 0.1),
        -15px -15px 35px rgba(255, 255, 255, 1);
}

.student-page .stat-item h3 {
    background: linear-gradient(135deg, #ff6e3b, #ff8f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.student-page .feature-item {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.06),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.student-page .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.08),
        -12px -12px 30px rgba(255, 255, 255, 1);
}

.student-page .feature-icon {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        5px 5px 12px rgba(255, 87, 34, 0.25),
        -3px -3px 10px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 18px;
}

.student-page .feature-icon svg {
    color: #fff;
}

.student-page .feature-item h4 {
    color: var(--neu-text-dark);
}

.student-page .feature-item p {
    color: var(--neu-text-medium);
}

/* ========================================
   Neumorphic Courses Section
   ======================================== */
.student-page .courses-section {
    background: linear-gradient(135deg, #f0f0f3 0%, #e8e8eb 100%);
    padding: 60px 0;
}

.student-page .courses-section .section-badge {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.95);
}

.student-page .courses-section .section-title {
    color: var(--neu-text-dark);
}

.student-page .courses-tabs {
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 
        15px 15px 40px rgba(0, 0, 0, 0.08),
        -15px -15px 40px rgba(255, 255, 255, 0.9);
}

.student-page .courses-tabs .tab-nav {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border-radius: 100px;
    padding: 8px 12px;
    display: inline-flex;
    gap: 0;
    position: relative;
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.08),
        -12px -12px 30px rgba(255, 255, 255, 0.95),
        inset 2px 2px 6px rgba(255, 255, 255, 0.9),
        inset -1px -1px 4px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
}

/* Sliding bubble indicator */
.student-page .courses-tabs .tab-nav::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    height: calc(100% - 16px);
    width: var(--tab-width, 150px);
    background: linear-gradient(145deg, #ffffff, #f5f5f7);
    border-radius: 100px;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.9);
    transform: translateX(var(--tab-offset, 0));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.student-page .tab-link {
    background: transparent;
    border: none;
    color: var(--neu-text-medium);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    font-size: 0.95rem;
}

.student-page .tab-link:hover {
    color: var(--neu-text-dark);
}

.student-page .tab-link.active {
    color: var(--neu-accent);
    font-weight: 700;
    background: transparent;
    box-shadow: none;
}

/* Tab panel transitions */
.student-page .tab-panel {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.student-page .tab-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    animation: tabFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tabFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive tabs */
@media (max-width: 992px) {
    .student-page .courses-tabs .tab-nav {
        flex-wrap: wrap;
        border-radius: 30px;
        justify-content: center;
    }
    
    .student-page .courses-tabs .tab-nav::before {
        display: none;
    }
    
    .student-page .tab-link {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .student-page .tab-link.active {
        background: linear-gradient(145deg, #ffffff, #f5f5f7);
        box-shadow: 
            6px 6px 15px rgba(0, 0, 0, 0.08),
            -6px -6px 15px rgba(255, 255, 255, 0.95);
    }
}

.student-page .course-card {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    border-radius: 25px;
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.08),
        -12px -12px 30px rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
}

.student-page .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        18px 18px 45px rgba(0, 0, 0, 0.1),
        -18px -18px 45px rgba(255, 255, 255, 1);
}

.student-page .course-card.featured {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        15px 15px 40px rgba(255, 87, 34, 0.25),
        -10px -10px 30px rgba(255, 255, 255, 0.7);
}

.student-page .course-badge {
    background: linear-gradient(145deg, #ffffff, #f0f0f3);
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.08),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
}

.student-page .course-title {
    color: var(--neu-text-dark);
}

.student-page .course-card.featured .course-title {
    color: #fff;
}

.student-page .course-footer {
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.student-page .price-small {
    background: linear-gradient(135deg, #ff6e3b, #ff8f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Neumorphic Quiz Section
   ======================================== */
.student-page .quiz-intro {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        inset 5px 5px 15px rgba(255, 255, 255, 0.2),
        inset -5px -5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin: 0 auto;
    max-width: 90%;
    padding: 4rem 2rem;
}

.student-page .quiz-intro .btn-accent {
    background: linear-gradient(145deg, #ffffff, #f0f0f3);
    color: var(--neu-accent);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.15),
        -4px -4px 12px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.student-page .quiz-intro .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.2),
        -6px -6px 15px rgba(255, 255, 255, 0.4);
}

/* ========================================
   Neumorphic Comparison Section
   ======================================== */
.student-page .comparison-section {
    background: linear-gradient(135deg, #e8e8eb 0%, #f0f0f3 100%);
    padding: 100px 0;
}

.student-page .comparison-section .section-badge {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.95);
}

.student-page .comparison-section .section-title {
    color: var(--neu-text-dark);
}

.student-page .comparison-table {
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        20px 20px 50px rgba(0, 0, 0, 0.1),
        -20px -20px 50px rgba(255, 255, 255, 0.9);
}

.student-page .comparison-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.student-page .comparison-row.header-row {
    background: linear-gradient(145deg, #2d2d3a, #1a1a24);
}

.student-page .comparison-row.header-row .comparison-cell.highlight {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
}

.student-page .comparison-cell.highlight {
    background: rgba(255, 110, 59, 0.08);
}

/* ========================================
   Neumorphic Methodology Section
   ======================================== */
.student-page .methodology-section {
    background: linear-gradient(135deg, #f0f0f3 0%, #e8e8eb 100%);
}

.student-page .orbit-section {
    background: transparent;
}

.student-page .orbit {
    border-color: rgba(255, 110, 59, 0.2);
}

.student-page .icon {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    box-shadow: 
        10px 10px 25px rgba(0, 0, 0, 0.1),
        -10px -10px 25px rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.student-page .icon:hover {
    transform: scale(1.15);
    box-shadow: 
        15px 15px 35px rgba(0, 0, 0, 0.12),
        -15px -15px 35px rgba(255, 255, 255, 1);
}

.student-page .content h2 {
    color: var(--neu-text-dark);
}

.student-page .methodology-points li {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.06),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
}

.student-page .methodology-points .check {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        3px 3px 8px rgba(255, 87, 34, 0.25),
        -2px -2px 6px rgba(255, 255, 255, 0.5);
}

.student-page .btn-custom {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        6px 6px 15px rgba(255, 87, 34, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.8);
}

.student-page .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 20px rgba(255, 87, 34, 0.4),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
}


/* ========================================
   Neumorphic FAQ Section
   ======================================== */
.student-page .faq-section {
    background: linear-gradient(135deg, #f0f0f3 0%, #e8e8eb 100%);
    padding: 100px 0;
}

.student-page .faq-section .section-badge {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.95);
}

.student-page .faq-section .section-title {
    color: var(--neu-text-dark);
}

.student-page .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.student-page .accordion-button {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    border-radius: 18px !important;
    color: var(--neu-text-dark);
    font-weight: 600;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.06),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.student-page .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    color: #fff;
    box-shadow: 
        10px 10px 25px rgba(255, 87, 34, 0.25),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.student-page .accordion-button:focus {
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.06),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

.student-page .accordion-body {
    background: linear-gradient(145deg, #f5f5f7, #e8e8eb);
    border: none;
    border-radius: 0 0 18px 18px;
    margin-top: -10px;
    padding-top: 25px;
    box-shadow: 
        inset 4px 4px 10px rgba(0, 0, 0, 0.04),
        inset -4px -4px 10px rgba(255, 255, 255, 0.8);
    color: var(--neu-text-medium);
}

/* ========================================
   Neumorphic CTA Section
   ======================================== */
.student-page .cta-section {
    background: linear-gradient(135deg, #e8e8eb 0%, #f0f0f3 100%);
}

.student-page .cta-info-card {
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3);
    border-radius: 30px;
    box-shadow: 
        20px 20px 50px rgba(0, 0, 0, 0.08),
        -20px -20px 50px rgba(255, 255, 255, 0.9);
}

.student-page .cta-form-card {
    background: linear-gradient(145deg, #ffffff, #e8e8eb) !important;
    border: none !important;
    box-shadow: 
        20px 20px 50px rgba(0, 0, 0, 0.1),
        -20px -20px 50px rgba(255, 255, 255, 0.95) !important;
}

.student-page .cta-point-icon {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    color: #fff;
    box-shadow: 
        4px 4px 10px rgba(255, 87, 34, 0.25),
        -3px -3px 8px rgba(255, 255, 255, 0.7);
}

.student-page .cta-form-card .floating-field .form-control,
.student-page .cta-form-card .floating-field .form-select {
    background: linear-gradient(145deg, #f5f5f7, #e8e8eb) !important;
    border: none !important;
    box-shadow: 
        inset 4px 4px 10px rgba(0, 0, 0, 0.06),
        inset -4px -4px 10px rgba(255, 255, 255, 0.8);
    border-radius: 15px !important;
}

.student-page .cta-form-card .floating-field .form-control:focus,
.student-page .cta-form-card .floating-field .form-select:focus {
    background: linear-gradient(145deg, #ffffff, #f0f0f3) !important;
    box-shadow: 
        inset 4px 4px 10px rgba(0, 0, 0, 0.04),
        inset -4px -4px 10px rgba(255, 255, 255, 0.9),
        0 0 0 3px rgba(255, 110, 59, 0.2) !important;
}

.student-page .cta-form-card button[type="submit"] {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border: none;
    box-shadow: 
        8px 8px 20px rgba(255, 87, 34, 0.3),
        -6px -6px 15px rgba(255, 255, 255, 0.8);
}

.student-page .cta-form-card button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 
        10px 10px 25px rgba(255, 87, 34, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

/* ========================================
   Neumorphic Location Section
   ======================================== */
.student-page .location-section {
    background: linear-gradient(135deg, #e8e8eb 0%, #f0f0f3 100%);
}

.student-page .location-section .section-title {
    color: var(--neu-text-dark);
}

.student-page .location-section .check {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    color: #fff;
    box-shadow: 
        3px 3px 8px rgba(255, 87, 34, 0.25),
        -2px -2px 6px rgba(255, 255, 255, 0.7);
}

.student-page .location-section iframe {
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(0, 0, 0, 0.1),
        -15px -15px 40px rgba(255, 255, 255, 0.9);
}

/* ========================================
   Neumorphic Footer
   ======================================== */


.student-page .social-links a {
    background: linear-gradient(145deg, #3a3a4a, #252530);
    box-shadow: 
        5px 5px 12px rgba(0, 0, 0, 0.3),
        -5px -5px 12px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.student-page .social-links a:hover {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        6px 6px 15px rgba(255, 87, 34, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ========================================
   Neumorphic Modal
   ======================================== */
.student-page .modal-content {
    background: linear-gradient(145deg, #f5f5f7, #e0e0e3) !important;
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 
        30px 30px 80px rgba(0, 0, 0, 0.2),
        -20px -20px 60px rgba(255, 255, 255, 0.5) !important;
}

.student-page .quiz-wrap {
    background: linear-gradient(145deg, #ffffff, #e8e8eb) !important;
    border: none !important;
    border-radius: 20px;
    box-shadow: 
        inset 4px 4px 10px rgba(255, 255, 255, 0.5),
        inset -4px -4px 10px rgba(0, 0, 0, 0.03);
}

.student-page .choice {
    background: linear-gradient(145deg, #ffffff, #e8e8eb) !important;
    border: none !important;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.06),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.student-page .choice:hover {
    background: linear-gradient(145deg, #fff5f0, #ffe8dd) !important;
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 20px rgba(255, 87, 34, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1);
}

.student-page .progress-wrap {
    background: linear-gradient(145deg, #d8d8db, #e8e8eb);
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
    border-radius: 999px;
}

.student-page .progress-bar {
    background: linear-gradient(90deg, #ff6e3b, #ff8f6b);
    box-shadow: 0 0 10px rgba(255, 110, 59, 0.4);
}

/* ========================================
   Neumorphic Toggle/Switch Elements
   ======================================== */
.student-page .form-check-input {
    background: linear-gradient(145deg, #e8e8eb, #d8d8db);
    border: none;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.1),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
}

.student-page .form-check-input:checked {
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    box-shadow: 
        4px 4px 10px rgba(255, 87, 34, 0.3),
        -3px -3px 8px rgba(255, 255, 255, 0.5);
}

/* ========================================
   Neumorphic Scrollbar
   ======================================== */
.student-page ::-webkit-scrollbar {
    width: 10px;
}

.student-page ::-webkit-scrollbar-track {
    background: linear-gradient(145deg, #e0e0e3, #f0f0f3);
}

.student-page ::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #c0c0c3, #d0d0d3);
    border-radius: 10px;
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.5),
        inset -2px -2px 5px rgba(0, 0, 0, 0.1);
}

.student-page ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #ff8a55, #ff6e3b);
}

/* ========================================
   Mobile Navbar Fullscreen Animation
   ======================================== */
@media (max-width: 991.98px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        z-index: 1050;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: scale(0.95);
        transform-origin: top right;
        padding: 60px 20px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        right: 0;
        opacity: 1;
        transform: scale(1);
    }

    .navbar-collapse .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-collapse .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.35s; }

    .navbar-collapse .nav-link {
        font-size: 1.5rem;
        padding: 15px 0;
        color: var(--dark-grey);
    }

    .navbar-collapse .nav-link:hover {
        color: var(--primary-orange);
    }

    .navbar-collapse .btn {
        margin-top: 20px;
        font-size: 1.2rem;
        padding: 15px 40px;
    }

    .navbar-toggler {
        z-index: 1060;
        border: none;
        padding: 10px;
        position: relative;
        width: 44px;
        height: 44px;
        background: transparent;
        box-shadow: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hamburger icon default */
    .navbar-toggler .navbar-toggler-icon {
        transition: all 0.3s ease;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Hide hamburger lines when menu is open */
    .mobile-nav-open .navbar-toggler .navbar-toggler-icon {
        background-image: none !important;
        opacity: 0;
    }

    /* X close button when menu is open */
    .navbar-toggler::before,
    .navbar-toggler::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 3px;
        background: #333;
        left: 50%;
        top: 50%;
        opacity: 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-nav-open .navbar-toggler::before,
    .mobile-nav-open .navbar-toggler::after {
        opacity: 1;
    }

    .mobile-nav-open .navbar-toggler::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-nav-open .navbar-toggler::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: .1;
    visibility: visible;
    pointer-events: auto;
}

body.mobile-nav-open {
    overflow: hidden;
    height: 100vh;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 110, 59, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

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

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 110, 59, 0.5);
}

.scroll-to-top-btn:active {
    transform: translateY(-2px);
}

.scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Course Marquee Divider - Premium Design
   ======================================== */
.course-marquee-divider {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 25px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.course-marquee-divider::before,
.course-marquee-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.course-marquee-divider::before {
    left: 0;
    background: linear-gradient(to right, #1a1a2e 0%, transparent 100%);
}

.course-marquee-divider::after {
    right: 0;
    background: linear-gradient(to left, #0f0f23 0%, transparent 100%);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

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

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    white-space: nowrap;
}

.marquee-item span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 25px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-item:hover span:not(.separator) {
    background: linear-gradient(135deg, #ff6e3b 0%, #ff8f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-item .separator {
    color: #ff6e3b;
    font-size: 0.8rem;
    opacity: 0.6;
    padding: 0;
    background: none;
    -webkit-text-fill-color: #ff6e3b;
}

/* ========================================
   Modern About Section
   ======================================== */
.about-section-modern {
    background: linear-gradient(180deg, #f0f0f3 0%, #e8e8eb 50%, #f0f0f3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 110, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 143, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-header .section-badge {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    border: none;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.08),
        -6px -6px 15px rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.about-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
}

.about-header .section-description {
    font-size: 1.15rem;
    color: #636e72;
    line-height: 1.8;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        10px 10px 30px rgba(0, 0, 0, 0.08),
        -10px -10px 30px rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        15px 15px 40px rgba(0, 0, 0, 0.12),
        -15px -15px 40px rgba(255, 255, 255, 1);
}

.stat-card-modern:hover .stat-glow {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6e3b, #ff8f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 2rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6e3b, #ff8f6b, #ff6e3b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Mission Statement */
.about-mission {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mission-content {
    background: linear-gradient(145deg, #ffffff, #f0f0f3);
    padding: 40px 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 
        12px 12px 35px rgba(0, 0, 0, 0.08),
        -12px -12px 35px rgba(255, 255, 255, 0.95),
        inset 2px 2px 5px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mission-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        5px 5px 15px rgba(255, 87, 34, 0.3),
        -3px -3px 10px rgba(255, 255, 255, 0.8);
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.mission-content p {
    font-size: 1.2rem;
    color: #2d3436;
    line-height: 1.8;
    margin: 0;
}

.mission-content strong {
    color: #ff6e3b;
    font-weight: 700;
}

/* Feature Cards Modern */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: linear-gradient(145deg, #ffffff, #e8e8eb);
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        10px 10px 30px rgba(0, 0, 0, 0.08),
        -10px -10px 30px rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 
        15px 15px 45px rgba(0, 0, 0, 0.12),
        -15px -15px 45px rgba(255, 255, 255, 1);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-modern:hover .feature-highlight {
    opacity: 1;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #ff7a45, #ff5722);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        5px 5px 15px rgba(255, 87, 34, 0.3),
        -3px -3px 10px rgba(255, 255, 255, 0.8),
        inset 2px 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.feature-icon-modern svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.feature-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

.feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6e3b, #ff8f6b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-stats-grid,
    .about-features-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section-modern {
        padding: 60px 0;
    }
    
    .about-stats-grid,
    .about-features-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card-modern {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .mission-content p {
        font-size: 1.05rem;
    }
    
    .feature-card-modern {
        padding: 30px 25px;
    }
    
    .course-marquee-divider {
        padding: 18px 0;
    }
    
    .marquee-item span {
        font-size: 0.95rem;
        padding: 0 18px;
        letter-spacing: 0.5px;
    }
    
    .marquee-wrapper {
        animation: marquee-scroll 20s linear infinite;
    }
}

@media (max-width: 576px) {
    .about-header .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   TWO-COLUMN ABOUT SECTION - DARK THEME
   ======================================== */

.about-section-modern {
    background: #16213e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: rgba(255, 110, 59, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.about-section-modern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(255, 143, 107, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

/* About Wrapper - Two Column Layout */
.about-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Left Side - Title */
.about-left {
    position: sticky;
    top: 100px;
}

.about-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: capitalize;
}

/* Right Side - Content */
.about-right {
    position: relative;
}

.about-content-box {
    color: #ffffff;
}

.about-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-headline .gradient-text {
    background: linear-gradient(135deg, #ff6e3b 0%, #ff8f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-headline .highlight-text {
    color: #ffffff;
    font-weight: 800;
}

.about-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Process Grid - 4 Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 110, 59, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 110, 59, 0.3);
}

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

.process-card:hover .process-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6e3b, #ff8f6b);
}

/* Icon Wrapper */
.process-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.process-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
}

.process-card:hover .process-icon svg {
    color: #ffffff;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.process-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 60px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        position: relative;
        top: 0;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-headline {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section-modern {
        padding: 60px 0;
    }
    
    .about-wrapper {
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .about-headline {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 35px 25px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-headline {
        font-size: 1.5rem;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .stat-number span {
        font-size: 1.5rem;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-modern svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   CONTACT MAP SECTION - LIGHT MODE
   ======================================== */

.contact-map-section {
    background: #f5f5f5;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

/* Left Side - Map with Content */
.contact-map-left {
    position: relative;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    padding: 80px;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(30, 30, 30, 0.85) 100%);
    pointer-events: none;
}

.map-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
    max-width: 500px;
}

.map-link-wrapper {
    margin-bottom: 60px;
}

.map-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.map-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.contact-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1;
    text-transform: capitalize;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-block h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.contact-info-block p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.contact-social-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Right Side - Feedback Form */
.contact-form-right {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.feedback-form-card {
    background: #2a2a2a;
    padding: 50px;
    border-radius: 0;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.feedback-form .form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    font-size: 1rem;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.file-upload-label:hover {
    color: #ffffff;
}

.file-upload-label svg {
    width: 18px;
    height: 18px;
}

.file-input {
    display: none;
}

.btn-submit-form {
    width: 100%;
    background: #ffffff;
    color: #2a2a2a;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.btn-submit-form:hover {
    background: transparent;
    color: #ffffff;
}

.btn-submit-form svg {
    width: 18px;
    height: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-map-left,
    .contact-form-right {
        padding: 60px;
    }
    
    .contact-info-wrapper {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-map-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-map-left {
        min-height: 80vh;
        padding: 60px 40px;
    }
    
    .contact-form-right {
        padding: 60px 40px;
    }
    
    .map-content {
        max-width: 100%;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-map-left {
        min-height: 70vh;
        padding: 40px 25px;
    }
    
    .contact-form-right {
        padding: 40px 25px;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .map-link-wrapper {
        margin-bottom: 40px;
    }
    
    .contact-info-wrapper {
        margin-bottom: 40px;
    }
    
    .feedback-form-card {
        padding: 35px 25px;
    }
    
    .contact-social-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
        font-size: 2rem;
    }
    
    .feedback-form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 0.75rem;
        margin-bottom: 30px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
