*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #050d1a;
    --teal: #00c9a7;
    --teal2: #00e5c0;
    --gold: #f5c842;
    --white: #f0f4ff;
    --muted: #8899bb;
    --border: rgba(0, 201, 167, 0.18);
    --border2: rgba(0, 201, 167, 0.08);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}



/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 60px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 50%, #0d1b3a 100%);
}

/* Advanced Animated Background */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: -5%;
    right: -5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #4a90e2 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

/* Particle Effect */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #ffffff;
    min-height: 250px;
}

.hero-title .normal {
    background: linear-gradient(135deg, #ffffff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal2));
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--teal);
    animation: blink 0.8s infinite;
    margin-left: 4px;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: var(--navy);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 201, 167, 0.3);
    border: none;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0, 201, 167, 0.5);
}

.btn-secondary {
    position: relative;
    background: transparent;
    color: var(--white);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border-radius: 50px;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--navy);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.stat-item {
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--teal), var(--teal2));
    border-radius: 2px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-weight: 400;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 1.2px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* Advanced Slider */
.hero-card-center {
    position: relative;
    z-index: 2;
}

.big-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    bottom: 70px;
}

.big-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slider Controls */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid var(--border);
    font-size: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover,
.next:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border-color: var(--teal);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--teal);
    width: 40px;
    border-radius: 6px;
    border-color: var(--teal);
}

/* Progress Bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal2));
    width: 0;
    z-index: 10;
    animation: slideProgress 5s linear infinite;
}

@keyframes slideProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 5%;
    }

    .big-slider {
        height: 400px;
    }

    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 5%;
    }

    .big-slider {
        height: 300px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .prev,
    .next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .big-slider {
        height: 250px;
        border-radius: 12px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}

/* SECTION BASE */
section {
    padding: 0px 3%;
    position: relative;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
}

/* PROGRAMS */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.prog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: border-color 0.4s, transform 0.4s;
}

.prog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.prog-card:hover {
    border-color: rgba(0, 201, 167, 0.5);
    transform: translateY(-6px);
}

.prog-card:hover::before {
    opacity: 1;
}

.prog-icon {
    width: 58px;
    height: 58px;
    background: rgba(0, 201, 167, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: background 0.4s;
}

.prog-card:hover .prog-icon {
    background: rgba(0, 201, 167, 0.2);
}

.prog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.prog-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.prog-meta {
    display: flex;
    gap: 16px;
}

.prog-badge {
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 201, 167, 0.1);
    color: var(--teal);
    border: 1px solid var(--border);
    letter-spacing: 0.5px;
}

/* FEATURES / WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: rgba(0, 201, 167, 0.25);
    min-width: 40px;
    line-height: 1;
}

.section-tag {
    margin-top: 22px;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.why-visual {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.why-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 201, 167, 0.06), transparent 60%);
}

.acc-rate {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--teal);
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 201, 167, 0.4);
}

.acc-label {
    color: var(--muted);
    margin-bottom: 36px;
    font-size: 0.9rem;
}

.mini-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mini-bar-label {
    font-size: 0.8rem;
    color: var(--muted);
    min-width: 110px;
}

.mini-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    width: 0;
}

.mini-bar-pct {
    font-size: 0.78rem;
    color: var(--teal);
    min-width: 34px;
    text-align: right;
}

/* TESTIMONIALS */
.testimonials {
    background: rgba(0, 201, 167, 0.03);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.testi-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--teal);
    opacity: 0.25;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 16px;
    right: 24px;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--teal);
    margin-top: 2px;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* ADMISSION */
.admission-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 20px;
}

.admission-wrap::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.08), transparent 60%);
    border-radius: 50%;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 201, 167, 0.1);
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--teal);
    flex-shrink: 0;
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.92rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    cursor: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.04);
}

.form-group select option {
    background: var(--card-bg);
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.4);
}

/* COUNTERS */
.counters-section {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.07), rgba(245, 200, 66, 0.04));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 10px;
    margin-bottom: 10px;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item {
    text-align: center;
}

.counter-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--teal);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 201, 167, 0.3);
}

.counter-label {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}



/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.mobile-menu a:hover {
    color: var(--teal);
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: none;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .hero-visual {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-wrap {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media(max-width:580px) {
    section {
        padding: 70px 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

