/*primary color*/
.bg-cream {
    background-color: #FFF2E1;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.blog-wrapper{
overflow:hidden;
}

.blog-slider{
display:flex;
gap:30px;
transition:.6s;
}
.short-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    border:1px solid #e5e5e5;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.short-btn:hover{
    background:#facc15;
    color:#fff;
}

#shortSlider{
    display:flex;
    gap:30px;
}

.short-card{
    flex:0 0 calc(25% - 23px);
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.short-card:hover{
    transform:translateY(-8px);
}

.short-card iframe{
    width:100%;
    height:420px;
    border:0;
}

.short-content{
    padding:18px;
}

.short-content h3{
    font-size:20px;
    font-weight:700;
}

.short-content p{
    color:#777;
    margin-top:5px;
}

@media(max-width:992px){

.short-card{
flex:0 0 calc(50% - 15px);
}

}

@media(max-width:768px){

.short-card{
flex:0 0 100%;
}

}

.blog-card{

min-width:calc(33.333% - 20px);
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
display:flex;
flex-direction:column;

}

.blog-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.blog-card img{

width:100%;
height:240px;
object-fit:cover;

}

.blog-content{

padding:28px;
display:flex;
flex-direction:column;
height:100%;

}

.blog-top{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;

}

.tag{

padding:6px 14px;
border-radius:30px;
font-size:13px;
font-weight:600;

}

.yellow{

background:#FEF3C7;
color:#D97706;

}

.blue{

background:#DBEAFE;
color:#2563EB;

}

.green{

background:#DCFCE7;
color:#16A34A;

}

.red{

background:#FEE2E2;
color:#DC2626;

}

.date{

color:#999;
font-size:14px;

}

.blog-content h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.blog-content p{

color:#666;
line-height:28px;
margin-bottom:30px;
flex:1;

}

.blog-bottom{

display:flex;
justify-content:flex-end;

}

.read-btn{

background:#facc15;
padding:12px 24px;
border-radius:50px;
font-weight:600;
color:#000;
text-decoration:none;
transition:.3s;

}

.read-btn:hover{

background:#eab308;
color:#fff;

}

.slider-btn{

width:55px;
height:55px;
border-radius:50%;
background:#fff;
border:none;
font-size:24px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;

}

.slider-btn:hover{

background:#facc15;
color:#fff;

}

@media(max-width:991px){

.blog-card{

min-width:calc(50% - 15px);

}

}

@media(max-width:768px){

.blog-card{

min-width:100%;

}

}

.filter-btn{
    padding:12px 28px;
    border:1px solid #E5E7EB;
    border-radius:999px;
    background:#fff;
    font-weight:600;
    transition:.3s;
}

.filter-btn:hover{
    background:#FACC15;
    color:#fff;
    border-color:#FACC15;
}

.filter-btn.active{
    background:#FACC15;
    color:#fff;
    border-color:#FACC15;
}

.topper-card{
    transition:.35s;
}

.topper-card:hover{
    transform:translateY(-8px);
}

.bg-yellow-500 {
    background-color: #F48C06;
}
.text-yellow-500 {
    color: #F48C06;
}
.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #2F327D;
}
.blog-card{
    flex:0 0 calc((100% - 64px)/3);
}

@media(max-width:1024px){

.blog-card{
    flex:0 0 calc((100% - 32px)/2);
}

}

@media(max-width:768px){

.blog-card{
    flex:0 0 100%;
}

}
/* Mobile only */
@media (max-width: 1023px) {

    /* Slider container */
    #girl > div {
        width: 100% !important;      /* Full width on mobile */
        margin-top: 2rem !important; /* Smaller top margin */
    }

    /* Slider images */
    #girl img {
        height: 320px !important;    /* Rectangular image */
        width: 100%;
        object-fit: cover;
    }

    /* Dots */
    #girl .absolute {
        bottom: 12px;
    }
}

/* .short-card{
    flex:0 0 calc((100% - 72px)/4);
} */

@media(max-width:1024px){

.short-card{

flex:0 0 calc((100% - 24px)/2);

}

}

@media(max-width:768px){

.short-card{

flex:0 0 80%;

}

}

.hero-slider{

    position:relative;
    height:620px;
    overflow:hidden;
    border-radius:35px;
    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.hero-slide{

    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:.8s;

}

.hero-slide.active{

    opacity:1;
    visibility:visible;

}

.hero-slide img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        transparent
    );

}

.caption{

    position:absolute;
    left:45px;
    bottom:45px;

    color:#fff;
    z-index:5;

    max-width:430px;

}

.caption span{

    display:inline-block;

    background:#facc15;

    color:#111;

    padding:8px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.caption h2{

    font-size:38px;
    font-weight:700;
    line-height:1.2;

}

.caption p{

    margin-top:15px;

    font-size:17px;

    line-height:1.8;

    opacity:.95;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.9);

    cursor:pointer;

    font-size:22px;

    transition:.3s;

    z-index:10;

}

.prev:hover,
.next:hover{

    background:#facc15;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.dots{

    position:absolute;

    bottom:20px;

    width:100%;

    display:flex;

    justify-content:center;

    gap:10px;

    z-index:10;

}

.dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#fff;

    opacity:.5;

    cursor:pointer;

    transition:.3s;

}

.dot.active{

    opacity:1;

    width:35px;

    border-radius:20px;

    background:#facc15;

}

@media(max-width:991px){

.hero-slider{

height:450px;

}

.caption{

left:25px;
bottom:30px;
right:25px;

}

.caption h2{

font-size:28px;

}

.caption p{

font-size:15px;

}

}

@media(max-width:768px){

.hero-slider{

height:350px;

}

.prev,
.next{

width:42px;
height:42px;

}

.caption h2{

font-size:22px;

}

}

/*=========================
        NAVBAR
==========================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    z-index:9999;

}

.container-header{

    max-width:1320px;

    margin:auto;

    padding:15px 25px;

    display:grid;

    grid-template-columns:220px 1fr 220px;

    align-items:center;

}

.logo img{

    height:70px;

}

/*=====================
        MENU
======================*/

.nav-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

}

.nav-links>a,
.dropdown button{

    text-decoration:none;

    color:#222;

    font-weight:600;

    font-size:16px;

    background:none;

    border:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:5px;

    transition:.3s;

}

.nav-links>a:hover,
.dropdown button:hover{

    color:#f5b400;

}

/*====================
      BUTTON
=====================*/

.nav-btn{

    display:flex;

    justify-content:flex-end;

}

.btn{

    background:#f5b400;

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn:hover{

    background:#111;

}
.dropdown{
    position:relative;
}

.dropdown button{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    width:290px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    padding:10px 0;
    z-index:1000;
}

.dropdown-menu>a,
.submenu>button{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 22px;
    color:#374151;
    text-decoration:none;
    background:none;
    border:none;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

.dropdown-menu>a:hover,
.submenu>button:hover{
    background:#FEF3C7;
    color:#F59E0B;
}

/* Submenu */

.submenu{
    position:relative;
}

.submenu-menu{
    position:absolute;
    left:100%;
    top:0;
    width:250px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    padding:10px 0;
}

.submenu-menu a{
    display:block;
    padding:13px 20px;
    color:#374151;
    text-decoration:none;
    transition:.3s;
}

.submenu-menu a:hover{
    background:#FEF3C7;
    color:#F59E0B;
}

/* Mobile */

@media(max-width:992px){

.dropdown-menu{
    position:static;
    width:100%;
    box-shadow:none;
    border-radius:0;
    padding-left:10px;
}

.submenu-menu{
    position:static;
    width:100%;
    box-shadow:none;
    padding-left:20px;
}

}

.branch-card{

background:white;
padding:35px;
border-radius:20px;
text-align:center;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.branch-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-8px);

}

.feature-box{

background:white;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.feature-box:hover{

transform:translateY(-10px);

}

.dept-card{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.dept-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-8px);

}


/*====================
 MOBILE BUTTON
=====================*/

.mobile-btn{

    display:none;

}

/*====================
MENU BUTTON
=====================*/

.menu-btn{

    display:none;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-btn svg{

    width:30px;
    margin-left: 130px;
    height:30px;

}

/*==========================
      MOBILE
==========================*/

@media(max-width:991px){

.container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 20px;

}

.logo img{

    height:60px;

}

.menu-btn{

    display:flex;

}

.nav-btn{

    display:none;

}

.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-top:1px solid #eee;

    padding:10px 0;

}

.nav-links.active{

    display:flex;

}

.nav-links>a{

    width:100%;

    padding:16px 25px;

    border-bottom:1px solid #f3f3f3;

}

.dropdown{

    width:100%;

}

.dropdown button{

    width:100%;

    justify-content:space-between;

    padding:16px 25px;

}

.dropdown-menu{

    position:relative;

    top:0;

    width:100%;

    box-shadow:none;

    border-radius:0;

    border-top:1px solid #eee;

}

.dropdown-menu a{

    padding:15px 40px;

    border-bottom:1px solid #f2f2f2;

}

.mobile-btn{

    display:block;

    margin:20px;

    width:calc(100% - 40px);

    text-align:center;

    background:#f5b400;

    color:#fff !important;

    padding:14px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

}
.activity-card{

background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
display:flex;
flex-direction:column;

}

.activity-card:hover{

transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.activity-card.active{

border:3px solid #facc15;

}

.activity-card img{

width:100%;
height:240px;
object-fit:cover;
transition:.5s;

}

.activity-card:hover img{

transform:scale(1.08);

}

.activity-content{

padding:28px;
display:flex;
flex-direction:column;
flex:1;

}

.activity-content span{

display:inline-block;
background:#FEF3C7;
color:#D97706;
padding:6px 14px;
border-radius:30px;
font-size:13px;
font-weight:600;
margin-bottom:15px;
width:fit-content;

}

.activity-content h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;
color:#111827;

}

.activity-content p{

color:#6B7280;
line-height:1.8;
flex:1;

}

.activity-content button{

margin-top:25px;
align-self:flex-end;
background:#facc15;
color:white;
padding:12px 24px;
border:none;
border-radius:30px;
font-weight:600;
cursor:pointer;
transition:.3s;

}

.activity-content button:hover{

background:#d97706;

}

.event-box{
    background:#fff;
    border-radius:28px;
    padding:40px;
    margin-bottom:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.event-box:hover{
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.event-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.event-date{
    display:inline-block;
    background:#F59E0B;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.event-date.blue{
    background:#2563EB;
}

.event-date.green{
    background:#16A34A;
}

.event-header h3{
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.event-subtitle{
    color:#6B7280;
    margin-top:8px;
}

.event-description{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:30px;
}

.event-btn{
    background:#F59E0B;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.event-btn:hover{
    background:#d97706;
}

.event-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.event-gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
}

.event-gallery img:hover{
    transform:translateY(-8px) scale(1.04);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

@media(max-width:992px){

.event-gallery{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.event-box{
padding:25px;
}

.event-gallery{
grid-template-columns:1fr;
}

.event-header h3{
font-size:24px;
}

}

.dept-box{

background:white;
padding:35px;
border-radius:20px;
text-align:center;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.dept-box:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}
.step-box{

background:#fff;
padding:35px;
text-align:center;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;

}

.step-box h3{

font-size:30px;
color:#F59E0B;
margin-bottom:15px;

}

.step-box:hover{

transform:translateY(-12px);

}
.benefit-card{

background:white;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.benefit-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;
color:#111827;

}

.benefit-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}

.branch-card{

background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.branch-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.syllabus-card{

background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.syllabus-card h3{

font-size:24px;
font-weight:700;
margin-bottom:20px;

}

.syllabus-card ul{

line-height:2;

}

.choose-card{

background:white;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.choose-card h3{

font-size:22px;
font-weight:700;
margin-bottom:15px;

}

.choose-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}
.trade-card{

background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
font-weight:700;
font-size:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.trade-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.module-card{

background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.module-card h3{

font-size:24px;
font-weight:700;
margin-bottom:20px;

}

.module-card ul{

line-height:2;

}
.step-card{

background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.step-card:hover{

transform:translateY(-10px);

}

.step-number{

width:60px;
height:60px;
background:#FBBF24;
color:#fff;
border-radius:50%;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
font-weight:bold;
margin-bottom:20px;

}
.feature-card{

background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.feature-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.feature-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.dept-card{

background:white;
padding:35px;
border-radius:25px;
text-align:center;
font-size:20px;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.dept-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}
.highlight-card{

background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.highlight-card h3{

font-size:26px;
font-weight:700;
margin-bottom:20px;

}

.highlight-card ul{

line-height:2;

}
.step-box{

background:white;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.step-box:hover{

transform:translateY(-10px);

}

.step-no{

width:65px;
height:65px;
background:#FBBF24;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
font-weight:bold;
margin:auto;
margin-bottom:20px;

}
.choose-card{

background:white;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.choose-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.choose-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}

.stream-card{

background:#fff;
padding:35px;
border-radius:24px;
font-weight:700;
text-align:center;
font-size:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.stream-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.prep-card{

background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
text-align:center;
transition:.35s;

}

.prep-card:hover{

transform:translateY(-10px);

}

.prep-card h3{

font-size:24px;
font-weight:700;
margin-bottom:18px;

}
.road-card{

background:#fff;
padding:35px;
text-align:center;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.road-no{

width:65px;
height:65px;
background:#FBBF24;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
font-size:28px;
font-weight:bold;
margin-bottom:20px;

}
.why-card{

background:white;
padding:35px;
text-align:center;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.why-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}

.why-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}
.post-card{

background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 20px 45px rgba(0,0,0,.08);
transition:.3s;

}

.post-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.timeline{

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;

}

.timeline-item{

flex:1;
text-align:center;

}

.circle{

width:70px;
height:70px;
background:#FBBF24;
border-radius:50%;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
margin:auto;
margin-bottom:20px;

}
.feature-box{

background:linear-gradient(135deg,#FBBF24,#F59E0B);
color:#fff;
padding:45px;
border-radius:25px;
text-align:center;
transition:.3s;

}

.feature-box:hover{

transform:scale(1.05);

}

.feature-box h3{

font-size:48px;
font-weight:bold;
margin-bottom:10px;

}
.program-card{

background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 20px 45px rgba(0,0,0,.08);
transition:.35s;

}

.program-card:hover{

background:#2563EB;
color:#fff;
transform:translateY(-10px);

}

.program-card h3{

font-size:32px;
font-weight:bold;
margin-bottom:15px;

}
.strategy-card{

background:#EEF4FF;
padding:40px;
border-radius:25px;
text-align:center;

}

.number{

font-size:45px;
font-weight:bold;
color:#2563EB;
margin-bottom:20px;

}
.uni-box{

background:white;
padding:35px;
border-radius:20px;
text-align:center;
font-weight:700;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;

}

.uni-box:hover{

background:#2563EB;
color:white;

}
.benefit-card{

background:linear-gradient(135deg,#ffffff,#F3F4F6);
padding:40px;
border-left:6px solid #2563EB;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;

}

.benefit-card:hover{

transform:translateX(10px);

}

.benefit-card h3{

font-size:28px;
font-weight:bold;
margin-bottom:15px;

}
.stream-card{

background:#fff;
padding:35px;
border-radius:24px;
font-weight:700;
text-align:center;
font-size:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.stream-card:hover{

background:#FBBF24;
color:#fff;
transform:translateY(-10px);

}
.prep-card{

background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
text-align:center;
transition:.35s;

}

.prep-card:hover{

transform:translateY(-10px);

}

.prep-card h3{

font-size:24px;
font-weight:700;
margin-bottom:18px;

}
.road-card{

background:#fff;
padding:35px;
text-align:center;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.road-no{

width:65px;
height:65px;
background:#FBBF24;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
font-size:28px;
font-weight:bold;
margin-bottom:20px;

}
.why-card{

background:white;
padding:35px;
text-align:center;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;

}

.why-card:hover{

background:#FBBF24;
color:white;
transform:translateY(-10px);

}

.why-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.ticker{
    display:flex;
    align-items:center;
    width:100%;
    height:45px;
    background:#f5b400;
    border:1px solid #f5b400;
    overflow:hidden;
    font-family:Arial,sans-serif;
}

.ticker-label{
    background:#ff6b00;
    color:#fff;
    padding:0 30px;
    height:100%;
    display:flex;
    align-items:center;
    font-weight:bold;
    font-size:18px;
    flex-shrink:0;
}

.ticker-wrap{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
    position:relative;
}

.ticker-text{
    display:inline-block;
    padding-left:100%;
    font-size:13px;
    font-weight:550;
    color:#fff;
    animation:ticker 60s linear infinite;
}

@keyframes ticker{
    from{
        transform:translateX(-100%);
    }
    to{
        transform:translateX(100%);
    }
}
/*==========================
SECTION
==========================*/

.gwa-announcement-section{

    padding:90px 20px;
    background:#f8fafc;

}

.gwa-container{

    max-width:900px;
    margin:auto;

    background:#ffffff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}


/*==========================
HEADING
==========================*/

.gwa-heading{

    padding:45px;

    text-align:center;

}

.gwa-badge{

    display:inline-block;

    background:#FFF4D8;

    color:#E6A100;

    padding:10px 24px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.gwa-heading h2{

    font-size:42px;

    margin:20px 0;

    color:#111827;

    font-weight:700;

}

.gwa-heading span{

    color:#f4b400;

}

.gwa-heading p{

    color:#6b7280;

    line-height:1.9;

    font-size:16px;

}


/*==========================
SCROLL BOX
==========================*/

.gwa-scroll-box{

    height:470px;

    overflow:hidden;

    position:relative;

    border-top:1px solid #ececec;

}


/* Fade Effect */

.gwa-scroll-box::before,
.gwa-scroll-box::after{

    content:"";

    position:absolute;

    left:0;

    width:100%;

    height:60px;

    z-index:10;

    pointer-events:none;

}

.gwa-scroll-box::before{

    top:0;

    background:linear-gradient(#fff,transparent);

}

.gwa-scroll-box::after{

    bottom:0;

    background:linear-gradient(transparent,#fff);

}


/*==========================
TRACK
==========================*/

.gwa-scroll-track{

    display:flex;

    flex-direction:column;

    animation:gwaMove 28s linear infinite;

}

.gwa-scroll-box:hover .gwa-scroll-track{

    animation-play-state:paused;

}


/*==========================
CARD
==========================*/

.gwa-card{

    padding:28px;

    border-left:5px solid #f4b400;

    border-bottom:1px solid #eeeeee;

    background:#fff;

    transition:.35s;

}

.gwa-card:hover{

    background:#fffdf4;

    transform:translateX(8px);

}

.gwa-card h3{

    font-size:22px;

    color:#1f2937;

    margin-bottom:12px;

}

.gwa-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:15px;

}

.gwa-card a{

    color:#2563eb;

    text-decoration:none;

    font-weight:700;

}

.gwa-card a:hover{

    color:#f59e0b;

}


/*==========================
ANIMATION
==========================*/

@keyframes gwaMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-50%);

    }

}


/*==========================
TABLET
==========================*/

@media (max-width:768px){

.gwa-announcement-section{

    padding:60px 15px;

}

.gwa-heading{

    padding:30px 20px;

}

.gwa-heading h2{

    font-size:30px;

}

.gwa-heading p{

    font-size:15px;

}

.gwa-scroll-box{

    height:360px;

}

.gwa-card{

    padding:20px;

}

.gwa-card h3{

    font-size:19px;

}

}


/*==========================
MOBILE
==========================*/

@media (max-width:480px){

.gwa-heading h2{

    font-size:25px;

}

.gwa-badge{

    font-size:11px;

    padding:8px 18px;

}

.gwa-scroll-box{

    height:300px;

}

.gwa-card{

    padding:18px;

}

.gwa-card h3{

    font-size:18px;

}

.gwa-card p{

    font-size:14px;

}

}

.pdf-card{

display:flex;
align-items:center;
gap:25px;

background:#fff;

padding:28px;

border-radius:24px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #eee;

}

.pdf-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.pdf-icon{

width:70px;
height:70px;

border-radius:18px;

background:#FEF3C7;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

flex-shrink:0;

}

.pdf-info{

flex:1;

}

.pdf-info h3{

font-size:24px;

font-weight:700;

margin-bottom:8px;

color:#111827;

}

.pdf-info p{

color:#4B5563;

margin-bottom:5px;

}

.pdf-info small{

color:#9CA3AF;

}

.download-btn{

background:#F59E0B;

color:#fff;

padding:14px 30px;

border-radius:40px;

font-weight:600;

text-decoration:none;

transition:.3s;

white-space:nowrap;

}

.download-btn:hover{

background:#D97706;

transform:scale(1.05);

}

@media(max-width:768px){

.pdf-card{

flex-direction:column;

text-align:center;

}

.download-btn{

width:100%;

text-align:center;

margin-top:15px;

}

}