:root{
    --primary:#134580;
    --secondary:#FF510E;
    --text:#222;
    --light:#ffffff;
    --border:#e6e6e6;
    --bg:#f7f9fc;
}
/*==============================
 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%20Desktop.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:56px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
    /* width: 30%; */
}
.placement-left h1 span{
    color:#0c4b8e;
}
.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;
}
/*====================================
      RECRUITER SHOWCASE
====================================*/

.recruiter-showcase{
    margin-top:40px;
}

/* Badges */

.recruiter-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.recruiter-badges span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    background:#fff;
    border:1px solid #d9e2f2;
    border-radius:8px;
    color:#134580;
    font-size:14px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
    transition:.3s;
}

.recruiter-badges span:hover{
    background:#134580;
    color:#fff;
    transform:translateY(-3px);
}

.recruiter-badges i{
    color:#16a34a;
}

/* Heading */

.recruiter-section h4{
    font-size:30px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:20px;
}

.recruiter-section h4 span{
    color:#FF510E;
}

/* Logos */

.recruiter-logos{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    overflow: hidden;
}

.recruiter-logo-card{
    height:80px;
    background:#fff;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.recruiter-logo-card:hover{
    transform:translateY(5px);
    box-shadow:0 15px 30px rgba(19,69,128,.15);
}

.recruiter-logo-card img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
}
/* Mobile Auto Slider */
@media (max-width:767px){

    .recruiter-logos{
        display:flex;
        gap:15px;
        overflow-x:auto;
        overflow-y:hidden;
        scroll-behavior:smooth;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        padding-bottom:10px;
    }

    .recruiter-logos::-webkit-scrollbar{
        display:none;
    }

    .recruiter-logo-card{
        flex:0 0 75%;
        height:80px;
    }
}

@media (max-width:575px){

    .recruiter-logo-card{
        flex:0 0 85%;
    }
}
/*==============================
 MOBILE (768px)
===============================*/
@media (max-width:768px){

    .banner-bg{
        background: url("assets/placement-images/Banner%20Desktop.webp") center center/cover no-repeat;
        background-size: cover;
        background-position: center;
        transform: scale(1);
    }
    .placement-buttons{
        margin-top: 50px;
    }

}

/*==============================
 SMALL MOBILE (576px)
===============================*/
@media (max-width:576px){

    .banner-bg{
        background: url("assets/placement-images/Banner%20Desktop.webp") center center/cover no-repeat;
        background-size: cover;
        background-position: center;
        transform: scale(1);
    }

     .placement-buttons{
        margin-top: 380px;
    }
}
/* Responsive */

@media(max-width:991px){

.recruiter-logos{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:576px){

.recruiter-badges{
    justify-content:center;
}

.recruiter-badges span{
    font-size:13px;
    padding:8px 12px;
}

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

.recruiter-section h4{
    text-align:center;
    font-size:24px;
}

}

/*==============================
 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;
}
.error{
    color:#e63946;
    font-size:13px;
    display:block;
    margin-top:6px;
}

.input-box input.error-border,
.input-box select.error-border{
    border:2px solid #e63946;
}

.input-box input.success-border,
.input-box select.success-border{
    border:2px solid #28a745;
}
/*==============================
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:480px){
.placement-container{
    width:92%;
}
.placement-left h1{
    font-size:30px;
}
.placement-buttons{
    flex-direction:column;
}
.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}
.student-image img{
    width:220px;
}
.placement-form{
    padding:22px;
}
}

/* About COeb */
/*=====================================
        ABOUT PLACEMENT
======================================*/
.coeb-about-placement{
    background:#ffffff;
    padding:80px 0;
}
.about-placement-content{
    animation:fadeUp .8s ease;
}
.about-title{
    font-size:42px;
    font-weight:700;
    color:#0B4F9C;
    margin-bottom:35px;
    position:relative;
}
/* .about-title::after{
    content:"";
    width:90px;
    height:5px;
    background:#D4AF37;
    display:block;
    margin-top:15px;
    border-radius:30px;
} */
.about-placement-content p{
    font-size:21px;
    line-height:1.9;
    color:#444;
    margin-bottom:28px;
    text-align:justify;
}
.about-placement-content strong{
    color:#0B4F9C;
}
/*============================
      Animation
=============================*/
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*============================
      Responsive
=============================*/
@media(max-width:991px){
.about-title{
font-size:42px;
}
.about-placement-content p{
font-size:18px;
line-height:1.8;
}
}
@media(max-width:768px){
.coeb-about-placement{
padding:60px 0;
}
.about-title{
font-size:34px;
text-align:center;
}
.about-title::after{
margin:15px auto;
}
.about-placement-content p{
font-size:17px;
text-align:left;
}
}
@media(max-width:576px){
.about-title{
font-size:30px;
}
.about-placement-content p{
font-size:16px;
}
}
/* =========================
   PLACEMENT HIGHLIGHTS
========================= */
.placement-highlights{
    padding:60px 0;
    background:#f5f6f8;
}
.section-title{
    color:#0f4c97;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
    text-align: center;
}
.highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}
.highlight-card{
    background:#fff;
    border:1.5px solid #000;
    border-radius:28px;
    padding:40px 25px;
    text-align:center;
    transition:.4s ease;
}
.highlight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.highlight-card h3{
    font-size:38px;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
}
.highlight-card p{
    color:#666;
    font-size:15px;
    margin-top: -27px;
}
@media(max-width:991px){
    .highlights-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .highlights-grid{
        grid-template-columns:1fr;
    }
    .section-title{
        font-size:38px;
    }
    .highlight-card h3{
        font-size:44px;
    }
}
/* PLaced students */
/*==============================
    OUR PLACED STUDENTS
==============================*/
.placed-students-section{
    padding:80px 0;
    background:white;
    overflow:hidden;
}

.placed-heading{
    text-align:center;
    margin-bottom:40px;
}
.placed-heading h2{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:12px;
}
.placed-heading p{
    font-size:17px;
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}
/*==============================
FILTERS
==============================*/
.placement-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}
.filter-btn{
    border:1px solid #d8d8d8;
    background:#fff;
    color:#444;
    padding:12px 28px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
    cursor:pointer;
}
.filter-btn:hover{
    background:var(--secondary);
    color:#fff;
    border-color:var(--secondary);
}
.filter-btn.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}
/*=========================
Tablet
=========================*/
@media (max-width:991px){
    .placement-filters{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;
        padding-bottom:10px;
        gap:12px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }
    .placement-filters::-webkit-scrollbar{
        display:none;
    }
    .filter-btn{
        padding:10px 22px;
        font-size:14px;
    }
}
/*=========================
Mobile
=========================*/
/* Mobile */
@media (max-width:576px){
    .placement-filters{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:10px;
        margin-bottom:30px;
    }
    .filter-btn{
        width:100%;
        padding:10px;
        font-size:13px;
        text-align:center;
    }
}
/*=========================
Small Mobile
=========================*/
@media (max-width:400px){
    .filter-btn{
        padding:8px 15px;
        font-size:12px;
    }
}
/*==============================
GRID
==============================*/
.placement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
/*==============================
CARD
==============================*/
.placement-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}
.placement-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(19,69,128,.18);
}
/*==============================
IMAGE
==============================*/
.student-image{
    position:relative;
    overflow:hidden;
    height:260px;
}
.student-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
/* .placement-card:hover img{

    transform:scale(1.08);

} */
.student-image::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:0;
height:90px;
background:linear-gradient(transparent,rgba(0,0,0,.55));
}
/*==============================
COMPANY BADGE
==============================*/
.company{
position:absolute;
bottom:15px;
right:15px;
background:#fff;
padding:8px 16px;
border-radius:6px;
font-size:13px;
font-weight:700;
color:var(--primary);
z-index:10;
box-shadow:0 5px 15px rgba(0,0,0,.15);
transition:.3s;
}
.placement-card:hover .company{
background:var(--secondary);
color:#fff;
}
/*==============================
CONTENT
==============================*/
.student-info{
padding:22px;
}
.student-info h3{
font-size:20px;
font-weight:700;
color:var(--primary);
margin-bottom:12px;
}
.branch{
font-size:16px;
color:#666;
margin-bottom:18px;
}
.student-info h5{
font-size:19px;
font-weight:600;
color:#184e63;
line-height:1.5;
}
/*==============================
VIEW ALL
==============================*/
#viewAllBtn{
    background:#134580;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    margin-left: 40%;
    margin-top: 30px;
}
#viewAllBtn:hover{
    background:#FF510E;
    transform:translateY(-3px);
}
/*==============================
SCROLL ANIMATION
==============================*/

/* .placement-card{

opacity:0;

transform:translateY(50px);

} */
.placement-card.show{
opacity:1;
transform:translateY(0);
transition:.7s ease;
}
/*==============================
RESPONSIVE
==============================*/
@media(max-width:1200px){
.placement-grid{
grid-template-columns:repeat(3,1fr);
}
}
@media(max-width:991px){
.placed-heading h2{
font-size:34px;
}
.placement-grid{
grid-template-columns:repeat(2,1fr);
}
.student-image{
height:240px;
}
}
@media(max-width:768px){
.placement-filters{
justify-content:flex-start;
overflow-x:auto;
padding-bottom:10px;
flex-wrap:nowrap;
}
.filter-btn{
white-space:nowrap;
}
}
@media(max-width:576px){
.placement-grid{
grid-template-columns:1fr;
}
.placed-heading h2{
font-size:28px;
}
.student-image{
height:280px;
}
/* .student-image img{
    margin-top: 20px;
} */
.student-info h3{
font-size:24px;
}
.branch{
font-size:15px;
}
.student-info h5{
font-size:18px;
}
#viewAllBtn{
width:100%;
}
}
/*=====================================
Large Desktop (1400px)
=====================================*/
@media (max-width:1400px){
    .placement-grid{
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }
}
/*=====================================
Laptop
=====================================*/
@media (max-width:1200px){
    .placement-grid{
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }
    .student-image{
        height:240px;
    }
    .student-info h3{
        font-size:24px;
    }
}

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

@media (max-width:991px){
    .placed-students-section{
        padding:70px 0;
    }
    .placed-heading h2{
        font-size:34px;
    }
    .placed-heading p{
        font-size:16px;
    }
    .placement-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }
    .student-image{
        height:220px;
    }
     .student-image img{
        height:300px;
    }
    .student-info{
        padding:18px;
    }
    .student-info h3{
        font-size:22px;
    }
    .student-info h5{
        font-size:18px;
    }
    .branch{
        font-size:15px;
    }
}
/*=====================================
Mobile Landscape
=====================================*/
@media (max-width:768px){
    .placement-filters{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        gap:12px;
        padding-bottom:12px;
        scrollbar-width:none;
    }
    .placement-filters::-webkit-scrollbar{
        display:none;
    }
    .filter-btn{
        white-space:nowrap;
        padding:10px 22px;
        font-size:14px;
    }
    .placement-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }
    .student-image{
        height:200px;
    }
     .student-image img{
        height:300px;
    }
    .student-info h3{
        font-size:20px;
    }
}
/*=====================================
Mobile
=====================================*/
@media (max-width:576px){
    .placed-students-section{
        padding:60px 0;
    }
    .placed-heading{
        margin-bottom:30px;
    }
    .placed-heading h2{
        font-size:28px;
    }
    .placed-heading p{
        font-size:15px;
        line-height:1.6;
    }
    .placement-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .student-image{
        height:260px;
    }
     .student-image img{
        height:300px;
    }
    .student-info{
        padding:18px;
    }
    .student-info h3{
        font-size:22px;
    }
    .student-info h5{
        font-size:17px;
    }
    .branch{
        font-size:15px;
    }
    .company{
        padding:7px 14px;
        font-size:12px;
    }
    #viewAllBtn{
        display:block;
        width:220px;
        margin:30px auto 0;
        padding:12px 25px;
        font-size:15px;
    }
}
/*=====================================
Small Mobile
=====================================*/
@media (max-width:400px){
    .placed-heading h2{
        font-size:24px;
    }
    .student-image{
        height:220px;
    }
    .student-info h3{
        font-size:20px;
    }
    .student-info h5{
        font-size:16px;
    }
    .filter-btn{
        padding:9px 18px;
        font-size:13px;
    }
    #viewAllBtn{
        width:100%;
    }
}
/* ===== Font Awesome Career Section ===== */
.fa-career-section{
  padding: 80px 20px;
  background: var(--bg);
  font-family: 'inter',sans-serif;
}

.section-title h2{
  font-size: 42px;
  color: #0f4c97;
  top: 120px;
}

/* Grid */
.fa-grid{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* Card */
.fa-card{
  background: white !important;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* hover effect */
.fa-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px #0f4c9727;
}
/* icon */
.fa-icon{
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(19,197,221,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f4c97;
  transition: 0.4s;
}
/* icon hover animation */
.fa-card:hover .fa-icon{
  background: #0f4c97;
  color: white;
  transform: rotate(10deg) scale(1.1);
}
/* text */
.fa-card h3{
  margin-top: 15px;
  font-size: 18px;
  color: black;
}
.fa-card p{
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
/* Responsive */
@media(max-width: 992px){
  .fa-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  .fa-grid{
    grid-template-columns: 1fr;
  }
}
 /* How it Works */
/*==============================
COEB Placement Process
===============================*/
.coeb-process-section{
    padding:90px 0;
    background:white;
    overflow:hidden;
}
.coeb-process-section .container{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}
/* Heading */
.section-heading{
    text-align:center;
    margin-bottom:70px;
}
.section-heading span{
    color:#FF510E;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}
.section-heading h2{
    font-size:42px;
    color:#134580;
    font-weight:700;
    margin:12px 0;
}
/* .section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:28px;
} */
/* Cards */
.process-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.process-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:45px 30px;
    text-align:center;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    transition:.45s;
    overflow:hidden;
}
/* Connector */
.process-card .line{
    position:absolute;
    width:120px;
    height:4px;
    background:#134580;
    right:-70px;
    top:82px;
    z-index:1;
}
.process-card:last-child .line{
    display:none;
}
/* Number */
.step-number{
    position:absolute;
    top:20px;
    right:30px;
    font-size:50px;
    font-weight:700;
    color:#ff520eaf;
}
/* Icon */
.process-icon-box{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    background:#eaf6f5;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
    transition:.45s;
    position:relative;
    z-index:2;
}
.process-icon-box i{
    font-size:48px;
    color:#134580;
    transition:.4s;
}
/* Active Card */
.process-card.active .icon-box{
    background:#134580;
}
.process-card.active i{
    color:#fff;
}
/* Hover */
.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 70px rgba(19,69,128,.18);
}
.process-card:hover .icon-box{
    background:#FF510E;
    transform:rotate(360deg);
}
.process-card:hover i{
    color:#0f4c9765;
}
.process-card:hover .line{
    background:#FF510E;
}
.process-card h3{
    color:#134580;
    font-size:30px;
    margin-bottom:18px;
    font-weight:700;
}
.process-card p{
    color:#666;
    font-size:18px;
    line-height:32px;
}
/* Reveal Animation */
.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:1s;
}
.reveal.activeReveal{
    opacity:1;
    transform:translateY(0);
}
/* Floating Animation */
.process-card{
    animation:float 4s ease-in-out infinite;
}
.process-card:nth-child(2){
    animation-delay:.4s;
}
.process-card:nth-child(3){
    animation-delay:.8s;
}
.process-card:nth-child(4){
    animation-delay:1.2s;
}
@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
}
/* Responsive */
@media(max-width:1200px){
.process-wrapper{
grid-template-columns:repeat(2,1fr);
}
.process-card .line{
display:none;
}
}
@media(max-width:768px){
.section-heading h2{
font-size:34px;
}
.process-wrapper{
grid-template-columns:1fr;
gap:25px;
}
.process-card{
padding:40px 25px;
}
.step-number{
font-size:55px;
}
.process-card h3{
font-size:26px;
}

.icon-box{
width:90px;
height:90px;
}
.icon-box i{
font-size:38px;
}
}
/* Recruiter's section */
/*==============================
Recruiters Section
===============================*/

.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:180px;
    max-height:80px;
    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 SECTION
==================================================*/
.coeb-testimonial{
    background:#f8fafc;
    padding:90px 0;
    overflow:hidden;
}
.testimonial-title{
    font-size:42px;
    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:45px !important;
    height:45px !important;
    border-radius:50%;
    background:#ffffff;
    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 !important;
    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:20px;      /* 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-image img{
        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;
    }

}
/* Our Placement Head */
/*=========================================
OUR PLACEMENT HEAD
=========================================*/

.placement-head-section{
    padding:50px 0;
    background:linear-gradient(180deg,#f7fbff,#eef5ff);
    overflow:hidden;
}

.placement-head-title{
    text-align:center;
    margin-bottom:60px;
}

.placement-head-title h2{
    font-size:42px;
    font-weight:800;
    color:#134580;
    margin-bottom:18px;
}

/* Divider */

.title-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.title-divider span{
    width:70px;
    height:3px;
    background:#cddcf6;
    position:relative;
}

.title-divider span:nth-child(1)::after,
.title-divider span:nth-child(3)::after{
    content:"";
    position:absolute;
    right:-18px;
    top:0;
    width:18px;
    height:3px;
    background:#7aa7f8;
}
.diamond{
    width:14px;
    height:14px;
    border:3px solid #4f8df8;
    transform:rotate(45deg);
    display:block;
}
/*=====================================
CARD
=====================================*/
.placement-head-card{
    display:flex;
    align-items:center;
    gap:65px;
    background:#fff;
    border-radius:35px;
    padding:30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 18px 55px rgba(19,69,128,.10);
    transition:.45s;
}
.placement-head-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(19,69,128,.18);
}
/*=====================================
LEFT IMAGE
=====================================*/
.placement-head-image{
    width:52%;
}
.placement-head-image img{
    width:100%;
    height:710px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
}
.placement-head-card:hover img{
    transform:scale(1.03);
}
/*=====================================
RIGHT CONTENT
=====================================*/
.placement-head-content{
    width:48%;
    position:relative;
}
.quote-icon{
    position:absolute;
    right:0;
    top:-20px;
    font-size:130px;
    color:#eaf1ff;
    line-height:1;
}
.placement-head-content h3{
    font-size:38px;
    color:#134580;
    font-weight:800;
    margin-bottom:18px;
}
.name-line{
    width:110px;
    height:4px;
    background:#4f8df8;
    border-radius:5px;
    margin-bottom:30px;
}
.placement-head-content h5{
    font-size:18px;
    color:#222;
    font-weight:500;
    margin-bottom:35px;
}
.placement-head-content hr{
    border:none;
    height:1px;
    background:#d9dfe8;
    margin-bottom:35px;
}
/*=====================================
EXPERIENCE
=====================================*/
.experience-box{
    display:flex;
    gap:25px;
    align-items:flex-start;
}
.experience-icon{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#134580;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    flex-shrink:0;
    transition:.4s;
}
.placement-head-card:hover .experience-icon{
    background:#FF510E;
    transform:rotate(10deg);
}
.experience-content span{
    color:#134580;
    font-size:18px;
    font-weight:700;
}
.experience-content h4{
    font-size:50px;
    color:#222;
    margin:10px 0;
    font-weight:800;
}
.experience-content p{
    font-size:18px;
    color:#666;
    line-height:1.6;
    margin:0;
}
/*=====================================
DESCRIPTION
=====================================*/
.placement-description{
    margin-top:40px;
}
.placement-description p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}
/*=====================================
DOTS
=====================================*/
.dots-pattern{
    position:absolute;
    right:35px;
    bottom:35px;
    display:grid;
    grid-template-columns:repeat(4,8px);
    gap:12px;
}
.dots-pattern span{
    width:6px;
    height:6px;
    background:#d6e3ff;
    border-radius:50%;
}
/*=========================================
Large Laptop (1400px)
=========================================*/
@media (max-width:1400px){
    .placement-head-title h2{
        font-size:52px;
    }
    .placement-head-image img{
        height:750px;
    }
    .placement-head-content h3{
        font-size:48px;
    }
    .experience-content h4{
        font-size:42px;
    }
    .experience-content p{
        font-size:20px;
    }
}
/*=========================================
Laptop (1200px)
=========================================*/
@media (max-width:1200px){
    .placement-head-card{
        gap:40px;
        padding:25px;
    }
    .placement-head-image{
        width:48%;
    }
    .placement-head-content{
        width:52%;
    }
    .placement-head-image img{
        height:560px;
    }
    .placement-head-content h3{
        font-size:40px;
    }
    .placement-head-content h5{
        font-size:24px;
    }
    .experience-icon{
        width:80px;
        height:80px;
        font-size:34px;
    }
    .experience-content h4{
        font-size:36px;
    }
    .experience-content p{
        font-size:18px;
    }
}
/*=========================================
Tablet (992px)
=========================================*/
@media (max-width:991px){
    .placement-head-section{
        padding:70px 0;
    }
    .placement-head-title{
        margin-bottom:40px;
    }
    .placement-head-title h2{
        font-size:42px;
    }
    .placement-head-card{
        flex-direction:column;
        gap:35px;
        padding:22px;
    }
    .placement-head-image,
    .placement-head-content{
        width:100%;
    }
    .placement-head-image img{
        height:480px;
    }
    .placement-head-content{
        text-align:center;
    }
    .quote-icon{
        right:20px;
        top:-10px;
        font-size:90px;
    }
    .name-line{
        margin:20px auto;
    }
    .placement-head-content hr{
        margin:25px 0;
    }
    .experience-box{
        justify-content:center;
        text-align:left;
    }
    .dots-pattern{
        display:none;
    }
}
/*=========================================
Mobile (768px)
=========================================*/
@media (max-width:768px){
    .placement-head-section{
        padding:60px 0;
    }
    .placement-head-title h2{
        font-size:34px;
    }
    .title-divider span{
        width:45px;
    }
    .placement-head-image img{
        height:360px;
    }
    .placement-head-content h3{
        font-size:32px;
    }
    .placement-head-content h5{
        font-size:20px;
    }
    .experience-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
    .experience-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }
    .experience-content h4{
        font-size:32px;
    }
    .experience-content p{
        font-size:17px;
    }
    .placement-description p{
        font-size:16px;
    }
}
/*=========================================
Small Mobile (576px)
=========================================*/
@media (max-width:576px){
    .placement-head-title h2{
        font-size:28px;
    }
    .placement-head-card{
        padding:18px;
        border-radius:20px;
    }
    .placement-head-image img{
        height:280px;
        border-radius:16px;
    }
    .placement-head-content h3{
        font-size:26px;
    }
    .placement-head-content h5{
        font-size:18px;
    }
    .experience-icon{
        width:65px;
        height:65px;
        font-size:26px;
    }
    .experience-content span{
        font-size:16px;
    }
    .experience-content h4{
        font-size:28px;
    }
    .experience-content p{
        font-size:15px;
        line-height:1.7;
    }
    .placement-description{
        margin-top:25px;
    }
    .placement-description p{
        font-size:15px;
        line-height:1.8;
    }
    .quote-icon{
        font-size:65px;
    }
}
/*=========================================
Extra Small Mobile (400px)
=========================================*/
@media (max-width:400px){
    .placement-head-title h2{
        font-size:24px;
    }
    .placement-head-image img{
        height:340px;
    }
    .placement-head-content h3{
        font-size:22px;
    }
    .placement-head-content h5{
        font-size:16px;
    }
    .experience-content h4{
        font-size:24px;
    }
    .experience-content p{
        font-size:14px;
    }
}