/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f3ec;
    color:#111111;
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

section{
    padding:90px 8%;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:3rem;
    margin-bottom:10px;
}

.section-header p{
    color:#555555;
    max-width:700px;
    margin:auto;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 3%;
    background:rgba(124,77,255,.15);
    backdrop-filter:blur(20px);
    z-index:1000;
    overflow:visible;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
    font-size:1rem;
    font-weight:800;
    color:#111111;
    flex-shrink:0;
    margin-right:12px;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:clamp(8px, 1.4vw, 20px);
    flex-wrap:nowrap;
    margin-left:auto;
    margin-right:0;
}

.nav-links a{
    color:#111111;
    font-size:clamp(.76rem, 1vw, .92rem);
    font-weight:500;
    white-space:nowrap;
    transition:.25s;
}

.nav-links a:hover{
    color:#9f7bff;
}

.hamburger{
    display:none;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:100px 8% 60px;

    background:
    radial-gradient(circle at top left,
    rgba(124,77,255,.35),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(180,140,255,.25),
    transparent 40%);
}

.hero-content{
    max-width:900px;
}

.badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(124,77,255,.15);

    border:1px solid rgba(124,77,255,.4);

    color:#111111;

    margin-bottom:25px;
}

.hero h1{
    font-size:5rem;
    line-height:1.05;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    color:#444444;
    max-width:750px;
    margin:auto;
}

.hero-buttons{
    margin-top:35px;

    display:flex;
    justify-content:center;
    gap:20px;
}

/* =========================
   BUTTONS
========================= */

.primary-btn,
.secondary-btn{

    display:inline-block;

    padding:16px 28px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.primary-btn{
    background:linear-gradient(
        135deg,
        #7c4dff,
        #a48aff
    );

    color:white;
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    border:1px solid #7c4dff;
    color:#7c4dff;
}

.secondary-btn:hover{
    background:#ffffff;
}

/* =========================
   STATS
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:0 8%;
    margin:50px 0 70px 0;
}

.stat-card{
    background:#ffffff;

    border-radius:20px;

    padding:30px;

    text-align:center;
}

.stat-card h2{
    color:#a48aff;
    font-size:2.5rem;
}

/* =========================
   ABOUT
========================= */

.about-wide{
    max-width:1100px;
    margin:auto;
}

.about-wide h3{
    font-size:2rem;
    margin-bottom:20px;
}

.about-wide p{
    color:#444444;
    margin-bottom:35px;
}

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

.achievement-box{
    background:#ffffff;

    border-radius:18px;

    padding:25px;
}

.achievement-box i{
    font-size:2rem;
    color:#a48aff;
    margin-bottom:15px;
}

.achievement-box h4{
    margin-bottom:10px;
}

/* =========================
   CURRICULUM
========================= */

.curriculum-accordion{
    max-width:1000px;
    margin:auto;
}

.curriculum-button{

    width:100%;

    text-align:left;

    border:none;

    cursor:pointer;

    font-size:1.15rem;

    font-weight:700;

    color:#111111;

    padding:24px;

    margin-top:15px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    transition:.3s;
}

.curriculum-button:hover{

    background:rgba(124,77,255,.25);

}

.curriculum-content{

    display:none;

    padding:25px;

    background:rgba(255,255,255,.03);

    border-radius:0 0 14px 14px;

    border-left:2px solid #7c4dff;

    border-right:2px solid #7c4dff;

    border-bottom:2px solid #7c4dff;
}

.curriculum-content ul{
    padding-left:25px;
}

.curriculum-content li{
    margin-bottom:12px;
    color:#333333;
}
/* =========================
   FEATURES
========================= */

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

.feature-card{
    background:#ffffff;

    padding:30px;

    border-radius:20px;
}

.feature-card i{
    font-size:2rem;
    color:#a48aff;
    margin-bottom:15px;
}

/* =========================
   TIMELINE
========================= */

.timeline{
    max-width:900px;
    margin:auto;
}

.timeline-item{
    padding:25px;

    margin-bottom:20px;

    border-left:4px solid #7c4dff;

    background:rgba(255,255,255,.04);
}

/* =========================
   PRICING
========================= */

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

.pricing-card{
    background:#ffffff;

    padding:30px;

    border-radius:20px;

    position:relative;
}

.featured{
    border:2px solid #9f7bff;
}

.popular-tag{
    position:absolute;

    top:-12px;
    right:20px;

    background:#9f7bff;

    color:black;

    padding:6px 12px;

    border-radius:999px;

    font-size:.8rem;
    font-weight:700;
}

.price{
    font-size:3rem;
    color:#a48aff;
    font-weight:800;
    margin:20px 0;
}

.price span{
    font-size:1rem;
    color:#ccc;
}

.pricing-card ul{
    padding-left:20px;
}

.payment-note{
    text-align:center;
    margin-top:30px;
    color:#444444;
}

/* =========================
   FREE TRIAL
========================= */

.trial-card{

    text-align:center;

    padding:60px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        rgba(124,77,255,.28),
        rgba(170,140,255,.12)
    );
}

.trial-card h2{
    margin-bottom:20px;
}

.trial-card p{
    margin-bottom:35px;
}

/* =========================
   SIGNUP
========================= */

.signup-box{
    text-align:center;
}

/* =========================
   CONTACT
========================= */

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

.contact-card{
    background:#ffffff;

    border-radius:20px;

    padding:30px;

    text-align:center;
}

.contact-card i{
    font-size:2rem;
    color:#a48aff;
    margin-bottom:15px;
}

.contact-buttons{
    text-align:center;
    margin-top:35px;
}

.contact-buttons a{
    margin:10px;
}

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

footer{
    background:rgba(124,77,255,.15);
    padding:60px 8%;
    text-align:center;
}

.footer-links{
    margin:25px 0;

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#111111;
}

.footer-social{
    margin-bottom:20px;
}

.footer-social a{
    color:#a48aff;
    font-size:1.4rem;
    margin:0 10px;
}

.copyright{
    color:#8f8f8f;
}

/* =========================
   NAVBAR MOBILE SWITCH
   (own breakpoint, higher than the
   rest of the mobile styles below,
   so the 6-link row only ever shows
   once there's plenty of room and
   never gets clipped)
========================= */

@media(max-width:1150px){

.nav-links{

    display:none;

}

.hamburger{

    display:flex;

    flex-direction:column;

    gap:5px;

}

}

/* =========================
   MOBILE
========================= */

@media(max-width:950px){

.hero h1{

    font-size:3rem;

}

.hero-buttons{

    flex-direction:column;

}

.stats,
.achievement-grid,
.feature-grid,
.pricing-grid,
.contact-container{

    grid-template-columns:1fr;

}

.section-header h2{

    font-size:2.2rem;

}

}
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.active-link {
    color: #a48aff !important;
}

.mobile-active {

    display:flex !important;

    flex-direction:column;

    position:absolute;

    top:75px;

    right:15px;

    width:220px;

    padding:20px;

    border-radius:15px;

    background:rgba(10,10,20,.98);

    box-shadow:0 10px 30px rgba(0,0,0,.4);

    gap:15px;

    z-index:2000;
}
.curriculum-content.open{

    display:block;

    animation:fadeIn .3s ease;
}

@keyframes fadeIn{

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

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

}
.curriculum-content.open{
    display:block;
}
.curriculum-philosophy,
.placement-box{

    max-width:1000px;

    margin:0 auto 30px auto;

    padding:30px;

    background:#ffffff;

    border-radius:20px;

}

.curriculum-philosophy h3,
.placement-box h3{

    color:#a48aff;

    margin-bottom:15px;

}

.curriculum-philosophy ul,
.placement-box ul{

    padding-left:25px;

    margin-top:15px;

}

.curriculum-philosophy li,
.placement-box li{

    margin-bottom:10px;

}
/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.testimonial-card{

    background:
    rgba(255,255,255,.05);

    padding:30px;

    border-radius:20px;

    border:1px solid
    rgba(255,255,255,.06);

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-5px);

    border-color:#7c4dff;

}

.testimonial-card p{

    color:#444444;

    margin-bottom:20px;

    font-style:italic;

}

.testimonial-card h4{

    color:#a48aff;

    font-weight:700;

}
.curriculum-layout{

    display:flex;

    gap:40px;

    align-items:flex-start;

}

.curriculum-topics{

    flex:1;

}

.curriculum-image{

    width:260px;

    border-radius:16px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.35);

}

.curriculum-image img{

    width:100%;

    display:block;

    border-radius:16px;

}

@media(max-width:900px){

    .curriculum-layout{

        flex-direction:column;

    }

    .curriculum-image{

        width:100%;

        max-width:320px;

        margin:auto;

    }

}
/* =========================
   SCHEDULE SECTION
   Add this to the bottom of style.css
========================= */

.schedule-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.schedule-label {
    font-size: 1rem;
    font-weight: 700;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-label i {
    color: #a48aff;
}

.schedule-dropdown {
    width: 100%;
    max-width: 480px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(124, 77, 255, .35);
    background: #ffffff;
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c4dff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    transition: border-color .25s, box-shadow .25s;
}

.schedule-dropdown:focus {
    outline: none;
    border-color: #7c4dff;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, .15);
}

/* Day cards grid */
.schedule-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.schedule-day-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    border-top: 4px solid #7c4dff;
    animation: fadeIn .35s ease;
}

.schedule-day-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #7c4dff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-day-card h4 i {
    font-size: 1rem;
    color: #a48aff;
}

.schedule-time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(124, 77, 255, .06);
    margin-bottom: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: #333333;
}

.schedule-time-slot i {
    color: #a48aff;
    font-size: .85rem;
    flex-shrink: 0;
}

.schedule-level-badge {
    margin-left: auto;
    background: rgba(124, 77, 255, .15);
    color: #7c4dff;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Placeholder state */
.schedule-placeholder {
    text-align: center;
    padding: 55px 20px;
    color: #aaaaaa;
}

.schedule-placeholder i {
    font-size: 3rem;
    color: #d0c0ff;
    display: block;
    margin-bottom: 16px;
}

.schedule-placeholder p {
    font-size: 1rem;
    color: #888888;
}

/* Info note */
.schedule-note {
    text-align: center;
    color: #666666;
    font-size: .9rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.schedule-note i {
    color: #a48aff;
}

@media (max-width: 950px) {
    .schedule-days-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PRICING REDESIGN
========================= */

.pricing-hero-card {
    max-width: 700px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    text-align: center;
    border: 2px solid rgba(124, 77, 255, .25);
    box-shadow: 0 10px 40px rgba(124, 77, 255, .08);
}

.pricing-badge {
    display: inline-block;
    background: rgba(124, 77, 255, .12);
    border: 1px solid rgba(124, 77, 255, .35);
    color: #7c4dff;
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-hero-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111111;
}

.pricing-desc {
    color: #555555;
    max-width: 520px;
    margin: 0 auto 32px auto;
    line-height: 1.7;
}

.pricing-features-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 77, 255, .07);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .9rem;
    font-weight: 600;
    color: #333333;
}

.pricing-feature i {
    color: #a48aff;
    font-size: .95rem;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-period {
    font-size: clamp(1.4rem, 6vw, 2.8rem);
    font-weight: 900;
    color: #a48aff;
    line-height: 1.15;
    white-space: nowrap;
}

.price-sub-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price-original {
    font-size: 1.4rem;
    color: #bbbbbb;
    font-weight: 700;
    text-decoration: line-through;
    white-space: nowrap;
}

.price-discounted {
    font-size: 1rem;
    font-weight: 600;
    color: #999999;
    white-space: nowrap;
}

.pricing-savings {
    color: #7c4dff;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 32px;
}

@media (max-width: 950px) {
    .pricing-hero-card {
        padding: 36px 24px;
    }
}
