﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4f7fc;
    font-family: 'Segoe UI',sans-serif;
}

/*====================================
                HERO SECTION
        ====================================*/

.admission-hero {
    position: relative;
    background: linear-gradient(rgba(5,25,55,0.78),rgba(5,25,55,0.78)), url('images/admission-banner.jpg') center center/cover no-repeat;
    padding: 140px 0 120px;
    overflow: hidden;
}

    .admission-hero:before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

    .admission-hero:after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
        bottom: -150px;
        left: -100px;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    max-width: 850px;
    margin: auto;
    font-size: 19px;
    line-height: 2;
    color: #f3f3f3;
}

.hero-btns {
    margin-top: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    margin: 8px;
}

.hero-btn-primary {
    background: #ff9800;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255,152,0,0.35);
}

    .hero-btn-primary:hover {
        background: #fff;
        color: #0d47a1;
        text-decoration: none;
        transform: translateY(-3px);
    }

.hero-btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

    .hero-btn-outline:hover {
        background: #fff;
        color: #0d47a1;
        text-decoration: none;
    }

/*====================================
                SECTION TITLE
        ====================================*/

.section-gap {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

    .section-title span {
        color: #ff9800;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 48px;
        color: #0d47a1;
        font-weight: 800;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .section-title p {
        max-width: 760px;
        margin: auto;
        color: #666;
        line-height: 2;
        font-size: 17px;
    }

/*====================================
                CARDS
        ====================================*/

.admission-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    margin-bottom: 45px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    border: 1px solid #edf2fa;
}

    .admission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 55px rgba(0,0,0,0.12);
    }

    .admission-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg,#0d47a1,#42a5f5,#ff9800);
    }

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.card-icon {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    background: linear-gradient(135deg,#0d47a1,#1976d2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    margin-right: 22px;
    box-shadow: 0 10px 30px rgba(13,71,161,0.25);
}

.card-header-text h3 {
    font-size: 34px;
    color: #0d47a1;
    margin-bottom: 6px;
    font-weight: 800;
}

.card-header-text p {
    margin: 0;
    color: #777;
    font-size: 15px;
}

.admission-card p {
    color: #555;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
}

.highlight {
    color: #e65100;
    font-weight: 700;
}

/*====================================
                LIST DESIGN
        ====================================*/

.styled-list {
    margin-top: 25px;
    padding-left: 0;
}

    .styled-list li {
        position: relative;
        list-style: none;
        padding: 18px 20px 18px 70px;
        margin-bottom: 18px;
        background: #f8fbff;
        border-radius: 15px;
        border: 1px solid #e5eefb;
        color: #444;
        line-height: 1.8;
        transition: 0.3s;
    }

        .styled-list li:hover {
            background: #eef5ff;
            transform: translateX(5px);
        }

        .styled-list li:before {
            content: '✓';
            position: absolute;
            left: 20px;
            top: 16px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg,#0d47a1,#42a5f5);
            color: #fff;
            text-align: center;
            line-height: 34px;
            font-weight: bold;
            font-size: 15px;
        }

/*====================================
                INFO BOX
        ====================================*/

.info-box {
    margin-top: 30px;
    background: linear-gradient(135deg,#fff8ef,#fffdf8);
    border-left: 6px solid #ff9800;
    padding: 28px;
    border-radius: 18px;
}

    .info-box h4 {
        color: #0d47a1;
        font-size: 24px;
        margin-bottom: 18px;
        font-weight: 700;
    }

/*====================================
                STREAM CARDS
        ====================================*/

.stream-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.stream-card {
    flex: 1;
    min-width: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    transition: 0.4s;
}

    .stream-card:hover {
        transform: translateY(-8px);
    }

    .stream-card:before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(255,255,255,0.07);
        border-radius: 50%;
        top: -70px;
        right: -70px;
    }

    .stream-card h4 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 12px;
        position: relative;
        z-index: 2;
    }

    .stream-card p {
        color: #f1f1f1;
        text-align: center;
        position: relative;
        z-index: 2;
        margin: 0;
    }

/*====================================
                RESPONSIVE
        ====================================*/

@media(max-width:768px) {

    .admission-hero {
        padding: 100px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .admission-card {
        padding: 30px;
    }

    .card-header {
        display: block;
    }

    .card-icon {
        margin-bottom: 18px;
    }

    .card-header-text h3 {
        font-size: 28px;
    }
}
