/*==============================
 BANNER
===============================*/
.placement-banner{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:80px 0;
}
/*==============================
 BACKGROUND
===============================*/
.banner-bg{
    position:absolute;
    inset:0;
    background:url("../assets/placement-images/Banner\ Desktop.webp") center center/cover no-repeat;
    /* filter:blur(7px); */
    transform:scale(1.08);
}
/* .banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,20,35,.65);
} */
/*==============================
 CONTAINER
===============================*/
.placement-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:10;
}
.placement-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}
/*==============================
 LEFT
===============================*/
.placement-left{
    flex:1;
    color:#fff;
}
.placement-badge{
    display:inline-block;
    padding:10px 22px;
    background:#FF510E;
    border-radius:40px;
    font-size:15px;
    margin-bottom:25px;
}
.placement-left h1{
    font-size:60px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
    /* width: 30%; */
}
.placement-left h1 span{
    color:#fff;
}
.placement-left p{
    font-size:18px;
    line-height:32px;
    color:#ececec;
    max-width:650px;
    margin-bottom:35px;
}
/*==============================
 BUTTONS
===============================*/
.placement-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.btn-primary,
.btn-secondary{
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}
.btn-primary{
    background:#0c4b8e;
    color:#fff;
}
.btn-primary:hover{
    background:#FF510E;
}
.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}
.btn-secondary:hover{
    background:#fff;
    color:#0B4F9C;
}
/*==============================
 STUDENT IMAGE
===============================*/
.student-image{
    margin-top:55px;
}
.student-image img{
    width:430px;
    max-width:100%;
    display:block;
}
/*==============================
 RIGHT
===============================*/
.placement-right{
    width:430px;
}
.placement-form{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    border-radius:25px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}
.form-top h2{
    color:#fff;
    font-size:30px;
    margin-bottom:10px;
}
.form-top p{
    color:#ddd;
    margin-bottom:30px;
    line-height:28px;
}
/*==============================
 FORM
===============================*/
.input-box{
    margin-bottom:18px;
}
.input-box input,
.input-box select{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    outline:none;
}
.placement-form button{
    width:100%;
    height:58px;
    border:none;
    background:#FF510E;
    color:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:.4s;
}
.placement-form button:hover{
    background:#FF510E;
}
/*==============================
ANIMATIONS
==============================*/
@keyframes leftFade{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes rightFade{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes floatImage{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
    100%{
        transform:translateY(0);
    }
}
.placement-left{
    animation:leftFade 1s ease;
}
.placement-right{
    animation:rightFade 1s ease;
}
.student-image img{
    animation:floatImage 4s ease-in-out infinite;
    transition:.4s;
}
.student-image img:hover{
    transform:scale(1.05);
}
/*==============================
FORM EFFECT
==============================*/
.input-box input:focus,
.input-box select:focus{
    box-shadow:0 0 0 3px rgba(29,136,132,.25);
}
.placement-form{
    transition:.4s;
}
.placement-form:hover{
    transform:translateY(-8px);
}
/*==============================
BUTTON HOVER
==============================*/
.btn-primary:hover{
    transform:translateY(-4px);
}
.btn-secondary:hover{
    transform:translateY(-4px);
}
.placement-form button:hover{
    transform:translateY(-3px);
}
/*==============================
TABLET
==============================*/
@media(max-width:1100px){
.placement-wrapper{
    flex-direction:column;
    gap:50px;
}
.placement-left{
    text-align:center;
}
.placement-left p{
    margin:auto;
    margin-bottom:35px;
}
.placement-buttons{
    justify-content:center;
}
.student-image{
    display:flex;
    justify-content:center;
}
.placement-right{
    width:100%;
    max-width:500px;
}
}
/*==============================
MOBILE
==============================*/
@media(max-width:768px){
.placement-banner{
    padding:60px 0;
}
.placement-left h1{
    font-size:38px;
}
.placement-left p{
    font-size:16px;
    line-height:28px;
}
.student-image img{
    width:280px;
}
.placement-form{
    padding:30px;
}
.form-top h2{
    font-size:28px;
}
}
/*==============================
SMALL MOBILE
==============================*/
@media(max-width:576px){
.placement-container{
    width:92%;
}
.placement-left h1{
    font-size:30px;
}
.placement-buttons{
    flex-direction:column;
    margin-top: 250px;
}
.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}
.student-image img{
    width:220px;
}
.placement-form{
    padding:22px;
}
}
/*==========================
WHY CHOOSE COEB
==========================*/
.why-coeb{
    padding:50px 20px;
    background:#fff;
}
.container{
    max-width:1200px;
    margin:auto;
}
/* Heading */
.section-heading{
    max-width:700px;
    margin-bottom:60px;
}
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#FF510E;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}
.section-tag::before{
    content:"";
    width:35px;
    height:2px;
    background:#FF510E;
}
.section-heading h2{
    font-size:42px;
    line-height:1.25;
    color:#134580;
    font-weight:700;
}
.section-heading h2 span{
    color:#FF510E;
}
/* Cards */
.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    /* border:1px solid #d9d9d9; */
}
.why-card{
    padding:40px 25px;
    border-right:1px solid #d9d9d9;
    transition:.35s;
    background:#fff;
}
.why-card:last-child{
    border-right:none;
}
.card-title{
    color:#FF510E;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}
.why-card h3{
    margin:20px 0 18px;
    color:#134580;
    font-size:20px;
}
.why-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}
/* Hover */
.why-card:hover{
    background:#134580;
    transform:translateY(-8px);
}
.why-card:hover h3,
.why-card:hover p{
    color:#fff;
}
.why-card:hover .card-title{
    color:#FF510E;
}
/*==========================
TABLET
==========================*/

@media(max-width:991px){
.why-grid{
grid-template-columns:repeat(2,1fr);
}
.why-card{
border-right:1px solid #d9d9d9;
border-bottom:1px solid #d9d9d9;
}
.why-card:nth-child(2){
border-right:none;
}
.why-card:nth-child(4){
border-right:none;
border-bottom:none;
}
.why-card:nth-child(3){
border-bottom:none;
}
.section-heading h2{
font-size:42px;
}
}
/*==========================
MOBILE
==========================*/
@media(max-width:768px){
.why-coeb{
padding:70px 18px;
}
.section-heading{
margin-bottom:40px;
}
.section-heading h2{
font-size:34px;
}
.why-grid{
grid-template-columns:1fr;
border:none;
gap:18px;
}
.why-card{
border:1px solid #ddd;
padding:30px 22px;
}
.why-card,
.why-card:last-child{
border-right:1px solid #ddd;
}
}

/*=====================================
        PROGRAMS SECTION
======================================*/
.programs-section{
    padding:50px 20px;
    background:#f8fbff;
}
.program-heading{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}
.section-label{
    display:inline-block;
    color:#FF510E;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.program-heading h2{
    font-size:42px;
    color:#134580;
    line-height:1.25;
    margin-bottom:18px;
}
.program-heading h2 span{
    color:#FF510E;
}
.program-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}
/* Grid */
.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
/* Card */
.program-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    border-top:5px solid #FF510E;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}
.program-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.program-icon{
    width:65px;
    height:65px;
    background:#134580;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
}
.duration{
    color:#FF510E;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:12px;
}
.program-card h3{
    color:#134580;
    font-size:28px;
    margin-bottom:18px;
}
.program-card p{
    color:#666;
    line-height:1.8;
    flex:1;
}
.program-card a{
    margin-top:25px;
    color:#134580;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.program-card a:hover{
    color:#FF510E;
    padding-left:6px;
}

/*=========================
Tablet
=========================*/
@media(max-width:992px){
.program-grid{
grid-template-columns:repeat(2,1fr);
}
.program-heading h2{
font-size:40px;
}
}
/*=========================
Mobile
=========================*/
@media(max-width:768px){
.programs-section{
padding:70px 18px;
}
.program-grid{
grid-template-columns:1fr;
}
.program-heading{
text-align:left;
}
.program-heading h2{
font-size:32px;
}
.program-card{
padding:28px;
}
}

/*==================================
        ELIGIBILITY SECTION
==================================*/
.eligibility-section{
    padding:50px 20px;
    background:#fff;
}
.eligibility-header{
    margin-bottom:50px;
    max-width:650px;
}
.eligibility-header h2{
    font-size:42px;
    color:#134580;
    line-height:1.25;
    margin-top:15px;
}
.eligibility-header h2 span{
    color:#FF510E;
}
/* Table */
.eligibility-table{
    overflow-x:auto;
}
.eligibility-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}
.eligibility-table thead{
    background:#134580;
}
.eligibility-table th{
    color:#fff;
    text-align:left;
    padding:20px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}
.eligibility-table td{
    padding:22px 20px;
    border-bottom:1px solid #e4e4e4;
    color:#444;
    line-height:1.7;
}
.eligibility-table tbody tr{
    transition:.3s;
}
.eligibility-table tbody tr:hover{
    background:#f5f9ff;
}
.eligibility-table tbody tr td:first-child{
    color:#134580;
    font-weight:700;
}

/*=====================
Tablet
=====================*/

@media(max-width:992px){
.eligibility-header h2{
font-size:40px;
}
}

/*=====================
Mobile
=====================*/

@media(max-width:768px){
.eligibility-section{
padding:70px 18px;
}
.eligibility-header h2{
font-size:32px;
}
.eligibility-table table,
.eligibility-table thead,
.eligibility-table tbody,
.eligibility-table th,
.eligibility-table td,
.eligibility-table tr{
display:block;
}
.eligibility-table thead{
display:none;
}
.eligibility-table tr{
background:#fff;
margin-bottom:20px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
overflow:hidden;
}
.eligibility-table td{
border:none;
border-bottom:1px solid #eee;
padding:15px 18px 15px 45%;
position:relative;
min-height:55px;
}
.eligibility-table td:last-child{
border-bottom:none;
}

.eligibility-table td::before{
content:attr(data-label);
position:absolute;
left:18px;
top:15px;
font-weight:700;
color:#134580;
width:35%;
}
}


/*======================================
        ENTRANCE EXAMS
======================================*/
.entrance-exams{
    padding:50px 20px;
    background:#FFFDF8;
}
.entrance-heading{
    max-width:700px;
    margin-bottom:55px;
}
.entrance-heading h2{
    font-size:42px;
    color:#134580;
    line-height:1.25;
    margin:18px 0;
}
.entrance-heading h2 span{
    color:#FF510E;
}
.entrance-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*=====================
Exam List
=====================*/
.exam-list{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

/*=====================
Exam Card
=====================*/

.exam-card{
    text-decoration:none;
    color:#134580;
    border:1px solid #d9d9d9;
    background:#fff;
    padding:18px 32px;
    border-radius:10px;
    font-weight:600;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}
/* Orange top bar */
.exam-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:#FF510E;
    transition:.35s;
}
.exam-card:hover{
    background:#134580;
    color:#fff;
    border-color:#134580;
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(19,69,128,.18);
}
.exam-card:hover::before{
    width:100%;
}
/*=====================
Tablet
=====================*/
@media(max-width:992px){
.entrance-heading h2{
font-size:40px;
}
.exam-card{
flex:1 1 calc(33.33% - 18px);
text-align:center;
}
}

/*=====================
Mobile
=====================*/
@media(max-width:768px){
.entrance-exams{
padding:70px 18px;
}
.entrance-heading{
margin-bottom:40px;
}
.entrance-heading h2{
font-size:32px;
}
.exam-list{
gap:15px;
}
.exam-card{
flex:1 1 calc(50% - 15px);
padding:16px;
text-align:center;
}
}
@media(max-width:480px){
.exam-card{
flex:1 1 100%;
}
}

/*====================================
        ADMISSION PROCESS
====================================*/
.admission-process{
    padding:50px 20px;
    background:#fff;
}
.process-heading{
    max-width:700px;
    margin-bottom:60px;
}
.process-heading h2{
    font-size:42px;
    color:#134580;
    margin-top:18px;
    line-height:1.25;
}
.process-heading h2 span{
    color:#FF510E;
}
/* Grid */
.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    
}
/* Card */
.process-item{
    position:relative;
    padding-top:22px;
    transition:.35s;
}
.top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#FF510E;
    transition:.35s;
}
.step-no{
    display:inline-block;
    color:#FF510E;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}
.process-item h3{
    color:#134580;
    font-size:18px;
    margin-bottom:15px;
    line-height:1.4;
}
.process-item p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}
.process-item:hover{
    transform:translateY(-8px);
}
.process-item:hover .top-line{
    height:6px;
}

/*=====================
Tablet
======================*/
@media(max-width:992px){
.process-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}
}
/*=====================
Mobile
======================*/
@media(max-width:768px){
.admission-process{
padding:70px 18px;
}
.process-heading h2{
font-size:32px;
}
.process-grid{
grid-template-columns:1fr;
}
.process-item{
padding:25px;
border:1px solid #e5e5e5;
border-radius:12px;
}
.process-item:hover{
transform:none;
}
}

/*====================================
        FEE STRUCTURE
====================================*/
.fee-section{
    padding:50px 20px;
    background:linear-gradient(135deg,#134580,#1b5ba8);
}
.fee-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
}
.fee-content{
    color:#fff;
}
.fee-content h2{
    font-size:42px;
    line-height:1.2;
    margin:20px 0;
}

.fee-content h2 span{
    color:#FF510E;
}
.fee-content p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    max-width:700px;
}

.fee-features{
    list-style:none;
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    padding:0;
}
.fee-features li{
    background:rgba(255,255,255,.08);
    padding:15px 20px;
    border-radius:8px;
    backdrop-filter:blur(8px);
}

/* Right Card */
.fee-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:40px;
    text-align:center;
    color:#fff;
}
.fee-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#FF510E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin-bottom:25px;
}
.fee-card h3{
    margin-bottom:18px;
    font-size:24px;
}
.fee-card p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}
.fee-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 45px;
    background:#FF510E;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.35s;
}
.fee-btn:hover{
    background:#fff;
    color:#134580;
    transform:translateY(-5px);
}
/*=====================
Tablet
=====================*/
@media(max-width:992px){
.fee-wrapper{
grid-template-columns:1fr;
}
.fee-content{
text-align:center;
}
.fee-features{
grid-template-columns:1fr 1fr;
}
}

/*=====================
Mobile
=====================*/

@media(max-width:768px){
.fee-section{
padding:70px 18px;
}
.fee-content h2{
font-size:34px;
}
.fee-features{
grid-template-columns:1fr;
}
.fee-card{
padding:30px 25px;
}
}

/*====================================
        SCHOLARSHIP SECTION
====================================*/
.scholarship-section{
    padding:50px 20px;
    background:#f8fbff;
}
.scholarship-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}
/* Left */
.scholarship-content h2{
    font-size:42px;
    color:#134580;
    margin:20px 0;
    line-height:1.2;
}
.scholarship-content h2 span{
    color:#FF510E;
}
.scholarship-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}
.scholarship-content ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}
.scholarship-content ul li{
    margin-bottom:15px;
    color:#444;
    position:relative;
    padding-left:30px;
}
.scholarship-content ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#FF510E;
    font-weight:bold;
}
.scholarship-btn{
    display:inline-block;
    background:#134580;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:8px;
    transition:.3s;
}
.scholarship-btn:hover{
    background:#FF510E;
}
/* Right */
.scholarship-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}
.scholarship-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-bottom:4px solid transparent;
}
.scholarship-card:hover{
    transform:translateY(-10px);
    border-color:#FF510E;
}
.icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#134580;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}
.scholarship-card h3{
    color:#134580;
    margin-bottom:15px;
    font-size:22px;
}
.scholarship-card p{
    color:#666;
    line-height:1.7;
}
/*=========================
Tablet
=========================*/
@media(max-width:992px){
.scholarship-grid{
grid-template-columns:1fr;
}
.scholarship-content{
text-align:center;
}
.scholarship-content ul{
display:inline-block;
text-align:left;
}

}

/*=========================
Mobile
=========================*/
@media(max-width:768px){
.scholarship-section{
padding:70px 18px;
}
.scholarship-content h2{
font-size:34px;
}
.scholarship-cards{
grid-template-columns:1fr;
}
.scholarship-btn{
display:block;
text-align:center;
}
}

 
/*=================================
      PLACEMENT SNAPSHOT
==================================*/
.placement-snapshot{
    padding:50px 20px;
    background:#fff;
}
.placement-header{
    max-width:650px;
    margin-bottom:45px;
}
.placement-header h2{
    font-size:42px;
    color:#134580;
    margin:18px 0;
}
.placement-header p{
    color:#666;
    line-height:1.8;
}
/* Stats */
.placement-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:2px solid grey;
    border-radius: 15px;
}
.stat-box{
    padding:45px 30px;
    text-align:center;
    border-right:2px solid grey;
    transition:.3s;
}
.stat-box:last-child{
    border-right:none;
}
.stat-box:hover{
    background:#f8fbff;
}
.stat-box h3{
    font-size:48px;
    color:#FF510E;
    margin-bottom:15px;
    font-weight:700;
}

.stat-box p{
    color:#666;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
}

/*=====================
Tablet
======================*/
@media(max-width:992px){
.placement-header h2{
font-size:36px;
}
}

/*=====================
Mobile
======================*/
@media(max-width:768px){
.placement-snapshot{
padding:70px 18px;
}
.placement-header{
text-align:center;
}
.placement-header h2{
font-size:30px;
}
.placement-stats{
grid-template-columns:1fr;
border:none;
gap:18px;
}
.stat-box{
border:1px solid #ddd;
}
.stat-box:last-child{
border-right:1px solid #ddd;
}
}

.coeb-recruiters-section{
    background:white;
    padding:80px 0;
    overflow:hidden;
}
.coeb-section-title{
    font-size:42px;
    font-weight:700;
    color:#0c4b8e;
    margin-bottom:40px;
    text-align: center;
}
/* Slider */
.coeb-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}
/* Track */
.coeb-slide-track{
    display:flex;
    width:max-content;
    gap:24px;
}
/* Cards */
.coeb-logo-card{
    width:240px;
    height:140px;
    background:#fff;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:.35s;
    border:1px solid #e8e8e8;
}
.coeb-logo-card img{
    max-width:160px;
    max-height:65px;
    object-fit:contain;
    transition:.4s;
}
/* Hover */
.coeb-logo-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    margin-top: 10px;
}
.coeb-logo-card:hover img{
    transform:scale(1.08);
}
/* Animation */
.coeb-slide-track.left{

    animation:slideLeft 30s linear infinite;
}
.coeb-slide-track.right{

    animation:slideRight 30s linear infinite;
}
/* Pause on Hover */
.coeb-slider:hover .coeb-slide-track{
    animation-play-state:paused;
}
/* Left to Right */
@keyframes slideLeft{
    from{

        transform:translateX(-50%);
    }
    to{

        transform:translateX(0%);
    }
}
/* Right to Left */
@keyframes slideRight{
    from{

        transform:translateX(0%);
    }
    to{

        transform:translateX(-50%);
    }
}
/* Responsive */
@media(max-width:992px){
.coeb-logo-card{
    width:180px;
    height:110px;
}
.coeb-logo-card img{
    max-width:120px;
}
.coeb-section-title{
    font-size:34px;
}
}
@media(max-width:576px){
.coeb-logo-card{
    width:150px;
    height:90px;
}
.coeb-logo-card img{
    max-width:100px;
}
.coeb-section-title{
    font-size:28px;
}
.left,
.right{
    animation-duration:18s;
}
}


.coeb-testimonial{
    background:#f8fafc;
    padding:90px 0;
    overflow:hidden;
}
.testimonial-title{
    font-size:46px;
    font-weight:700;
    color:#0f4c97;
    margin-bottom:15px;
    text-align: center;
}

/*=============================
        Swiper
=============================*/
.testimonialSwiper{
    padding:20px 0 70px;
    position:relative;
}

.testimonialSwiper .swiper-slide{
    display:flex;
    justify-content:center;
}

/*=============================
      Left Side
=============================*/

.testimonial-image{
    width:38%;
    position:relative;
    overflow:hidden;
    background:#eee;

}
.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.testimonial-box:hover .testimonial-image img{
    transform:scale(1.06);
}
/*=============================
      Student Card
=============================*/
.student-card{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.student-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#6c4cff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}
.student-card h5{
    margin:0;
    font-size:22px;
    font-weight:600;
    color:#222;
}
.student-card span{
    color:#777;
    font-size:15px;
}
/*=============================
      Right Side
=============================*/
.testimonial-content{
    width:62%;
    position:relative;
    padding:70px 60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:linear-gradient(135deg,#0f4c97 0%,#0f4c97 100%);
    overflow:hidden;
}
/* Decorative Squares */
.testimonial-content::before{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    background:rgba(255,255,255,.08);
    border-radius:18px;
    top:30px;
    right:90px;
}
.testimonial-content::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    background:rgba(255,255,255,.07);
    border-radius:20px;
    right:-30px;
    bottom:-20px;

}
/* Floating Square */
.testimonial-content .square{
    position:absolute;
    width:50px;
    height:50px;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    left:210px;
    bottom:80px;
}
/*=============================
       Quote
=============================*/
.quote-icon{
    font-size:70px;
    color:#fff;
    opacity:.95;
    margin-bottom:25px;
}
/*=============================
      Text
=============================*/
.testimonial-content p{
    font-size:38px;
    line-height:1.32;
    color:#fff;
    font-weight:300;
    margin-bottom:45px;
}
/*=============================
      Button
=============================*/
.read-btn{
    width:170px;
    height:58px;
    background:#fff;
    color:#222;
    text-decoration:none;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}
.read-btn:hover{
    background:#13c5dd;
    color:#fff;
    transform:translateY(-5px);

}
/*=============================
      Navigation
=============================*/
.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    /* box-shadow:0 10px 30px rgba(0,0,0,.12); */
    color:#3867ff;
    transition:.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#3867ff;
    color:#fff;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px;
    font-weight:bold;
}
/*=============================
      Pagination
=============================*/

.swiper-pagination{
    bottom:0 !important;
    margin-top: 50px !important;
}
.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#bfc6d4;
    opacity:1;
    transition:.3s;

}
.swiper-pagination-bullet-active{
    width:34px;
    border-radius:20px;
    background:#3867ff;
}

/* =============================
   Main Card
============================= */
.testimonial-box{
    display:flex;
    width:100%;
    min-height:370px;   /* Reduced from 370px */
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
/* Left Image */
.testimonial-image{
    width:35%;
}
/* Right Content */
.testimonial-content{
    width:65%;
    padding:40px 45px;   /* Reduced padding */
    display:flex;
    justify-content:center;
}
/* Quote */
.quote-icon{
    font-size:48px;      /* Reduced */
    margin-bottom:15px;
}
/* Text */
.testimonial-content p{
    font-size:24px;      /* Reduced from 38px */
    line-height:1.5;
    margin-bottom:25px;
    font-weight:400;
}
/* Button */
.read-btn{
    width:150px;
    height:48px;
    font-size:16px;
}
/* =====================================================
        Responsive - Large Laptop (1400px)
===================================================== */
@media (max-width:1400px){
    .testimonial-title{
        font-size:40px;
    }
    .testimonial-content{
        padding:35px;
    }
    .testimonial-content p{
        font-size:22px;
    }
    .student-card h5{
        font-size:20px;
    }
}
/* =====================================================
        Laptop (1200px)
===================================================== */
@media (max-width:1200px){
    .testimonial-box{
        min-height:340px;
    }
    .testimonial-image{
        width:38%;
    }
    .testimonial-content{
        width:62%;
        padding:35px;
    }
    .testimonial-content p{
        font-size:21px;
    }
    .quote-icon{
        font-size:42px;
    }
    .student-card{
        left:18px;
        right:18px;
        bottom:18px;
        padding:15px;
    }
    .student-card h5{
        font-size:18px;
    }
    .student-card span{
        font-size:14px;
    }
}
/* =====================================================
        Tablet Landscape (992px)
===================================================== */
@media (max-width:992px){
    .coeb-testimonial{
        padding:70px 0;
    }
    .testimonial-title{
        font-size:36px;
    }
    .testimonial-box{
        flex-direction:column;
        min-height:auto;
    }
    .testimonial-image{
        width:100%;
        height:380px;
    }
    .testimonial-content{
        width:100%;
        padding:40px 30px;
    }
    .testimonial-content p{
        font-size:22px;
    }
    .student-card{
        left:20px;
        right:20px;
        bottom:20px;
    }
    .swiper-button-next,
    .swiper-button-prev{
        width:48px;
        height:48px;
    }
}
/* =====================================================
        Tablet Portrait (768px)
===================================================== */
@media (max-width:768px){
    .coeb-testimonial{
        padding:60px 0;
    }
    .testimonial-title{
        font-size:32px;
        margin-bottom:35px;
    }
    .testimonialSwiper{
        padding-bottom:60px;
    }
    .testimonial-image{
        height:300px;
    }
    .testimonial-content{
        padding:35px 25px;
    }
    .quote-icon{
        font-size:40px;
        margin-bottom:15px;
    }
    .testimonial-content p{
        font-size:20px;
        line-height:1.6;
        margin-bottom:25px;
    }
    .student-card{
        gap:12px;
        padding:15px;
    }
    .student-icon{
        width:46px;
        height:46px;
        font-size:22px;
    }
    .student-card h5{
        font-size:18px;
    }
    .student-card span{
        font-size:13px;
    }
    .read-btn{
        width:145px;
        height:46px;
        font-size:15px;
    }
    .testimonial-content::before,
    .testimonial-content::after,
    .testimonial-content .square{
        display:none;
    }
}
/* =====================================================
        Mobile (576px)
===================================================== */
@media (max-width:576px){
    .coeb-testimonial{
        padding:50px 0;
    }
    .testimonial-title{
        font-size:28px;
        line-height:1.3;
    }
    .testimonialSwiper{
        padding-bottom:55px;
    }
    .testimonial-box{
        border-radius:18px;
    }
    .testimonial-image{
        height:250px;
    }
    .testimonial-content{
        padding:28px 20px;
    }
    .quote-icon{
        font-size:34px;
    }
    .testimonial-content p{
        font-size:18px;
        line-height:1.7;
    }
    .student-card{
        left:15px;
        right:15px;
        bottom:15px;
        padding:12px;
        border-radius:12px;
    }
    .student-icon{
        width:42px;
        height:42px;
        font-size:20px;
    }
    .student-card h5{
        font-size:16px;
    }
    .student-card span{
        font-size:12px;
    }
    .read-btn{
        width:135px;
        height:44px;
        font-size:14px;
    }
    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }
}
/* =====================================================
        Small Mobile (425px)
===================================================== */
@media (max-width:425px){
    .testimonial-title{
        font-size:25px;
    }
    .testimonial-image{
        height:220px;
    }
    .testimonial-content{
        padding:24px 18px;
    }
    .testimonial-content p{
        font-size:17px;
    }
    .student-card{
        flex-direction:column;
        text-align:center;
        gap:10px;
        padding:15px;
    }
    .student-card h5{
        font-size:15px;
    }
    .student-card span{
        font-size:12px;
    }
    .read-btn{
        width:130px;
        height:42px;
        font-size:14px;
    }
}

/* =====================================================
        Extra Small Mobile (375px)
===================================================== */
@media (max-width:375px){
    .testimonial-title{
        font-size:22px;
    }
    .testimonial-image{
        height:200px;
    }
    .testimonial-content{
        padding:20px 16px;
    }
    .testimonial-content p{
        font-size:16px;
    }
    .student-card{
        left:10px;
        right:10px;
        bottom:10px;
    }
    .student-icon{
        width:40px;
        height:40px;
    }
}

/* =====================================================
        Very Small Devices (320px)
===================================================== */
@media (max-width:320px){
    .testimonial-title{
        font-size:20px;
    }
    .testimonial-image{
        height:180px;
    }
    .testimonial-content{
        padding:18px 15px;
    }
    .testimonial-content p{
        font-size:15px;
    }
    .read-btn{
        width:120px;
        height:40px;
        font-size:13px;
    }

}


/*==================================
      DOCUMENTS REQUIRED
==================================*/
.documents-section{
    padding:50px 20px;
    background:#f8fbff;
}
.documents-header{
    max-width:700px;
    margin-bottom:60px;
}
.documents-header h2{
    font-size:42px;
    color:#134580;
    margin:20px 0;
    line-height:1.25;
}
.documents-header h2 span{
    color:#FF510E;
}
.documents-header p{
    color:#666;
    line-height:1.8;
}
.documents-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:45px;
}
/* Left */
.documents-list{
    display:grid;
    gap:20px;
}
.document-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:22px;
    border-radius:12px;
    border:1px solid #eee;
    transition:.3s;
}
.document-item:hover{
    border-color:#FF510E;
    transform:translateX(8px);
}
.document-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#134580;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}
.document-item h4{
    color:#134580;
    margin-bottom:8px;
}
.document-item p{
    color:#666;
    line-height:1.6;
}
/* Right */
.documents-note{
    background:#134580;
    color:#fff;
    padding:35px;
    border-radius:15px;
    height:fit-content;
    position:sticky;
    top:100px;
}
.note-icon{
    font-size:42px;
    color:#FF510E;
    margin-bottom:20px;
}
.documents-note h3{
    margin-bottom:15px;
}
.documents-note p{
    line-height:1.8;
}
.documents-note hr{
    margin:25px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.2);
}
.documents-note ul{
    padding-left:18px;
}
.documents-note li{
    margin-bottom:12px;
    line-height:1.7;
}
/* Tablet */
@media(max-width:992px){
.documents-wrapper{
grid-template-columns:1fr;
}
.documents-note{
position:static;
}
}
/* Mobile */
@media(max-width:768px){
.documents-section{
padding:70px 18px;
}
.documents-header h2{
font-size:32px;
}
.document-item{
padding:18px;
}
.document-icon{
width:48px;
height:48px;
font-size:18px;
}
.documents-note{
padding:25px;
}
}

/*====================================
            FAQ SECTION
====================================*/
.faq-section{
    padding:50px 20px;
    background:#fff;
}
.faq-header{
    max-width:700px;
    margin-bottom:50px;
}
.faq-header h2{
    font-size:42px;
    color:#134580;
    margin:18px 0;
}
.faq-header h2 span{
    color:#FF510E;
}
.faq-header p{
    color:#666;
    line-height:1.8;
}
/* FAQ */
.faq-container{
    max-width:900px;
    margin:auto;
}
.faq-item{
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
}
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 25px;
    cursor:pointer;
    background:#fff;
}
.faq-question h3{
    color:#134580;
    font-size:18px;
    margin:0;
}
.faq-question span{
    font-size:28px;
    color:#FF510E;
    transition:.3s;
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s;
    background:#f8fbff;
}
.faq-answer p{
    padding:20px 25px;
    margin:0;
    color:#666;
    line-height:1.8;
}
.faq-item.active .faq-answer{
    max-height:180px;
}
.faq-item.active .faq-question span{
    transform:rotate(45deg);
}
/* Hidden FAQs */
.more-faqs{
    display:none;
}
/* Button */
#viewMoreFaq{
    display:block;
    margin:40px auto 0;
    padding:15px 40px;
    border:none;
    background:#134580;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    border-radius:8px;
    transition:.3s;
}
#viewMoreFaq:hover{
    background:#FF510E;
}

/* Responsive */
@media(max-width:768px){
.faq-section{
padding:70px 18px;
}
.faq-header h2{
font-size:32px;
}
.faq-question{
padding:18px;
}
.faq-question h3{
font-size:16px;
}
}

/*====================================
            FINAL CTA
====================================*/
.final-cta{
    padding:50px 20px;
    background:linear-gradient(135deg,#134580,#0d2f59);
    color:#fff;
    text-align:center;
}
.cta-content{
    max-width:850px;
    margin:auto;
}
.cta-content h2{
    font-size:42px;
    line-height:1.3;
    margin:20px 0;
    color:#fff;
}
.cta-content h2 span{
    color:#FFB48A;
}
.cta-content p{
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    font-size:17px;
}
/* Buttons */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}
.btn-primary,
.btn-secondary{
    padding:16px 40px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}
.btn-primary{
    background:#FF510E;
    color:#fff;
}
.btn-primary:hover{
    background:#ff6d35;
    transform:translateY(-3px);
}
.btn-secondary{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
}
.btn-secondary:hover{
    background:#fff;
    color:#134580;
}
/* Features */
.cta-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}
.feature{
    padding:12px 20px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:30px;
    background:rgba(255,255,255,.08);
    font-size:15px;
}
/*====================
Responsive
=====================*/
@media(max-width:992px){
.cta-content h2{
font-size:40px;
}
}
@media(max-width:768px){
.final-cta{
padding:70px 18px;
}
.cta-content h2{
font-size:30px;
}
.cta-content p{
font-size:15px;
}
.cta-buttons{
flex-direction:column;
align-items:center;
}
.btn-primary,
.btn-secondary{
width:100%;
max-width:320px;
text-align:center;
}
.feature{
width:100%;
text-align:center;
}
}