/*====================================================
PLACEMENT PAGE
PART - 2A
HERO BANNER
====================================================*/

.pl-hero-section{
    padding:35px 0 45px;
    background:#ffffff;
    position:relative;
}

.pl-hero-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    min-height:420px;
    display:flex;
    align-items:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-bottom:4px solid #d40000;
}

.pl-hero-image{
    position:absolute;
    inset:0;
    z-index:1;
}

.pl-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.pl-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(
        90deg,
        rgba(15,15,15,.90) 0%,
        rgba(15,15,15,.82) 28%,
        rgba(15,15,15,.58) 48%,
        rgba(15,15,15,.15) 72%,
        rgba(15,15,15,0) 100%
    );
}

.pl-hero-content{
    position:relative;
    z-index:5;
    max-width:620px;
    padding:55px;
}

/*=====================================
Breadcrumb
=====================================*/

.pl-breadcrumb{
    margin-bottom:25px;
    background:transparent;
    padding:0;
}

.pl-breadcrumb .breadcrumb-item{

    font-size:15px;

    color:#ffffff;

}

.pl-breadcrumb a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.pl-breadcrumb a:hover{

    color:#ff5050;

}

.pl-breadcrumb i{

    margin-right:8px;

}

.pl-breadcrumb .breadcrumb-item+.breadcrumb-item::before{

    color:#ffffff;

}

/*=====================================
Heading
=====================================*/

.pl-hero-title{

    font-size:72px;

    font-weight:800;

    color:#ffffff;

    line-height:1.05;

    margin-bottom:12px;

}

.pl-title-line{

    width:85px;

    height:4px;

    background:#d40000;

    display:block;

    border-radius:10px;

    margin-bottom:25px;

}

/*=====================================
Description
=====================================*/

.pl-hero-description{

    font-size:22px;

    color:#f5f5f5;

    line-height:1.75;

    margin-bottom:35px;

}

/*=====================================
Buttons
=====================================*/

.pl-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.pl-btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:#d40000;

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(212,0,0,.25);

}

.pl-btn-primary:hover{

    background:#b10000;

    color:#ffffff;

    transform:translateY(-3px);

}

.pl-btn-primary i{

    transition:.3s;

}

.pl-btn-primary:hover i{

    transform:translateX(5px);

}

.pl-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.85);

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.pl-btn-outline:hover{

    background:#ffffff;

    color:#d40000;

}

/*=====================================
Decoration
=====================================*/

.pl-hero-wrapper::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(212,0,0,.10);

    right:-120px;

    top:-120px;

    z-index:3;

}

.pl-hero-wrapper::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-80px;

    bottom:-80px;

    z-index:3;

}

/*====================================================
Responsive
====================================================*/

@media (max-width:1199px){

.pl-hero-title{

font-size:60px;

}

.pl-hero-content{

padding:50px;

}

}

@media (max-width:991px){

.pl-hero-wrapper{

min-height:380px;

}

.pl-hero-content{

padding:45px;

}

.pl-hero-title{

font-size:50px;

}

.pl-hero-description{

font-size:20px;

}

}

@media (max-width:768px){

.pl-hero-section{

padding:25px 0 40px;

}

.pl-hero-wrapper{

min-height:340px;

border-radius:18px;

}

.pl-hero-overlay{

background:rgba(0,0,0,.72);

}

.pl-hero-content{

padding:35px 30px;

}

.pl-hero-title{

font-size:42px;

}

.pl-hero-description{

font-size:17px;

line-height:1.65;

}

.pl-hero-buttons{

flex-direction:column;

}

.pl-btn-primary,

.pl-btn-outline{

width:100%;

justify-content:center;

}

}

@media (max-width:576px){

.pl-hero-wrapper{

min-height:300px;

border-radius:16px;

}

.pl-hero-content{

padding:25px;

}

.pl-breadcrumb .breadcrumb-item{

font-size:13px;

}

.pl-hero-title{

font-size:34px;

}

.pl-title-line{

width:60px;

}

.pl-hero-description{

font-size:15px;

margin-bottom:25px;

}

.pl-btn-primary,

.pl-btn-outline{

padding:14px 20px;

font-size:15px;

}

}
/*====================================================
PLACEMENT PAGE
PART - 2B
STATISTICS SECTION
====================================================*/

.pl-stats-section{
    position:relative;
    padding:25px 0 70px;
    background:#ffffff;
}

.pl-stats-wrapper{
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.pl-stat-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:35px 25px;
    position:relative;
    transition:all .35s ease;
    height:100%;
}

.pl-stat-item::after{
    content:"";
    position:absolute;
    top:28px;
    right:0;
    width:1px;
    height:60%;
    background:#e8e8e8;
}

.col-lg:last-child .pl-stat-item::after{
    display:none;
}

.pl-stat-item:hover{
    background:#fff8f8;
    transform:translateY(-6px);
}

.pl-stat-icon{
    width:74px;
    height:74px;
    min-width:74px;
    border-radius:50%;
    background:#ffffff;
    border:2px solid #ffe4e4;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d40000;
    font-size:32px;
    box-shadow:0 8px 20px rgba(212,0,0,.12);
    transition:.35s;
}

.pl-stat-item:hover .pl-stat-icon{
    background:#d40000;
    color:#ffffff;
    transform:rotate(8deg) scale(1.08);
}

.pl-stat-content h3{
    margin:0;
    font-size:44px;
    font-weight:800;
    color:#d40000;
    line-height:1;
}

.pl-stat-content span{
    display:block;
    margin-top:8px;
    font-size:16px;
    font-weight:500;
    color:#444444;
}

/*=====================================
Counter Animation Style
=====================================*/

.pl-counter{
    letter-spacing:.5px;
}

/*=====================================
Tablet
=====================================*/

@media(max-width:991px){

.pl-stat-item{

padding:30px 20px;
justify-content:flex-start;

}

.pl-stat-item::after{

display:none;

}

.pl-stats-wrapper{

border-radius:18px;

}

.pl-stat-content h3{

font-size:36px;

}

}

/*=====================================
Mobile
=====================================*/

@media(max-width:767px){

.pl-stats-section{

padding:20px 0 50px;

}

.pl-stat-item{

padding:22px 18px;

gap:15px;

}

.pl-stat-icon{

width:60px;

height:60px;

min-width:60px;

font-size:24px;

}

.pl-stat-content h3{

font-size:30px;

}

.pl-stat-content span{

font-size:14px;

}

}

/*=====================================
Extra Small Devices
=====================================*/

@media(max-width:575px){

.pl-stats-wrapper{

border-radius:15px;

}

.pl-stat-item{

flex-direction:column;
text-align:center;
padding:22px 15px;

}

.pl-stat-icon{

margin-bottom:10px;

}

.pl-stat-content h3{

font-size:28px;

}

.pl-stat-content span{

font-size:13px;

}

}
/*====================================================
PLACEMENT PAGE
PART - 2C
HIRING PARTNERS SECTION
====================================================*/

.pl-partners-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/*==============================
Section Heading
==============================*/

.pl-section-tag{
    display:inline-block;
    padding:8px 22px;
    background:#ffe8e8;
    color:#d40000;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.pl-section-title{
    font-size:46px;
    font-weight:700;
    color:#111827;
    margin-bottom:18px;
    line-height:1.25;
}

.pl-section-title span{
    color:#d40000;
}

.pl-section-description{
    max-width:720px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
    font-size:16px;
}

/*==============================
Slider
==============================*/

.pl-partner-slider{
    position:relative;
    padding:25px 65px 70px;
}

/*==============================
Logo Card
==============================*/

.pl-logo-card{
    background:#ffffff;
    border-radius:18px;
    border:1px solid #eeeeee;
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.pl-logo-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border-color:#d40000;
}

.pl-logo-card img{
    max-width:150px;
    max-height:65px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.35s;
   
    opacity:.75;
}

.pl-logo-card:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.08);
}

/*==============================
Navigation
==============================*/

.pl-partner-prev,
.pl-partner-next{

    width:52px;
    height:52px;

    border-radius:50%;

    background:#ffffff;

    color:#d40000;

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

    z-index:10;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.pl-partner-prev{

    left:0;

}

.pl-partner-next{

    right:0;

}

.pl-partner-prev:hover,
.pl-partner-next:hover{

    background:#d40000;
    color:#ffffff;

}

/*==============================
Pagination
==============================*/

.pl-partner-pagination{

    bottom:0 !important;

}

.pl-partner-pagination .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d40000;

    opacity:.25;

}

.pl-partner-pagination .swiper-pagination-bullet-active{

    opacity:1;
    width:28px;
    border-radius:30px;

}

/*==============================
Background Decoration
==============================*/

.pl-partners-section::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(212,0,0,.04);

    left:-120px;

    top:-120px;

}

.pl-partners-section::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(212,0,0,.03);

    right:-80px;

    bottom:-80px;

}

/*====================================================
Responsive
====================================================*/

@media(max-width:1199px){

.pl-section-title{

font-size:40px;

}

}

@media(max-width:991px){

.pl-partners-section{

padding:80px 0;

}

.pl-partner-slider{

padding:20px 55px 60px;

}

.pl-logo-card{

height:130px;

}

}

@media(max-width:768px){

.pl-partners-section{

padding:70px 0;

}

.pl-section-title{

font-size:34px;

}

.pl-section-description{

font-size:15px;

}

.pl-partner-slider{

padding:15px 0 55px;

}

.pl-partner-prev,
.pl-partner-next{

display:none;

}

.pl-logo-card{

height:120px;

padding:20px;

}

.pl-logo-card img{

max-width:120px;

}

}

@media(max-width:576px){

.pl-partners-section{

padding:60px 0;

}

.pl-section-title{

font-size:28px;

}

.pl-section-tag{

font-size:13px;

padding:7px 18px;

}

.pl-logo-card{

height:110px;

border-radius:15px;

}

.pl-logo-card img{

max-width:100px;

max-height:55px;

}

}
/*====================================================
PLACEMENT PAGE
PART - 2D
PLACEMENT SUCCESS STORIES
====================================================*/

.pl-success-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Background Decoration */

.pl-success-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(212,0,0,.04);
    top:-120px;
    left:-120px;
}

.pl-success-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(212,0,0,.03);
    bottom:-80px;
    right:-80px;
}

/*==============================
Slider
==============================*/

.pl-student-slider{
    position:relative;
    padding:20px 65px 70px;
}

/*==============================
Card
==============================*/

.pl-student-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #ededed;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

}
.pl-student-slider .swiper-slide{

    display:flex;

    height:auto;

}

/*==============================
Student Image
==============================*/

.pl-student-image{

    height:270px;

    overflow:hidden;

    position:relative;

}

.pl-student-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.pl-student-card:hover .pl-student-image img{

    transform:scale(1.08);

}

/*==============================
Company Logo
==============================*/

.pl-company-logo{

    width:90px;

    height:90px;

    background:#ffffff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:absolute;

    top:225px;

    right:25px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    border:5px solid #ffffff;

    z-index:5;

}

.pl-company-logo img{

    width:58px;

    height:auto;

    object-fit:contain;

}

/*==============================
Content
==============================*/

.pl-student-content{

    padding:35px 28px 28px;

    display:flex;

    flex-direction:column;

    flex:1;

}
.pl-student-content p{

    color:#6b7280;

    font-size:15px;

    line-height:1.8;

    margin-top:auto;

}
.pl-course{

    display:inline-flex;

    align-self:flex-start;

}
.pl-package{

    display:inline-flex;

    align-self:flex-start;

}
.pl-student-image{

    height:280px;

    overflow:hidden;

}
@media(max-width:991px){

.pl-student-image{

height:250px;

}

}

@media(max-width:768px){

.pl-student-image{

height:230px;

}

}

@media(max-width:576px){

.pl-student-image{

height:220px;

}

}
.pl-student-slider .swiper-wrapper{

    align-items:stretch;

}

.pl-student-slider .swiper-slide{

    height:auto;

}

.pl-student-slider .swiper-slide .pl-student-card{

    height:100%;

}
/*====================================================
PLACEMENT PAGE
PART - 2E
CAREER CTA BANNER
====================================================*/

.plcta-section{
    padding:90px 0;
    background:#ffffff;
}

.plcta-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:linear-gradient(135deg,#b30000 0%,#d40000 55%,#ff2b2b 100%);

    padding:70px;

    box-shadow:0 30px 70px rgba(212,0,0,.22);

}

/*=========================
Background Decorations
=========================*/

.plcta-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:plctaFloat 8s ease-in-out infinite;

}

.plcta-circle-1{

    width:260px;

    height:260px;

    top:-120px;

    right:-60px;

}

.plcta-circle-2{

    width:140px;

    height:140px;

    left:-40px;

    bottom:-40px;

    animation-delay:2s;

}

.plcta-circle-3{

    width:90px;

    height:90px;

    right:25%;

    bottom:40px;

    animation-delay:1s;

}

@keyframes plctaFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/*=========================
Left Content
=========================*/

.plcta-content{

    position:relative;

    z-index:2;

}

.plcta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    color:#ffffff;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(12px);

}

.plcta-tag i{

    color:#ffd54f;

}

.plcta-content h2{

    color:#ffffff;

    font-size:48px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:20px;

}

.plcta-content h2 span{

    color:#ffe083;

}

.plcta-content p{

    color:rgba(255,255,255,.92);

    font-size:17px;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}

/*=========================
Features
=========================*/

.plcta-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.plcta-feature{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ffffff;

    font-weight:500;

    font-size:15px;

}

.plcta-feature i{

    color:#ffd54f;

    font-size:18px;

}

/*=========================
Buttons
=========================*/

.plcta-action{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    height:100%;

    flex-wrap:wrap;

}

.plcta-btn-primary,
.plcta-btn-outline{

    min-width:220px;

    height:60px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    transition:.35s;

}

.plcta-btn-primary{

    background:#ffffff;

    color:#d40000;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.plcta-btn-primary:hover{

    background:#111827;

    color:#ffffff;

    transform:translateY(-5px);

}

.plcta-btn-outline{

    border:2px solid rgba(255,255,255,.6);

    color:#ffffff;

    background:transparent;

}

.plcta-btn-outline:hover{

    background:#ffffff;

    color:#d40000;

    border-color:#ffffff;

    transform:translateY(-5px);

}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

.plcta-wrapper{

padding:60px;

}

.plcta-content h2{

font-size:42px;

}

}

@media(max-width:991px){

.plcta-section{

padding:70px 0;

}

.plcta-wrapper{

padding:50px 35px;

text-align:center;

}

.plcta-content p{

margin-left:auto;

margin-right:auto;

}

.plcta-features{

justify-content:center;

margin-bottom:35px;

}

.plcta-action{

justify-content:center;

}

}

@media(max-width:768px){

.plcta-content h2{

font-size:34px;

}

.plcta-content p{

font-size:15px;

}

.plcta-btn-primary,
.plcta-btn-outline{

width:100%;

max-width:320px;

}

}

@media(max-width:576px){

.plcta-section{

padding:60px 0;

}

.plcta-wrapper{

padding:35px 20px;

border-radius:20px;

}

.plcta-tag{

font-size:13px;

padding:8px 18px;

}

.plcta-content h2{

font-size:28px;

}

.plcta-features{

flex-direction:column;

align-items:flex-start;

}

.plcta-action{

gap:15px;

}

}
/*======================================
Hero Button Ripple
======================================*/

.pl-hero-btn{

    position:relative;

    overflow:hidden;

}

.hero-ripple{

    position:absolute;

    width:15px;

    height:15px;

    background:rgba(255,255,255,.6);

    border-radius:50%;

    transform:scale(0);

    animation:rippleEffect .7s linear;

    pointer-events:none;

}

@keyframes rippleEffect{

    to{

        transform:scale(18);

        opacity:0;

    }

}

.pl-student-content h4{

    font-size:24px;

    font-weight:700;

    color:#111827;

    margin-bottom:10px;

}

.pl-course{

    display:inline-block;

    background:#ffe8e8;

    color:#d40000;

    padding:6px 14px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

/*==============================
Salary Badge
==============================*/

.pl-package{

    display:inline-block;

    background:#d40000;

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:15px;

    font-weight:700;

    margin-bottom:18px;

}

.pl-student-content p{

    color:#6b7280;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*==============================
Navigation
==============================*/

.pl-student-prev,
.pl-student-next{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#ffffff;

    color:#d40000;

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:10;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.pl-student-prev{

    left:0;

}

.pl-student-next{

    right:0;

}

.pl-student-prev:hover,
.pl-student-next:hover{

    background:#d40000;

    color:#ffffff;

}

/*==============================
Pagination
==============================*/

.pl-student-pagination{

    bottom:0 !important;

}

.pl-student-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#d40000;

    opacity:.25;

}

.pl-student-pagination .swiper-pagination-bullet-active{

    width:30px;

    border-radius:30px;

    opacity:1;

}

/*==============================
Responsive
==============================*/

@media(max-width:1199px){

.pl-student-image{

height:250px;

}

}

@media(max-width:991px){

.pl-success-section{

padding:80px 0;

}

.pl-student-slider{

padding:20px 50px 60px;

}

}

@media(max-width:768px){

.pl-success-section{

padding:70px 0;

}

.pl-student-slider{

padding:10px 0 60px;

}

.pl-student-prev,
.pl-student-next{

display:none;

}

.pl-student-image{

height:230px;

}

.pl-company-logo{

width:75px;

height:75px;

top:195px;

right:18px;

}

.pl-company-logo img{

width:46px;

}

.pl-student-content{

padding:30px 22px 22px;

}

.pl-student-content h4{

font-size:21px;

}

}

@media(max-width:576px){

.pl-success-section{

padding:60px 0;

}

.pl-student-card{

border-radius:18px;

}

.pl-student-image{

height:220px;

}

.pl-company-logo{

width:68px;

height:68px;

top:185px;

right:15px;

}

.pl-company-logo img{

width:42px;

}

.pl-course{

font-size:13px;

padding:5px 12px;

}

.pl-package{

font-size:14px;

padding:7px 16px;

}

.pl-student-content h4{

font-size:20px;

}

.pl-student-content p{

font-size:14px;

}

}