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

.counselling-hero{

    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:100px 8%;

    background:linear-gradient(135deg,#1C2526,#263238);

}

.counselling-hero .container{

    max-width:1000px;

    margin:auto;

}

/*-----------------------------*/

.counselling-hero .hero-tag{

    display:inline-block;

    padding:10px 24px;

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

    border:1px solid rgba(255,213,79,.35);

    border-radius:50px;

    color:#FFD54F;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:30px;

}

/*-----------------------------*/

.counselling-hero h1{

    font-size:68px;

    color:#ffffff;

    margin-bottom:25px;

    line-height:1.2;

}

.counselling-hero p{

    max-width:820px;

    margin:0 auto;

    color:#CFD8DC;

    font-size:22px;

    line-height:1.8;

}

/*-----------------------------*/

.hero-stats{

    display:grid;

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

    gap:25px;

    margin:60px 0;

}

.hero-stats div{

    background:#263238;

    padding:28px;

    border-radius:18px;

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

    transition:.35s;

}

.hero-stats div:hover{

    transform:translateY(-8px);

    border-color:#FFD54F;

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

}

.hero-stats h2{

    color:#FFD54F;

    font-size:42px;

    margin-bottom:10px;

}

.hero-stats span{

    color:#CFD8DC;

    font-size:17px;

}

/*-----------------------------*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    display:inline-block;

    padding:18px 38px;

    background:#FFD54F;

    color:#1C2526;

    text-decoration:none;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    background:#FFC107;

    transform:translateY(-4px);

}

.secondary-btn{

    display:inline-block;

    padding:18px 38px;

    border:2px solid #FFD54F;

    color:#FFD54F;

    text-decoration:none;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.secondary-btn:hover{

    background:#FFD54F;

    color:#1C2526;

    transform:translateY(-4px);

}
/*=====================================
    LATEST COUNSELLING UPDATES
======================================*/

.updates-section{

    padding:120px 8%;

    background:#202A2D;

}

.updates-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.update-card{

    background:#263238;

    padding:40px;

    border-radius:20px;

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

    transition:.35s;

    position:relative;

}

.update-card:hover{

    transform:translateY(-10px);

    border-color:#FFD54F;

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

}

.update-icon{

    font-size:48px;

    margin-bottom:20px;

}

.update-badge{

    display:inline-block;

    background:#FFD54F;

    color:#1C2526;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.update-card h3{

    color:#ffffff;

    font-size:30px;

    margin-bottom:18px;

}

.update-card p{

    color:#CFD8DC;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

}

.update-card a{

    color:#FFD54F;

    text-decoration:none;

    font-weight:700;

    font-size:18px;

    transition:.3s;

}

.update-card a:hover{

    letter-spacing:1px;

}
/*=====================================
        IMPORTANT DOCUMENTS
======================================*/

.documents-section{

    padding:120px 8%;

    background:#1C2526;

}

.documents-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.document-card{

    background:#263238;

    padding:40px;

    border-radius:20px;

    text-align:center;

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

    transition:.35s;

}

.document-card:hover{

    transform:translateY(-10px);

    border-color:#FFD54F;

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

}

.document-icon{

    font-size:55px;

    margin-bottom:25px;

}

.document-card h3{

    color:#FFD54F;

    font-size:28px;

    margin-bottom:18px;

}

.document-card p{

    color:#CFD8DC;

    line-height:1.8;

    font-size:17px;

    margin-bottom:30px;

}

.download-btn{

    display:inline-block;

    padding:14px 30px;

    background:#FFD54F;

    color:#1C2526;

    border-radius:10px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.download-btn:hover{

    background:#FFC107;

    transform:translateY(-3px);

}
/*=====================================
        COUNSELLING VIDEOS
======================================*/

.videos-section{

    padding:120px 8%;

    background:#1C2526;

}

.videos-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.video-card{

    background:#263238;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-10px);

    border-color:#FFD54F;

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

}

.video-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.video-content{

    padding:30px;

}

.video-tag{

    display:inline-block;

    background:#FFD54F;

    color:#1C2526;

    padding:6px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.video-content h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:15px;

}

.video-content p{

    color:#CFD8DC;

    line-height:1.8;

    margin-bottom:25px;

}

.video-content a{

    color:#FFD54F;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.video-content a:hover{

    letter-spacing:1px;

}

.playlist-btn{

    text-align:center;

    margin-top:60px;

}