
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://t4.ftcdn.net/jpg/03/95/04/15/360_F_395041586_h21AxqD0dNjxUw3lKFiV5t7qMBJs6wfe.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);  
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}
/*==============================================================================================================================================================*/
.contact-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-heading {
    font-size: 3rem;
    margin:10px 30px;
    color: #2d7f89;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    color:#000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.contact-form {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.contact-image {
    flex: 1;
    background: url('https://img.freepik.com/free-vector/organic-flat-customer-support-illustrated_52683-59164.jpg?semt=ais_hybrid&w=740');
    background-size: cover;
    min-height: 400px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #36949e;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .submit-btn:hover {
        background-color: #2d7f89;
    }

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        min-height: 250px;
    }
}
.recruitment-section {
    padding: 60px 10px;
    background-color: #f4f8fb;
    font-family: 'Poppins', sans-serif;
}

.recruitment-container {
    max-width: 1300px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.recruit-heading {
    font-size: 28px;
    color: #2d7f89;
    margin-bottom: 25px;
}

.recruit-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.recruit-email {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

    .recruit-email a {
        color: #36949e;
        text-decoration: none;
    }

        .recruit-email a:hover {
            text-decoration: underline;
        }
/* === Office Branches Section ================================================================================= */
.branches-section {
    padding: 60px 20px;
    background: #f0f8f9;
    font-family: 'Poppins', sans-serif;
}

.branches-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #36949e;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.branches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.branch-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: 0.3s ease;
}

    .branch-box:hover {
        background: #e6f5f8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .branch-box h3 {
        font-size: 20px;
        color: #36949e;
        margin-bottom: 5px;
    }

    .branch-box p {
        font-size: 15px;
        color: #333;
    }

/* === Responsive Styling === */
@media screen and (max-width: 768px) {
    .branches-grid {
        flex-direction: column;
        align-items: center;
    }

    .branch-box {
        width: 100%;
        max-width: 100%;
    }

    .branches-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .branches-heading {
        font-size: 22px;
    }

    .branch-box h3 {
        font-size: 18px;
    }

    .branch-box p {
        font-size: 14px;
    }
}



