:root {
    --primary-green: #1d8884;
    --dark-green: #13514e;
    --primary-red: #E42525;
    --mint: #9fd4c0;
    --white: #ffffff;
    --light-bg: #f5faf7;
    --text-dark: #222222;
    --border-color: #e5e5e5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --font-primary: "Poppins", sans-serif;
}

/* ==========================
   PLACEMENT PAGE BANNER
========================== */

/* ==========================
   PLACEMENT BANNER
========================== */

.placement-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background: url("../images/placement_banner.webp")
        center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* .placement-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
} */

.placement-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
}

.placement-banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.placement-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.placement-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.placement-breadcrumb a:hover {
    color: var(--primary-green);
}

.placement-breadcrumb span {
    color: #fff;
    font-size: 15px;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .placement-banner{
        min-height: 350px;
        background-position: center center;
    }

    .placement-banner-content h1{
        font-size: 46px;
    }

    .placement-breadcrumb{
        gap: 8px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px){

    .placement-banner{
        min-height: 220px;

        background:
            url("../images/placement_mobile_banner.webp");

        background-size: cover;
        background-position: center 35px;
        background-repeat: no-repeat;
    }

    .placement-banner-content{
        padding: 0 12px;
    }

    .placement-banner-content h1{
        font-size: 30px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .placement-breadcrumb{
        gap: 5px;
    }

    .placement-breadcrumb a,
    .placement-breadcrumb span{
        font-size: 13px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 360px){

    .placement-banner{
        min-height: 180px;
    }

    .placement-banner-content h1{
        font-size: 24px;
    }

    .placement-breadcrumb a,
    .placement-breadcrumb span{
        font-size: 12px;
    }
}

/* =========================
PLACEMENT INTRODUCTION
========================= */

.placement-intro {
    padding: 50px 0;
    background: #fff;
}

.placement-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: rgba(29, 136, 132, 0.12);
    color: var(--primary-green);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.placement-intro-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.placement-intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.placement-btn {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: .4s;
}

.placement-btn:hover {
    background: var(--primary-red);
    transform: translateY(-4px);
}

.placement-intro-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: var(--shadow);
}

/* =========================
PLACEMENT STATISTICS
========================= */

.placement-stats {
    padding: 50px 0;
    background: var(--light-bg);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: var(--primary-red);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
    border-bottom: 4px solid var(--primary-green);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* =========================
ANIMATION
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .placement-intro-wrapper{
        grid-template-columns:1fr;
    }

    .placement-intro-content{
        order:2;
    }

    .placement-intro-image{
        order:1;
    }

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

    .placement-intro-content h2,
    .section-heading h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .placement-intro,
    .placement-stats{
        padding:70px 0;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .placement-intro-content h2,
    .section-heading h2{
        font-size:28px;
    }

    .stat-card h3{
        font-size:40px;
    }
}


/* =========================
SALARY SHOWCASE
========================= */

.salary-showcase {
    padding: 50px 0;
    background: #fff;
}

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

.salary-title span {
    color: var(--primary-red);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.salary-title h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.salary-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.salary-box {
    flex: 1;
    max-width: 450px;
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
    opacity: 0;
    transform: translateY(40px);
}

.salary-box.show {
    opacity: 1;
    transform: translateY(0);
}

.salary-box:hover {
    transform: translateY(-8px);
}

.highest {
    border-top: 5px solid var(--primary-red);
}

.average {
    border-top: 5px solid var(--primary-green);
}

.salary-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.salary-amount {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.highest .salary-amount {
    color: var(--primary-red);
}

.average .salary-amount {
    color: var(--primary-green);
}

.salary-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.salary-divider {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background:var(--primary-green);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    flex-shrink: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .salary-wrapper {
        flex-direction: column;
    }

    .salary-divider {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .salary-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .salary-showcase {
        padding: 70px 0;
    }

    .salary-box {
        padding: 30px 20px;
    }

    .salary-amount {
        font-size: 42px;
    }

    .salary-title h2 {
        font-size: 28px;
    }
}


/* ===================================
PLACEMENT PROCESS
=================================== */

.placement-process-section{
    padding:50px 0;
    background:#f5faf7;
    overflow:hidden;
}

.process-heading{
    text-align:center;
    margin-bottom:50px;
}

.process-heading span{
    color:var(--primary-red);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.process-heading h2{
    margin-top:10px;
    font-size:42px;
    color:var(--text-dark);
    font-weight: 700;
}

.process-slider{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    scroll-behavior: smooth;
}

.process-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.4s;
    border-top:4px solid var(--primary-green);

    opacity:0;
    transform:translateY(40px);
}

.process-card.show{
    opacity:1;
    transform:translateY(0);
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:70px;
    height:70px;
    background:var(--primary-green);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:20px;
    font-weight:700;
}

.process-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.process-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}
.process-slider::-webkit-scrollbar {
    display: none;
}

.process-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* ==========================
LARGE TABLETS (992px - 1199px)
========================== */
@media (max-width: 1199px) {
    .process-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-heading h2 {
        font-size: 36px;
    }

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

/* ==========================
TABLETS (768px - 991px)
========================== */
@media (max-width: 991px) {
    .placement-process-section {
        padding: 60px 0;
    }

    .process-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-heading {
        margin-bottom: 40px;
    }

    .process-heading h2 {
        font-size: 32px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .process-number {
        width: 65px;
        height: 65px;
        font-size: 18px;
    }
}

/* ==========================
MOBILE DEVICES (576px - 767px)
========================== */
@media (max-width: 767px) {
    .placement-process-section {
        padding: 50px 0;
    }

    .process-heading {
        margin-bottom: 30px;
    }

    .process-heading h2 {
        font-size: 28px;
    }

    .process-slider {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .process-slider::-webkit-scrollbar {
        display: none;
    }

    .process-card {
        min-width: 280px;
        max-width: 280px;
        flex: 0 0 auto;
        padding: 25px 20px;
        scroll-snap-align: center;
    }

    .process-card h3 {
        font-size: 19px;
    }

    .process-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* ==========================
SMALL MOBILE DEVICES
========================== */
@media (max-width: 480px) {
    .placement-process-section {
        padding: 40px 0;
    }

    .process-heading h2 {
        font-size: 24px;
    }

    .process-card {
        min-width: 250px;
        max-width: 250px;
        padding: 22px 18px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 13px;
    }

    .process-number {
        width: 55px;
        height: 55px;
        font-size: 16px;
    }
}

/* ==========================
EXTRA SMALL DEVICES
========================== */
@media (max-width: 360px) {
    .process-card {
        min-width: 220px;
        max-width: 220px;
        padding: 20px 15px;
    }

    .process-heading h2 {
        font-size: 22px;
    }

    .process-card h3 {
        font-size: 17px;
    }

    .process-card p {
        font-size: 12px;
    }
}
/* ==========================
RECRUITERS
========================== */

.recruiters-section {
    background: #fff;
    overflow: hidden;
}
.section-title .sub-title {
    color: #13C5DD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #13C5DD;
    margin-bottom: 15px;
}
.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}
/* Slider */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
    
}
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}
.logo-card {
    width: 220px;
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    margin-top: 10px;
    
}
.logo-card:hover {
    transform: translateY(-8px);
    border-color: #13C5DD;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}
.logo-card img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: .4s;
}
/* .logo-card:hover img {
    filter: grayscale(0%);
} */
/* Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Tablet */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 34px;
    }
    .logo-card {
        width: 180px;
        height: 100px;
    }
    .logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}
}
/* Mobile */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
    .logo-card {
        width: 150px;
        height: 90px;
    }
    .logo-card img {
        max-width: 100px;
    }
    
}


/* ==================================
CAREER SUPPORT
================================== */

.career-support{
    padding:50px 0;
    background:#fff;
}

.career-support-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.career-support-heading span{
    color:var(--primary-red);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.career-support-heading h2{
    font-size:42px;
    color:var(--text-dark);
    margin:10px 0 15px;
    font-weight: 700;
}

.career-support-heading p{
    color:#666;
    line-height:1.8;
}

.career-support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.support-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
    border-bottom:4px solid transparent;
    opacity:0;
    transform:translateY(40px);
}

.support-card.show{
    opacity:1;
    transform:translateY(0);
}

.support-card:hover{
    border-color:var(--primary-green);
    transform:translateY(-8px);
}

.support-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(29,136,132,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-icon i{
    font-size:30px;
    color:var(--primary-green);
}

.support-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:var(--text-dark);
}

.support-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/* ==========================
TABLET
========================== */

@media(max-width:991px){

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

    .career-support-heading h2{
        font-size:34px;
    }
}

/* ==========================
MOBILE
========================== */

@media(max-width:767px){

    .career-support{
        padding:70px 0;
    }

    .career-support-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .career-support-heading h2{
        font-size:28px;
    }

    .career-support-heading p{
        font-size:15px;
    }

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

    .support-card h3{
        font-size:20px;
    }
}


/* ===================================
INDUSTRY COLLABORATION
=================================== */

.industry-collaboration{
    padding:50px 0;
    background:#f5faf7;
}

.industry-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.industry-heading h2{
    font-size:42px;
    color:var(--text-dark);
    margin-bottom:15px;
    font-weight: 700;
}

.industry-heading p{
    color:#666;
    line-height:1.8;
}

.collaboration-timeline{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.collaboration-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:var(--primary-green);
    transform:translateX(-50%);
}

.collaboration-item{
    width:50%;
    padding:0 40px;
    position:relative;
    margin-bottom:40px;
}

.collaboration-item.left{
    left:0;
}

.collaboration-item.right{
    left:50%;
}

.collaboration-content{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow);
    position:relative;
    transition:.4s;
    opacity:0;
    transform:translateY(40px);
}

.collaboration-content.show{
    opacity:1;
    transform:translateY(0);
}

.collaboration-content:hover{
    transform:translateY(-8px);
}

.collaboration-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(29,136,132,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.collaboration-icon i{
    color:var(--primary-green);
    font-size:26px;
}

.collaboration-content h3{
    margin-bottom:12px;
    color:var(--text-dark);
}

.collaboration-content p{
    color:#666;
    line-height:1.7;
    margin:0;
}

.collaboration-item::after{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    background:var(--primary-red);
    border-radius:50%;
    top:35px;
}

.collaboration-item.left::after{
    right:-9px;
}

.collaboration-item.right::after{
    left:-9px;
}

/* ==========================
TABLET
========================== */

@media(max-width:991px){

    .industry-heading h2{
        font-size:34px;
    }

    .collaboration-item{
        padding:0 25px;
    }
}

/* ==========================
MOBILE
========================== */

@media(max-width:767px){

    .industry-collaboration{
        padding:70px 0;
    }

    .industry-heading h2{
        font-size:28px;
    }

    .collaboration-timeline::before{
        left:20px;
    }

    .collaboration-item,
    .collaboration-item.left,
    .collaboration-item.right{
        width:100%;
        left:0;
        padding-left:55px;
        padding-right:0;
    }

    .collaboration-item::after{
        left:11px;
        right:auto;
    }

    .collaboration-content{
        padding:25px;
    }
}


/* ==================================
INTERNSHIP OPPORTUNITIES
================================== */

.internship-opportunities{
    padding:50px 0;
    background:#fff;
}

.internship-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.internship-heading h2{
    font-size:42px;
    color:var(--text-dark);
    margin-bottom:15px;
}

.internship-heading p{
    color:#666;
    line-height:1.8;
}

.internship-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.internship-item{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:var(--shadow);
    border-left:6px solid var(--primary-green);
    transition:.4s ease;
    opacity:0;
    transform:translateX(-40px);
}

.internship-item.show{
    opacity:1;
    transform:translateX(0);
}

.internship-item:hover{
    border-left-color:var(--primary-red);
    transform:translateX(10px);
}

.internship-icon{
    width:80px;
    height:80px;
    flex-shrink:0;
    border-radius:18px;
    background:rgba(29,136,132,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.internship-icon i{
    font-size:32px;
    color:var(--primary-green);
}

.internship-content h3{
    margin-bottom:10px;
    color:var(--text-dark);
    font-size:24px;
}

.internship-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/* ==========================
TABLET
========================== */

@media(max-width:991px){

    .internship-heading h2{
        font-size:34px;
    }

    .internship-content h3{
        font-size:22px;
    }
}

/* ==========================
MOBILE
========================== */

@media(max-width:767px){

    .internship-opportunities{
        padding:70px 0;
    }

    .internship-heading h2{
        font-size:28px;
    }

    .internship-item{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
        gap:18px;
    }

    .internship-icon{
        width:70px;
        height:70px;
    }

    .internship-icon i{
        font-size:28px;
    }

    .internship-content h3{
        font-size:20px;
    }

    .internship-content p{
        font-size:15px;
    }
}


/* Testimonial Section */
.testimonial-section{
    padding:80px 0;
    background:white;
}

.testimonial-heading{
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.testimonial-heading span{
    color:var(--primary-green);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.testimonial-heading h2{
    font-size:42px;
    font-weight:700;
    margin:12px 0;
}

.testimonial-heading p{
    color:#666;
}

.testimonial-card{
    background:var(--light-bg);
    border-radius:20px;
    padding:30px;
    height:100%;
    /* box-shadow:0 10px 30px rgba(0,0,0,.08); */
    /* transition:.4s; */
    position:relative;
    overflow:hidden;
    margin-top: 20px;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#1d8884;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.quote-icon{
    width:60px;
    height:60px;
    background:#1d8884;
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.rating{
    color:#ffc107;
    margin-bottom:15px;
    font-size:18px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    border-top:1px solid #eee;
    padding-top:20px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #1d8884;
}

.testimonial-user h5{
    margin:0;
    font-size:17px;
    font-weight:600;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

/* Pagination Dots */

.carousel-indicators{
    margin-bottom:0;
}

.carousel-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50% !important;
    background:#cfd8dc !important;
    border:none !important;
    opacity:1;
}

.carousel-indicators .active{
    background:#1d8884 !important;
    transform:scale(1.4);
}

/* Responsive */

@media(max-width:991px){

    .testimonial-heading h2{
        font-size:34px;
    }

    .testimonial-card{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-heading h2{
        font-size:28px;
    }

    .testimonial-card{
        padding:25px;
    }
}