/* =====================================================
OUR TEAM SECTION
===================================================== */

.our-team-section {
    position: relative;
}



/* =====================================================
TEAM GRID
===================================================== */

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* =====================================================
TEAM CARD
===================================================== */

.team-card {
    width: calc(25% - 23px);
    background: #ffffff;
    overflow: hidden;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid #f82130;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #005387, #49c53f);
}

/* =====================================================
TEAM IMAGE
===================================================== */

.team-image {
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* =====================================================
TEAM CONTENT
===================================================== */

.team-content {
    padding: 25px 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-content h3 {
    color: #005387;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.designation {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience {
    color: #49c53f;
    font-size: 15px;
    font-weight: 500;
}

/* =====================================================
JOIN OUR TEAM CTA
===================================================== */

.team-cta {
    text-align: center;
    margin-top: 70px;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.team-cta h3 {
    font-size: 32px;
    color: #005387;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.join-team-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(90deg, #005387, #49c53f);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.join-team-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 83, 135, 0.25);
    color: #ffffff;
}

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

@media (max-width: 1199px) {

    .team-card {
        width: calc(50% - 15px);
    }

}

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

@media (max-width: 767px) {

    .our-team-section {
        padding: 40px 0;
    }



    .team-card {
        width: 100%;
        max-width: 400px;
    }

    .team-content {
        padding: 20px;
    }

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

    .designation {
        font-size: 16px;
    }

    .experience {
        font-size: 15px;
    }

    .team-cta {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .team-cta h3 {
        font-size: 26px;
    }

    .team-cta p {
        font-size: 16px;
    }

    .join-team-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Career Page CSS */

/* HERO */
.career-hero {
    background: linear-gradient(rgba(0, 83, 135, .85), rgba(0, 43, 12, .85)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600') center/cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.career-hero-content {
    max-width: 850px;
    margin: auto;
}

.career-hero span,
.section-subtitle,
.section-title span {
    display: inline-block;
    color: #49c53f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.career-hero h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.career-hero p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* BUTTON */
.career-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #49c53f;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: .4s;
}

.career-btn:hover {
    background: #005387;
    transform: translateY(-4px);
    color: #fff;
}



/* ABOUT */
.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-content h2 {
    color: #005387;
    font-size: 42px;
    margin-bottom: 25px;
}

.career-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #444;
}

.career-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* BENEFITS */
.career-benefits {
    list-style: none;
    margin-top: 30px;
}

.career-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.career-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #49c53f;
    font-weight: 700;
}

/* VALUES */
.career-values {
    background: #f7f9fb;
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: #49c53f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.value-card h3 {
    color: #005387;
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.8;
}

/* OPENINGS */
.opening-card {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.opening-card h3 {
    color: #005387;
    font-size: 32px;
    margin-bottom: 20px;
}

.opening-card p {
    line-height: 1.9;
    margin-bottom: 20px;
}

/* CTA */
.career-cta {
    padding: 80px 0;
}

.career-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #005387, #002b0c);
    color: #fff;
    padding: 70px 40px;
    border-radius: 25px;
}

.career-cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.career-cta-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* RESPONSIVE */
@media(max-width:1199px) {

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

@media(max-width:767px) {

    .career-hero {
        padding: 90px 0;
    }

    .career-hero h1,
    .career-content h2,
    .career-cta-box h2 {
        font-size: 32px;
    }

    .career-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .opening-card {
        padding: 35px 25px;
    }

    .career-btn {
        width: 100%;
        max-width: 280px;
    }
}
/*==================================================
GLOBAL CONTACT FORM 7 STYLING
==================================================*/

/* Form Container */
.wpcf7 form {
  
}

/* Labels */
.wpcf7 label {
    display: block;
    margin-bottom: 15px;
    color: #005387;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* Inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="file"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 18px;
    border: 1px solid #d9dde3;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Textarea */
.wpcf7 textarea {
    min-height: 100px;
    resize: vertical;
}

/* Focus */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #005387;
    box-shadow: 0 0 0 4px rgba(0, 83, 135, 0.10);
}

/* File Upload */
.wpcf7 input[type="file"] {
    padding: 12px;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #005387, #49c53f);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 83, 135, 0.25);
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
}

/* Success/Error Messages */
.wpcf7-response-output {
    margin-top: 25px !important;
    padding: 15px 20px !important;
    border-radius: 10px;
    font-size: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #49c53f;
    color: #166534;
    background: #f0fdf4;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border-color: #ef4444;
    color: #991b1b;
    background: #fef2f2;
}

/* Spinner */
.wpcf7-spinner {
    margin: 15px 0 0 15px;
}

/* Acceptance Checkbox */
.wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
    display: block;
    margin-top: 10px;
}

/* Two-column Layout (Optional) */
@media (min-width: 768px) {
    .wpcf7 .form-row {
        display: flex;
        gap: 25px;
    }

    .wpcf7 .form-row > * {
        flex: 1;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .wpcf7 form {
        padding: 25px 20px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }

    .wpcf7 input,
    .wpcf7 select,
    .wpcf7 textarea {
        font-size: 15px;
    }
}