/*====================================================
    ROOT VARIABLES
====================================================*/

:root{

    --primary:#065f46;
    --primary-dark:#033b30;
    --secondary:#0b3b73;

    --accent:#facc15;
    --accent-light:#fde047;

    --success:#22c55e;
    --danger:#ef4444;

    --white:#ffffff;
    --text-light:#d1fae5;
    --text-muted:#d9f99d;

    --glass-bg:rgba(255,255,255,.14);
    --glass-border:rgba(255,255,255,.20);

    --shadow-sm:0 8px 20px rgba(0,0,0,.08);
    --shadow-lg:0 12px 30px rgba(0,0,0,.20);

    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:28px;
    --radius-pill:999px;

    --transition:.35s ease;

}


/*====================================================
    RESET
====================================================*/

*,
*::before,
*::after{

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    margin:0;

    font-family:
    "Anek Bangla",
    "Hind Siliguri",
    sans-serif;

}


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

.pro-admission-hero{

    position:relative;

    overflow:hidden;

    min-height:720px;

    padding:20px 0;

    color:var(--white);

}


.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(

        circle at top right,

        rgba(255,255,255,.16),

        transparent 70%

    );

}


.pro-content{

    position:relative;

    z-index:5;

}


/*====================================================
    BADGE
====================================================*/

.pro-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 24px;

    border-radius:var(--radius-pill);

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

    border:1px solid var(--glass-border);

    backdrop-filter:blur(12px);

    font-weight:700;

}


.badge-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--success);

    animation:pulse 1.5s infinite;

}


.live-badge{

    padding:5px 12px;

    border-radius:30px;

    background:#dc2626;

    color:var(--white);

    font-size:12px;

    font-weight:700;

}


/*====================================================
    BADGE ANIMATION
====================================================*/

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(34,197,94,.8);

    }

    100%{

        box-shadow:0 0 0 15px transparent;

    }

}


/*====================================================
    GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@500;600;700&display=swap');


/*====================================================
    TITLE
====================================================*/

.pro-title{

    font-family:'Hind Siliguri',sans-serif;

    margin-top:16px;

    font-size:clamp(2.3rem,5vw,4.4rem);

    font-weight:800;

    line-height:1.15;

    letter-spacing:1.5px;

    text-align:center;

    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #ffd700 18%,
        #ef133b 36%,
        #ffffff 50%,
        #ef133b 64%,
        #ffd700 82%,
        #ffffff 100%
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    filter:
        drop-shadow(0 0 8px rgba(255,255,255,.25))
        drop-shadow(0 0 15px rgba(239,19,59,.35))
        drop-shadow(0 0 25px rgba(255,215,0,.30));

    animation:
        shine 5s linear infinite,
        titleMove 3s ease-in-out infinite;

}


/*====================================================
    SUBTITLE
====================================================*/

.pro-subtitle{

    margin:16px auto 0;

    max-width:680px;

    font-family:'Hind Siliguri',sans-serif;

    font-size:1.18rem;

    line-height:1.9;

    font-weight:500;

    text-align:center;

    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #fff8dc 25%,
        #ffd700 50%,
        #fff8dc 75%,
        #ffffff 100%
    );

    background-size:250% auto;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

    filter:drop-shadow(0 0 8px rgba(255,215,0,.25));

    animation:
        shine 5s linear infinite,
        fadeUp 3s ease-in-out infinite;

}




/*====================================================
    ANIMATIONS
====================================================*/

@keyframes shine{

    from{

        background-position:-200% center;

    }

    to{

        background-position:200% center;

    }

}

@keyframes titleMove{

    0%,100%{

        transform:translateY(0) scale(1);

    }

    50%{

        transform:translateY(-6px) scale(1.04);

    }

}

@keyframes fadeUp{

    0%,100%{

        opacity:.85;

        transform:translateY(5px);

    }

    50%{

        opacity:1;

        transform:translateY(0);

    }

}


/*====================================================
    DECORATIVE LINE
====================================================*/

.pro-title::after{

    content:"";

    display:block;

    width:120px;

    height:4px;

    margin:18px auto 0;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #ffd700,
        #ef133b,
        #ffd700,
        transparent
    );

    background-size:300% auto;

    animation:shine 3s linear infinite;

}

/*====================================================
    TABLET
====================================================*/

@media (max-width:991px){

    .pro-admission-hero{

        min-height:auto;

        padding:55px 0;

    }

    .pro-title{

        font-size:2.4rem;

    }

}


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

@media (max-width:576px){

    .pro-admission-hero{

        padding:40px 0;

    }

    .pro-badge{

        padding:10px 18px;

        font-size:14px;

    }

    .live-badge{

        padding:4px 10px;

        font-size:11px;

    }

    .pro-title{

        font-size:1.9rem;

        line-height:1.35;

    }

    .pro-subtitle{

        font-size:1rem;

        line-height:1.7;

    }

}


/*====================================================
    PERFORMANCE
====================================================*/

.pro-admission-hero *,
.pro-title,
.pro-subtitle{

    will-change:auto;

}

/*====================================================
    DESCRIPTION CARD
====================================================*/

.description-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:12px;

    height:100%;

    padding:14px;

    border-radius:var(--radius-md);

    background:linear-gradient(
        135deg,
        #ffffff,
        #74aa9f
    );

    border:1px solid rgba(0,0,0,.08);

    box-shadow:var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

}

.description-card:hover{

    transform:translateY(-5px);

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

}


.description-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    min-width:42px;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:var(--white);

    font-size:20px;

}


.description-content{

    flex:1;

    color:#334155;

    font-size:15px;

    line-height:1.6;

    font-weight:500;

    word-break:break-word;

}


/*====================================================
    DATE CARD
====================================================*/

.pro-date-wrapper{

    display:grid;

    grid-template-columns:
    repeat(2,minmax(0,1fr));

    gap:18px;

    margin-bottom:28px;

}


.pro-date-card{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:var(--radius-md);

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(14px);

    transition:
        transform var(--transition);

}


.pro-date-card:hover{

    transform:translateY(-3px);

}


.date-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:50px;

    height:50px;

    min-width:50px;

    border-radius:50%;

    background:#ffffff22;

    color:var(--success);

    font-size:22px;

}


.pro-date-card.danger .date-icon{

    color:var(--danger);

}


.pro-date-card small{

    display:block;

    opacity:.85;

    font-size:13px;

}


.pro-date-card strong{

    display:block;

    margin-top:5px;

    font-size:18px;

    font-weight:700;

}


/*====================================================
    COUNTDOWN
====================================================*/

.pro-countdown{

    margin-top:28px;

    padding:24px;

    border-radius:22px;

    background:rgba(0,0,0,.20);

    backdrop-filter:blur(14px);

    box-shadow:var(--shadow-sm);

}


.countdown-title{

    text-align:center;

    margin-bottom:22px;

    font-size:22px;

    font-weight:700;

}


.countdown-title i{

    color:var(--accent);

    margin-right:6px;

}


.countdown-time{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

}


.countdown-time span{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:90px;

    padding:15px;

    border-radius:16px;

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

    transition:
        transform var(--transition);

}


.countdown-time span:hover{

    transform:translateY(-3px);

}


.countdown-time span{
    font-size:30px;
    font-weight:700;
}


.countdown-time small{

    margin-top:8px;

    font-size:12px;

    opacity:.9;

}


/*====================================================
    TABLET
====================================================*/

@media (max-width:768px){

    .pro-date-wrapper{

        grid-template-columns:1fr;

    }

    .countdown-time{

        grid-template-columns:
        repeat(2,1fr);

    }

    .description-content{

        font-size:14px;

    }
    
    .pro-date-wrapper{

        padding:15px 0;

    }

}


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

@media (max-width:576px){

    .description-card{

        padding:12px;

        gap:10px;

    }

    .description-icon{

        width:38px;

        height:38px;

        min-width:38px;

        font-size:18px;

    }
    
    .pro-date-wrapper{

        padding:15px 0;

    }

    .pro-date-card{

        padding:15px;

    }

    .date-icon{

        width:44px;

        height:44px;

        min-width:44px;

        font-size:20px;

    }

    .pro-countdown{

        padding:18px;

    }

    .countdown-title{

        font-size:18px;

    }

    .countdown-time{

        gap:10px;

    }

    .countdown-time span{

        min-height:75px;

        padding:12px;

    }

    .countdown-time span{
    font-size:30px;
    font-weight:700;
}

    .countdown-time small{

        font-size:11px;

    }

}


/*====================================================
    PERFORMANCE
====================================================*/

.description-card,
.pro-date-card,
.countdown-time span{

    will-change:transform;

}

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

.pro-actions{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:30px;

}

.apply-btn,
.notice-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex:1;

    min-height:56px;

    padding:15px 28px;

    border:none;

    border-radius:var(--radius-pill);

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);

}

.apply-btn{

    color:#111;

    background:
    linear-gradient(
        135deg,
        var(--accent),
        var(--accent-light)
    );

    box-shadow:
    0 10px 25px rgba(250,204,21,.30);

}

.notice-btn{

    color:var(--white);

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(14px);

}

@media (hover:hover){

    .apply-btn:hover,
    .notice-btn:hover{

        transform:translateY(-4px);

    }

}


/*====================================================
    IMAGE AREA
====================================================*/

.pro-image-area{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}

.image-glow{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(250,204,21,.35),
        transparent 70%
    );

    filter:blur(45px);

}

.pro-image-card{

    position:relative;

    z-index:2;

    padding:15px;

    border-radius:var(--radius-lg);

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(14px);

}

.pro-image{

    display:block;

    width:100%;

    max-width:480px;

    height:auto;

    object-fit:cover;

    border-radius:20px;

    transition:transform var(--transition);

}

@media (hover:hover){

    .pro-image:hover{

        transform:scale(1.03);

    }

}


/*====================================================
    PLACEHOLDER
====================================================*/

.image-placeholder{

    width:420px;

    max-width:100%;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:var(--white);

    padding:30px;

}


/*====================================================
    FLOATING CARDS
====================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:var(--radius-md);

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(14px);

    box-shadow:var(--shadow-lg);

    z-index:10;

}

.floating-card i{

    color:var(--accent);

    font-size:22px;

}

.card-one{

    left:-10px;

    bottom:90px;

}

.card-two{

    right:-10px;

    top:70px;

}

.card-three{

    right:20px;

    bottom:25px;

}


/*====================================================
    TABLET
====================================================*/

@media (max-width:991px){

    .pro-image-area{

        margin-top:40px;

        min-height:auto;

    }

    .floating-card{

        display:none;

    }

}


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

@media (max-width:576px){

    .pro-actions{

        flex-direction:column;

    }

    .apply-btn,
    .notice-btn{

        width:100%;

    }

    .image-glow{

        width:260px;

        height:260px;

    }

    .pro-image-card{

        padding:10px;

    }

    .image-placeholder{

        min-height:260px;

        padding:20px;

    }

}


/*====================================================
    MARQUEE
====================================================*/

.pro-marquee{

    position: relative;

    overflow: hidden;

    width: 100%;

    padding: 14px 0;

    background: linear-gradient(
        90deg,
        #033b30,
        #065f46,
        #0b3b73,
        #065f46,
        #033b30
    );

    color: #fcdb3b;

    border-top: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 -2px 10px rgba(0,0,0,.12) inset,
        0 2px 10px rgba(0,0,0,.12) inset;

}


.pro-marquee-track{

    display: inline-block;

    white-space: nowrap;

    padding-left: 100%;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: .3px;

    animation: marqueeMove 65s linear infinite;

    will-change: transform;

}


.pro-marquee:hover .pro-marquee-track{

    animation-play-state: paused;

}


/*====================================================
    ANIMATION
====================================================*/

@keyframes marqueeMove{

    from{

        transform: translateX(0);

    }

    to{

        transform: translateX(-100%);

    }

}


/*====================================================
    TABLET
====================================================*/

@media (max-width:768px){

    .pro-marquee{

        padding:12px 0;

    }

    .pro-marquee-track{

        font-size:15px;

        animation-duration:65s;

    }

}


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

@media (max-width:576px){

    .pro-marquee{

        padding:10px 0;

    }

    .pro-marquee-track{

        font-size:14px;

        font-weight:500;

        animation-duration:65s;

    }

}


/*====================================================
    REDUCED MOTION
====================================================*/

@media (prefers-reduced-motion:reduce){

    .pro-marquee-track{

        animation:none;

        transform:none;

        padding-left:0;

        white-space:normal;

        text-align:center;

        display:block;

    }

}

/*====================================================
    ACCESSIBILITY
====================================================*/

.apply-btn:focus-visible,
.notice-btn:focus-visible,
a:focus-visible{

    outline:3px solid var(--accent);

    outline-offset:3px;

}

::selection{

    background:var(--accent);

    color:#111;

}


/*====================================================
    PERFORMANCE
====================================================*/

.pro-image,
.description-card,
.pro-date-card,
.apply-btn,
.notice-btn{

    will-change: transform;

    backface-visibility: hidden;

    transform: translateZ(0);

}

/*====================================================
    IMAGES
====================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}


/*====================================================
    REDUCED MOTION
====================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}


/*====================================================
    PRINT
====================================================*/

@media print{

    .hero-overlay,
    .image-glow,
    .floating-card,
    .pro-marquee,
    .pro-actions{

        display:none !important;

    }

    .pro-admission-hero{

        background:#fff !important;

        color:#000 !important;

        padding:0;

    }

}