:root{
    --theme:#F4C430;
    --theme-rgb:253,126,20;
    --theme-dark:#FF7722;
    --theme-light:#fff4e8;

    --text:#0f172a;
    --muted:#64748b;
    --border:#e2e8f0;
    --bg:#f8fafc;
}

.hero-section{
    position:relative;
    overflow:hidden;
    background:#f8fafc;
    padding:100px 0 50px;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(var(--theme-rgb),.1);
    color:var(--theme);
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    color:#0f172a;
}

.hero-title span{
    color:var(--theme);
}

.hero-desc{
    font-size:20px;
    color:#64748b;
    margin-bottom:30px;
}

.hero-search{
    display:flex;
    gap:10px;
    background:#fff;
    padding:12px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.hero-search input{
    border:none;
    box-shadow:none!important;
    height:55px;
}

.hero-search button{
    background:var(--theme);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:0 25px;
    font-weight:600;
}

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.feature-item i{
    color:var(--theme);
}

/* IMAGE */

.hero-image-area{
    position:relative;
    min-height:650px;
}

.hero-circle{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    right:0;
    top:30px;
}

.hero-student{
    position:relative;
    z-index:10;
    width:100%;
    max-width:520px;
    animation:floaty 4s ease-in-out infinite;
}

@keyframes floaty{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* FLOATING CARDS */

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:20;
}

.floating-card i{
    color:var(--theme);
    font-size:24px;
}

.floating-card strong{
    display:block;
    font-size:18px;
}

.floating-card span{
    color:#64748b;
    font-size:14px;
}

.card-1{
    right:0;
    top:100px;
}

.card-2{
    right:30px;
    top:260px;
}

.card-3{
    right:0;
    top:420px;
}

/* STATS */

.hero-stats{
    margin-top:40px;
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    border-radius:25px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-item{
    text-align:center;
    color:#fff;
}

.stat-item i{
    font-size:30px;
    margin-bottom:10px;
}

.stat-item h3{
    font-size:36px;
    font-weight:800;
}

.stat-item p{
    margin:0;
}

/* SHAPES */

.hero-shape{
    position:absolute;
    border-radius:50%;
}

.hero-shape-1{
    width:300px;
    height:300px;
    background:rgba(var(--theme-rgb),.05);
    top:-100px;
    left:-100px;
}

.hero-shape-2{
    width:200px;
    height:200px;
    background:rgba(var(--theme-rgb),.05);
    bottom:-50px;
    right:-50px;
}

/* MOBILE */

@media(max-width:991px){

.hero-title{
    font-size:42px;
}

.hero-search{
    flex-direction:column;
}

.hero-stats{
    grid-template-columns:repeat(2,1fr);
}

.hero-image-area{
    min-height:auto;
    margin-top:50px;
}

.hero-circle{
    width:350px;
    height:350px;
}

}

.main-header{
background:#fff;
position:sticky;
top:0;
z-index:9999;
box-shadow:0 5px 30px rgba(0,0,0,.05);
}

.navbar{
padding:8px 0;
}

.logo-box{
display:flex;
align-items:center;
gap:12px;
}

.logo-icon{
width:55px;
height:55px;
border-radius:15px;
background:linear-gradient(
135deg,
var(--theme),
var(--theme-dark)
);

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-size:24px;
}

.logo-box h4{
margin:0;
font-size:20px;
font-weight:800;
color:#0f172a;
}

.logo-box span{
font-size:13px;
color:#64748b;
}

.nav-link{
font-weight:600;
color:#334155;
padding:10px 16px !important;
position:relative;
}

.nav-link:hover{
color:var(--theme);
}

.nav-link.active{
color:var(--theme);
}

.nav-link.active::after{
content:'';
position:absolute;
left:15px;
right:15px;
bottom:0;
height:3px;
border-radius:10px;
background:var(--theme);
}

.dropdown-menu{
border:none;
border-radius:18px;
padding:12px;
box-shadow:
0 20px 50px rgba(0,0,0,.08);
}

.dropdown-item{
padding:10px 15px;
border-radius:10px;
}

.dropdown-item:hover{
background:
rgba(var(--theme-rgb),.08);
color:var(--theme);
}

.header-buttons{
display:flex;
gap:12px;
}

.btn-login{
padding:12px 22px;
border-radius:12px;
text-decoration:none;
font-weight:600;
color:#334155;
}

.btn-register{
background:linear-gradient(
135deg,
var(--theme),
var(--theme-dark)
);

color:#fff;
padding:12px 24px;
border-radius:12px;
text-decoration:none;
font-weight:700;
box-shadow:
0 10px 30px rgba(var(--theme-rgb),.35);
}

.btn-register:hover{
color:#fff;
transform:translateY(-2px);
}

.featured-scholarships{
    background:#f8fafc;
}

.featured-tag{
    background:rgba(var(--theme-rgb),.1);
    color:var(--theme);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.featured-title{
    font-size:42px;
    font-weight:800;
    margin-top:15px;
    margin-bottom:15px;
}

.featured-subtitle{
    max-width:700px;
    margin:auto;
    color:var(--muted);
}

.featured-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    position:relative;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.4s;
    height:100%;
}

.featured-card:hover{
    transform:translateY(-10px);
    border-color:var(--theme);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.featured-ribbon{
    position:absolute;
    top:15px;
    right:-35px;
    background:var(--theme);
    color:#fff;
    padding:8px 40px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:600;
}

.scholarship-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.featured-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    min-height:65px;
}

.scholarship-price{
    color:var(--theme);
    font-size:34px;
    font-weight:800;
    margin-bottom:20px;
}

.scholarship-meta{
    border-top:1px solid var(--border);
    padding-top:15px;
}

.scholarship-meta span{
    display:block;
    color:var(--muted);
    margin-bottom:10px;
}

.scholarship-meta i{
    color:var(--theme);
    margin-right:8px;
}

.btn-theme{
    background:var(--theme);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:12px;
    font-weight:600;
}

.btn-theme:hover{
    background:var(--theme-dark);
    color:#fff;
}

.stats-section{
    padding:100px 0;
    background:#f8fafc;
}

.stats-wrapper{
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    border-radius:30px;
    padding:60px 30px;
    position:relative;
    overflow:hidden;
}

.stats-wrapper::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-150px;
    right:-100px;
}

.stats-wrapper::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-100px;
    left:-50px;
}

.stats-card{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:35px 20px;
    transition:.4s;
}

.stats-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.stats-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--theme);
    font-size:28px;
}

.stats-card h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stats-card p{
    color:rgba(255,255,255,.85);
    margin:0;
    font-size:16px;
    font-weight:500;
}

@media(max-width:768px){

.stats-wrapper{
    padding:40px 20px;
}

.stats-card h2{
    font-size:32px;
}

}

.scholarship-process{
    background:#fff;
}

.process-tag{
    background:rgba(var(--theme-rgb),0.1);
    color:var(--theme);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.process-title{
    font-size:42px;
    font-weight:800;
    color:var(--text);
    margin-bottom:15px;
}

.process-subtitle{
    max-width:700px;
    margin:auto;
    color:var(--muted);
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    position:relative;
    transition:.4s;
    height:100%;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border-color:var(--theme);
}

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:800;
    color:rgba(var(--theme-rgb),0.08);
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    color:#fff;
}

.process-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.process-card p{
    color:var(--muted);
    margin:0;
    line-height:1.8;
}

@media(max-width:768px){

.process-title{
    font-size:30px;
}

.process-card{
    padding:30px 20px;
}

.process-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

}

.why-choose-us{
    background:#f8fafc;
}

.why-tag{
    background:rgba(var(--theme-rgb),0.1);
    color:var(--theme);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.why-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:var(--text);
}

.why-subtitle{
    max-width:700px;
    margin:auto;
    color:var(--muted);
}

.why-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:25px;
    padding:35px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--theme);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.why-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    color:#fff;
}

.why-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

.why-title{
    font-size:30px;
}

.why-card{
    padding:25px;
}

.why-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

}

.testimonial-section{
    background:#f8fafc;
}

.testimonial-tag{
    background:rgba(var(--theme-rgb),.1);
    color:var(--theme);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.testimonial-title{
    font-size:42px;
    font-weight:800;
    margin-top:15px;
}

.testimonial-subtitle{
    color:var(--muted);
    max-width:700px;
    margin:auto;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    border:1px solid var(--border);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:var(--theme);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid var(--theme-light);
}

.testimonial-card h4{
    font-weight:700;
    margin-bottom:5px;
}

.testimonial-card span{
    color:var(--theme);
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.testimonial-card p{
    color:var(--muted);
    line-height:1.8;
}

.swiper{
    padding-bottom:60px;
}

.swiper-pagination-bullet-active{
    background:var(--theme)!important;
}

.premium-faq{
    background:#f8fafc;
}

.faq-tag{
    background:rgba(var(--theme-rgb),0.1);
    color:var(--theme);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.faq-title{
    font-size:42px;
    font-weight:800;
    margin-top:15px;
    margin-bottom:15px;
}

.faq-subtitle{
    max-width:700px;
    margin:auto;
    color:var(--muted);
}

.faq-card{
    background:#fff;
    border:none !important;
    border-radius:20px !important;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-card .accordion-button{
    background:#fff;
    padding:25px;
    font-size:18px;
    font-weight:700;
    box-shadow:none;
}

.faq-card .accordion-button:not(.collapsed){
    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );
    color:#fff;
}

.faq-card .accordion-button:not(.collapsed) .faq-icon{
    background:#fff;
    color:var(--theme);
}

.faq-icon{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:50%;
    background:rgba(var(--theme-rgb),0.1);
    color:var(--theme);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.faq-card .accordion-body{
    padding:25px;
    font-size:16px;
    line-height:1.9;
    color:var(--muted);
    background:#fff;
}

.accordion-button::after{
    transform:scale(1.2);
}

@media(max-width:768px){

.faq-title{
    font-size:30px;
}

.faq-card .accordion-button{
    font-size:16px;
    padding:20px;
}

}

.cta{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    text-align:center;

    background:linear-gradient(
        135deg,
        var(--theme),
        var(--theme-dark)
    );

    border-radius:30px;
    margin:80px auto;
}

/* Background Effects */

.cta::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    left:-120px;
}

.cta::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-150px;
    right:-100px;
}

/* Heading */

.cta h2{
    position:relative;
    z-index:2;

    font-size:52px;
    font-weight:800;
    color:#fff;

    margin-bottom:20px;
}

/* Description */

.cta p{
    position:relative;
    z-index:2;

    max-width:750px;
    margin:0 auto 35px;

    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

/* Buttons */

.cta .btn{
    position:relative;
    z-index:2;

    padding:15px 32px;
    margin:8px;

    border:none;
    border-radius:14px;

    font-size:16px;
    font-weight:700;

    transition:.3s;
}

/* Primary CTA */

.cta .btn-success{
    background:#fff;
    color:var(--theme);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.cta .btn-success:hover{
    transform:translateY(-4px);
    color:var(--theme);
}

/* Secondary CTA */

.cta .btn-primary{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}

.cta .btn-primary:hover{
    background:#fff;
    color:var(--theme);
    transform:translateY(-4px);
}

/* Mobile */

@media(max-width:768px){

.cta{
    padding:70px 20px;
}

.cta h2{
    font-size:34px;
}

.cta p{
    font-size:16px;
}

.cta .btn{
    width:100%;
    display:block;
    margin:10px 0;
}

}