.about-thumb img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}



/* ==============================
Why Join Us
============================== */

.tv-feature-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tv-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.tv-feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tv-feature-box p {
    font-size: 15px;
    color: #666;
}



/* ==============================
Job Cards
============================== */

.tv-service-single-box {
    background: #1053f3;
    border-radius: 18px;
    padding: 35px 30px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tv-service-single-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.tv-service-single-box .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tv-service-single-box .text {
    font-size: 15px;
    color: #666;
}



/* ==============================
Buttons
============================== */

.theme-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1053f3;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.theme-btn:hover {
    background: #0b3ec2;
    color: #fff;
}



/* ==============================
Application Form
============================== */

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fdfdfd;
    transition: var(--transition);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.05);
}

.contact-form textarea {
    height: 150px;
}


/* ==============================
Section Spacing
============================== */

.space {
    padding: 100px 0;
}

.space-top {
    padding-top: 100px;
}

.space-bottom {
    padding-bottom: 100px;
}



/* ==============================
CTA Section
============================== */

.tv-cta-section.inner {
    padding: 70px 0;
}

.tv-cta-section .sec-title {
    font-size: 32px;
    font-weight: 700;
}



/* ==============================
Responsive
============================== */

@media (max-width: 991px) {

    .tv-breadcrumb-section .page-title .title {
        font-size: 32px;
    }

    .sec-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {

    .space {
        padding: 70px 0;
    }

    .theme-btn {
        width: 100%;
    }
}

.tv-cta-section.inner {
    padding: 60px 0;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
    padding-top: 60px;
}