/*=================================================
EXAM HERO
=================================================*/

.exam-hero{

    background:linear-gradient(
    135deg,
    #0D47A1,
    #1976D2);

    color:#fff;

    overflow:hidden;

    position:relative;

}

.exam-hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    right:-180px;

    top:-180px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    font-weight:600;

}

.hero-title{

    font-size:56px;

    font-weight:800;

    line-height:1.2;

}

.hero-title span{

    color:#FFD54F;

}

.hero-text{

    font-size:18px;

    opacity:.92;

    max-width:650px;

}

.hero-search{

    max-width:650px;

}

.hero-search .form-control{

    height:60px;

    border-radius:16px 0 0 16px;

    border:none;

}

.hero-search .btn{

    border-radius:0 16px 16px 0;

    padding:0 30px;

}

.popular-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    align-items:center;

}

.popular-tags span{

    font-weight:600;

}

.popular-tags a{

    color:#fff;

    background:rgba(255,255,255,.15);

    padding:8px 16px;

    border-radius:40px;

    transition:.3s;

}

.popular-tags a:hover{

    background:#fff;

    color:#0D47A1;

}

.hero-image{

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=================================================
STATISTICS
=================================================*/

.stat-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card i{

    font-size:38px;

    color:#1976D2;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:38px;

    font-weight:700;

    color:#0D47A1;

}

.stat-card p{

    color:#6B7280;

    margin:0;

}

/*=================================================
RESPONSIVE
=================================================*/

@media(max-width:992px){

.hero-title{

    font-size:42px;

}

.hero-image{

    margin-top:40px;

}

}

@media(max-width:768px){

.hero-title{

    font-size:34px;

}

.hero-search .btn{

    padding:0 20px;

}

.popular-tags{

    justify-content:center;

}

}

/*=================================================
SECTION TITLE
=================================================*/

.section-heading{

    max-width:700px;

    margin:auto;

}

.section-badge{

    display:inline-block;

    background:#EAF4FF;

    color:#0D47A1;

    padding:8px 18px;

    border-radius:40px;

    font-weight:600;

}

.section-title{

    font-size:42px;

    font-weight:700;

    margin-top:18px;

}

.section-subtitle{

    color:#6B7280;

    font-size:18px;

}

/*=================================================
EXAM CARD
=================================================*/

.exam-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s;

    height:100%;

}

.exam-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(13,71,161,.15);

}

.exam-image{

    position:relative;

    overflow:hidden;

}

.exam-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

.exam-card:hover img{

    transform:scale(1.08);

}

.exam-level{

    position:absolute;

    top:20px;

    right:20px;

    background:#1976D2;

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

}

.exam-body{

    padding:28px;

}

.exam-body h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

.exam-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

    color:#6B7280;

    font-size:15px;

}

.exam-price{

    font-size:30px;

    font-weight:700;

    color:#16A34A;

    margin:25px 0;

}

.free{

    color:#16A34A;

}

/*=================================================
CATEGORY CARD
=================================================*/

.category-card{

    display:block;

    text-align:center;

    background:#fff;

    border-radius:22px;

    padding:35px 20px;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:.35s;

    color:#1F2937;

}

.category-card:hover{

    background:linear-gradient(
    135deg,
    #0D47A1,
    #1976D2);

    color:#fff;

    transform:translateY(-8px);

}

.category-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#EAF4FF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#1976D2;

    margin-bottom:20px;

}

.category-card:hover .category-icon{

    background:#fff;

}

.process-card,
.feature-card,
.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    transition:.35s;
    height:100%;
}

.process-card:hover,
.feature-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(13,71,161,.15);
}

.process-number{
    width:46px;
    height:46px;
    line-height:46px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#1976D2;
    color:#fff;
    font-weight:700;
}

.process-icon,
.feature-card i{
    font-size:42px;
    color:#1976D2;
    margin-bottom:20px;
}

.feature-card h5{
    margin:0;
    font-weight:600;
}

.rating{
    color:#F59E0B;
    font-size:22px;
    margin-bottom:15px;
}

.testimonial-card h6{
    margin-top:20px;
    color:#0D47A1;
    font-weight:700;
}

.accordion-item{
    border:none;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 10px 25px rgba(15,23,42,.05);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#EAF4FF;
    color:#0D47A1;
}

.cta-box{
    background:linear-gradient(135deg,#0D47A1,#1976D2);
    color:#fff;
    border-radius:28px;
    padding:70px 30px;
}

.cta-box h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.cta-box p{
    font-size:18px;
    opacity:.9;
    margin-bottom:30px;
}

.cta-box .btn{
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}

.exam-details-hero{

padding:80px 0;

background:linear-gradient(135deg,#0D47A1,#1976D2);

color:#fff;

}

.exam-image{

background:#fff;

padding:15px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.2);

}

.exam-image img{

width:100%;

border-radius:18px;

}

.hero-badge{

display:inline-block;

padding:8px 18px;

background:rgba(255,255,255,.15);

border-radius:30px;

margin-bottom:20px;

}

.exam-details-hero h1{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.hero-description{

font-size:18px;

opacity:.9;

margin-bottom:30px;

}

.hero-meta{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-bottom:30px;

}

.hero-meta div{

background:rgba(255,255,255,.12);

padding:12px 18px;

border-radius:15px;

}

.price-box{

font-size:42px;

font-weight:700;

margin-bottom:30px;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.detail-card{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.detail-card h2{

font-size:30px;

margin-bottom:25px;

font-weight:700;

color:#0D47A1;

}

.overview-item{

display:flex;

gap:15px;

align-items:center;

background:#F8FAFC;

padding:20px;

border-radius:18px;

height:100%;

}

.overview-item i{

width:55px;

height:55px;

background:#1976D2;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:22px;

}

.overview-item strong{

display:block;

margin-bottom:5px;

}

.skill-list{

list-style:none;

padding:0;

margin:0;

}

.skill-list li{

padding:12px 0;

font-size:17px;

}

.skill-list i{

color:#16A34A;

margin-right:10px;

}

.enroll-card{

top:100px;

background:#fff;

border-radius:24px;

padding:35px;

box-shadow:0 20px 60px rgba(15,23,42,.1);

}

.enroll-card h3{

font-size:26px;

margin-bottom:20px;

font-weight:700;

}

.enroll-card .price{

font-size:40px;

font-weight:700;

color:#0D47A1;

margin-bottom:25px;

}

.enroll-card ul{

list-style:none;

padding:0;

margin:0 0 25px;

}

.enroll-card ul li{

padding:12px 0;

border-bottom:1px solid #eef2f7;

}

.enroll-card ul li i{

color:#1976D2;

margin-right:10px;

width:22px;

}

.instruction-list{
    list-style:none;
    padding:0;
    margin:0;
}

.instruction-list li{
    padding:12px 0;
    font-size:17px;
}

.instruction-list i{
    color:#16A34A;
    margin-right:10px;
}

.benefit-card{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    transition:.35s;
    height:100%;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(13,71,161,.15);
}

.benefit-card i{
    font-size:48px;
    color:#1976D2;
    margin-bottom:20px;
}

.benefit-card h5{
    margin:0;
    font-weight:600;
}

.exam-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    transition:.35s;
    height:100%;
}

.exam-card:hover{
    transform:translateY(-8px);
}

.exam-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.exam-card-body{
    padding:25px;
}

.exam-card-body h4{
    font-size:22px;
    margin-bottom:15px;
    font-weight:700;
}

.exam-card-body p{
    color:#6B7280;
    margin-bottom:20px;
}

.exam-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    font-size:14px;
}

.price{
    font-size:30px;
    font-weight:700;
    color:#0D47A1;
    margin-bottom:20px;
}