/*=========================================================
 Tech Career Academy
 Placement Section
 Author : Shahbaz
 Version : 1.0
=========================================================*/

/*=========================================================
 PLACEMENT SECTION
=========================================================*/

.placement-section{

    padding:100px 0;

    background:#f8fbff;

    position:relative;

}

/*=========================================================
 SECTION HEADING
=========================================================*/

.placement-section .section-heading{

    margin-bottom:70px;

}

.placement-section .section-badge{

    display:inline-block;

    padding:10px 24px;

    background:#eaf2ff;

    color:#0d6efd;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.placement-section h2{

    font-size:46px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:18px;

    line-height:1.3;

}

.placement-section h2 span{

    color:#0d6efd;

}

.placement-section p{

    color:#64748b;

    max-width:760px;

    margin:auto;

    line-height:1.8;

    font-size:16px;

}

/*=========================================================
 PLACEMENT CARD
=========================================================*/

.placement-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    height:100%;

    border:1px solid #edf2f7;

}

.placement-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(13,110,253,.18);

}

/*=========================================================
 IMAGE
=========================================================*/

.placement-image{

    position:relative;

    overflow:hidden;

}

.placement-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.placement-card:hover .placement-image img{

    transform:scale(1.08);

}

/*=========================================================
 IMAGE OVERLAY
=========================================================*/

.placement-image::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

    to top,

    rgba(0,0,0,.55),

    transparent

    );

    z-index:1;

}

/*=========================================================
 COMPANY BADGE
=========================================================*/

.company-badge{

    position:absolute;

    left:20px;

    bottom:20px;

    z-index:5;

    display:flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:10px 18px;

    border-radius:50px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.4s;

}

.placement-card:hover .company-badge{

    transform:translateY(-6px);

}

.company-badge img{

    width:35px;

    height:35px;

    object-fit:contain;

}

.company-badge span{

    font-size:14px;

    font-weight:600;

    color:#0f172a;

}
/*=========================================================
 PLACEMENT CONTENT
=========================================================*/

.placement-content{

    padding:30px;

}

.placement-content h3{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;

}

.placement-content h5{

    display:inline-block;

    background:#eaf2ff;

    color:#0d6efd;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

/*=========================================================
 DETAILS LIST
=========================================================*/

.placement-content ul{

    margin:0;

    padding:0;

    list-style:none;

}

.placement-content ul li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    border-bottom:1px solid #edf2f7;

    color:#475569;

    font-size:15px;

}

.placement-content ul li:last-child{

    border:none;

}

.placement-content ul li i{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf2ff;

    color:#0d6efd;

    border-radius:50%;

    font-size:15px;

}

/*=========================================================
 BUTTON
=========================================================*/

.placement-content .btn{

    width:100%;

    margin-top:25px;

    padding:14px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.placement-content .btn:hover{

    transform:translateY(-4px);

}

/*=========================================================
 CARD BORDER EFFECT
=========================================================*/

.placement-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:5px;

    background:#0d6efd;

    transition:.4s;

}

.placement-card:hover::after{

    width:100%;

}

/*=========================================================
 STUDENT NAME EFFECT
=========================================================*/

.placement-card:hover h3{

    color:#0d6efd;

    transition:.35s;

}

/*=========================================================
 COMPANY BADGE EFFECT
=========================================================*/

.company-badge{

    transition:.35s;

}

.placement-card:hover .company-badge{

    background:#0d6efd;

}

.placement-card:hover .company-badge span{

    color:#fff;

}

/*=========================================================
 ICON HOVER
=========================================================*/

.placement-card:hover ul li i{

    transform:rotate(12deg);

    transition:.35s;

}

/*=========================================================
 PACKAGE HIGHLIGHT
=========================================================*/

.package{

    display:inline-block;

    background:#16a34a;

    color:#fff;

    padding:6px 14px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

}
/*=========================================================
 PLACEMENT COUNTER
=========================================================*/

.placement-counter{

    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf2f7;
    height:100%;

}

.placement-counter:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(13,110,253,.18);

}

.placement-counter h2{

    font-size:42px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:10px;

}

.placement-counter p{

    margin:0;
    color:#64748b;
    font-size:15px;
    font-weight:500;

}

/*=========================================================
 CTA SECTION
=========================================================*/

.placement-cta{

    margin-top:80px;
    background:linear-gradient(135deg,#0d6efd,#2563eb);
    border-radius:25px;
    padding:60px 40px;
    color:#fff;
    position:relative;
    overflow:hidden;

}

.placement-cta::before{

    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-70px;
    top:-70px;

}

.placement-cta::after{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-60px;
    bottom:-60px;

}

.placement-cta h3{

    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;

}

.placement-cta p{

    max-width:700px;
    margin:0 auto 35px;
    color:#f1f5f9;
    font-size:17px;

}

.placement-cta .btn{

    min-width:200px;
    height:55px;
    border-radius:12px;
    font-weight:600;
    margin:8px;
    transition:.35s;

}

.placement-cta .btn-primary{

    background:#fff;
    color:#0d6efd;
    border:none;

}

.placement-cta .btn-primary:hover{

    background:#f8fafc;
    transform:translateY(-4px);

}

.placement-cta .btn-outline-primary{

    border:2px solid #fff;
    color:#fff;

}

.placement-cta .btn-outline-primary:hover{

    background:#fff;
    color:#0d6efd;

}

/*=========================================================
 HOVER EFFECT
=========================================================*/

.placement-card{

    overflow:hidden;

}

.placement-card::before{

    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transition:.8s;

}

.placement-card:hover::before{

    left:100%;

}

/*=========================================================
 RESPONSIVE
=========================================================*/

@media(max-width:991px){

.placement-section{

padding:80px 0;

}

.placement-section h2{

font-size:34px;

}

.placement-image img{

height:260px;

}

.placement-content{

padding:25px;

}

.placement-cta{

padding:45px 25px;

}

.placement-cta h3{

font-size:30px;

}

}

@media(max-width:767px){

.placement-section{

padding:60px 0;

}

.placement-section h2{

font-size:28px;

}

.placement-image img{

height:220px;

}

.placement-content h3{

font-size:24px;

}

.placement-content h5{

font-size:13px;

}

.placement-counter{

margin-bottom:20px;

}

.placement-counter h2{

font-size:34px;

}

.placement-cta{

padding:35px 20px;

}

.placement-cta h3{

font-size:24px;

}

.placement-cta p{

font-size:15px;

}

.placement-cta .btn{

width:100%;
margin:10px 0;

}

}