/* =========================================================
   BIT ITI BALLARPUR
   TRAINING & PLACEMENT CELL
   PROFESSIONAL RESPONSIVE CSS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.tp-hero {

    position: -webkit-sticky;

    min-height: 5px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            105deg,
            rgba(1,8,22,0.96),
            rgba(2,36,70,0.78)
        ),

        url("images/placement.jpg")
        center / cover no-repeat;
}


.tp-hero-overlay {

    position: absolute;

    inset: 0;

}


.tp-hero-content {

    position: relative;

    z-index: 2;

    max-width: 100%;

    padding: 5px 0;

    color: #ffffff;
}


.tp-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 3px 14px;

    margin-bottom: 5px;

    border: 1px solid
        rgba(93,204,255,0.25);

    border-radius: 30px;

    color: #6ed0ff;

    background:
        rgba(45, 55, 59, 0.08);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.tp-hero h1 {

    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.08;

    font-weight: 850;

    letter-spacing: -1.5px;
}


.tp-hero h1 span {

    display: block;

    color: #4fc5ff;
}


.tp-hero p {

    max-width: 670px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.74);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.tp-hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.tp-btn-primary,
.tp-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 13px 21px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: all .3s ease;
}


.tp-btn-primary {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0878c9,
            #13a9ef
        );

    box-shadow:
        0 8px 25px rgba(0,135,220,0.25);
}


.tp-btn-primary:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 30px rgba(0,135,220,0.35);
}


.tp-btn-outline {

    color: #ffffff;

    border: 1px solid
        rgba(255,255,255,0.25);

    background:
        rgba(255,255,255,0.05);
}


.tp-btn-outline:hover {

    color: #ffffff;

    border-color: #4fc5ff;

    background:
        rgba(70,190,255,0.12);
}


/* =========================================================
   INTRO
========================================================= */

.tp-intro {

    padding: 10px 0;

    background: #f7faff;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.tp-main-image {

    position: relative;

    padding: 10px;
}


.tp-main-image::before {

    content: "";

    position: absolute;

    width: 80%;

    height: 80%;

    left: -15px;

    bottom: -15px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #0b8bd3,
            #8ad9ff
        );

    opacity: .16;
}


.tp-main-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 440px;

    object-fit: cover;

    display: block;

    border-radius: 20px;

    box-shadow:
        0 25px 55px rgba(9,44,75,.18);
}


.tp-image-card {

    position: absolute;

    z-index: 4;

    right: -5px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 14px;

    color: #ffffff;

    background:
        rgba(2,25,47,.92);

    box-shadow:
        0 15px 35px rgba(0,0,0,.22);
}


.tp-image-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        #078dd4;

    font-size: 18px;
}


.tp-image-card strong,
.tp-image-card span {

    display: block;
}


.tp-image-card strong {

    font-size: 12px;
}


.tp-image-card span {

    margin-top: 2px;

    color: #8cb5ca;

    font-size: 9px;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.tp-section-label {

    margin-bottom: 10px;

    color: #078dd4;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 2px;
}


.tp-intro h2,
.tp-training h2 {

    margin: 0 0 18px;

    color: #09233c;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.2;

    font-weight: 850;
}


.tp-intro h2 strong,
.tp-training h2 strong {

    color: #078dd4;
}


.tp-intro p,
.tp-training p {

    color: #687b8d;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   FEATURES
========================================================= */

.tp-feature-list {

    margin-top: 25px;
}


.tp-feature {

    display: flex;

    gap: 13px;

    margin-bottom: 17px;
}


.tp-feature-icon {

    width: 32px;
    height: 32px;

    min-width: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    color: #078dd4;

    background:
        rgba(7,141,212,.10);

    font-size: 13px;
}


.tp-feature h4 {

    margin: 0 0 3px;

    color: #17354d;

    font-size: 14px;

    font-weight: 800;
}


.tp-feature p {

    margin: 0;

    font-size: 11px;
}


/* =========================================================
   STATS
========================================================= */

.tp-stats {

    padding: 20px 0 75px;

    background: #f7faff;
}


.tp-stat-card {

    height: 100%;

    padding: 25px 15px;

    text-align: center;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid #e6edf3;

    box-shadow:
        0 8px 30px rgba(10,45,70,.06);

    transition: all .3s ease;
}


.tp-stat-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(7,141,212,.25);
}


.tp-stat-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 12px;

    border-radius: 13px;

    color: #078dd4;

    background:
        rgba(7,141,212,.09);

    font-size: 20px;
}


.tp-stat-card h3 {

    margin: 0;

    color: #12324b;

    font-size: 16px;

    font-weight: 800;
}


.tp-stat-card p {

    margin: 4px 0 0;

    color: #8495a3;

    font-size: 10px;
}


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

.tp-process {

    padding: 90px 0;

    background: #03101e;
}


.tp-heading {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}


.tp-heading > span {

    color: #46bfff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.tp-heading h2 {

    margin: 8px 0 12px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 850;
}


.tp-heading h2 strong {

    color: #42bcf8;
}


.tp-heading p {

    color: #788c9f;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS CARDS
========================================================= */

.process-card {

    position: relative;

    height: 100%;

    padding: 27px 23px;

    overflow: hidden;

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);

    border: 1px solid
        rgba(255,255,255,.08);

    transition: all .3s ease;
}


.process-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(60,190,255,.3);
}


.process-number {

    position: absolute;

    top: 15px;

    right: 18px;

    color: rgba(87,200,255,.16);

    font-size: 42px;

    font-weight: 900;
}


.process-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 13px;

    color: #55c7ff;

    background:
        rgba(55,185,240,.1);

    font-size: 21px;
}


.process-card h3 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;
}


.process-card p {

    margin: 0;

    color: #778b9d;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   TRAINING
========================================================= */

.tp-training {

    padding: 90px 0;

    background: #f6faff;
}


.tp-dark-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 12px 20px;

    border-radius: 30px;

    color: #ffffff;

    background: #092a44;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: all .3s ease;
}


.tp-dark-button:hover {

    color: #ffffff;

    background: #078dd4;

    transform: translateY(-2px);
}


/* =========================================================
   TRAINING GRID
========================================================= */

.training-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.training-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 22px;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid #e7eef4;

    box-shadow:
        0 8px 25px rgba(10,45,70,.05);

    transition: all .3s ease;
}


.training-item:hover {

    transform: translateY(-5px);

    border-color:
        rgba(7,141,212,.25);
}


.training-item > i {

    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #078dd4;

    background:
        rgba(7,141,212,.09);

    font-size: 17px;
}


.training-item h4 {

    margin: 0 0 4px;

    color: #18364e;

    font-size: 13px;

    font-weight: 800;
}


.training-item p {

    margin: 0;

    font-size: 10px;
}


/* =========================================================
   RECRUITER
========================================================= */

.tp-recruiter {

    padding: 10px 0;

    background: #ffffff;
}


.recruiter-box {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 32px;

    border-radius: 20px;

    background:

        linear-gradient(
            120deg,
            #062b49,
            #075e91
        );

    box-shadow:
        0 20px 50px rgba(5,49,80,.18);
}


.recruiter-icon {

    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    color: #ffffff;

    background:
        rgba(255,255,255,.1);

    font-size: 26px;
}


.recruiter-content {

    flex: 1;
}


.recruiter-content span {

    color: #8bd9ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.recruiter-content h2 {

    margin: 5px 0;

    color: #ffffff;

    font-size: 23px;

    font-weight: 850;
}


.recruiter-content p {

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 11px;

    line-height: 1.7;
}


.recruiter-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 20px;

    white-space: nowrap;

    border-radius: 30px;

    color: #07517d;

    background: #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: all .3s ease;
}


.recruiter-button:hover {

    color: #ffffff;

    background: #062b49;
}


/* =========================================================
   CONTACT
========================================================= */

.tp-contact {

    padding: 15px 0;

    background: #020914;
}


.tp-contact-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.tp-contact-inner span {

    color: #48bfff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.tp-contact-inner h2 {

    max-width: 700px;

    margin: 8px 0 0;

    color: #ffffff;

    font-size: clamp(26px, 4vw, 39px);

    font-weight: 850;

    line-height: 1.25;
}


.tp-contact-inner h2 strong {

    color: #48bfff;
}


.tp-contact-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 14px 23px;

    white-space: nowrap;

    border-radius: 30px;

    color: #ffffff;

    background:
        #078dd4;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: all .3s ease;
}


.tp-contact-button:hover {

    color: #ffffff;

    background: #056fa9;

    transform: translateY(-3px);
}


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

@media (max-width: 991px) {

    .tp-main-image img {

        height: 380px;
    }


    .tp-image-card {

        right: 15px;
    }


    .recruiter-box {

        flex-wrap: wrap;
    }


    .recruiter-button {

        margin-left: 87px;
    }


    .tp-contact-inner {

        align-items: flex-start;

        flex-direction: column;
    }

}


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

@media (max-width: 767px) {

    .tp-hero {

        min-height: 15px;
    }


    .tp-hero-content {

        padding: 15px 15px;
    }


    .tp-hero h1 {

        font-size: 43px;
    }


    .tp-hero p {

        font-size: 13px;
    }


    .tp-intro,
    .tp-process,
    .tp-training {

        padding: 60px 0;
    }


    .tp-main-image {

        padding: 5px;
    }


    .tp-main-image img {

        height: 300px;

        border-radius: 16px;
    }


    .tp-image-card {

        right: 5px;

        bottom: 20px;

        padding: 11px 13px;
    }


    .tp-image-icon {

        width: 36px;
        height: 36px;

        font-size: 15px;
    }


    .training-grid {

        grid-template-columns: 1fr;
    }


    .recruiter-button {

        width: 100%;

        margin-left: 0;

        justify-content: center;
    }


    .tp-contact-button {

        width: 100%;

        justify-content: center;
    }

}


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

@media (max-width: 480px) {

    .tp-hero h1 {

        font-size: 37px;
    }


    .tp-hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }


    .tp-btn-primary,
    .tp-btn-outline {

        width: 100%;
    }


    .tp-main-image img {

        height: 260px;
    }


    .tp-stat-card {

        padding: 20px 10px;
    }


    .recruiter-box {

        padding: 25px;

        border-radius: 16px;
    }


    .recruiter-icon {

        width: 55px;
        height: 55px;

        min-width: 55px;
    }

}