/* Contact Us CSS */

/* Banner Styles */
.contact-banner {
    width: 100%;
    min-width: 1300px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Navigation */
.contact-nav-container {
    width: 100%;
    min-width: 1300px;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 80px; /* Header height */
    z-index: 900;
}

.contact-nav {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 85px;
    gap: 168px;
}

.contact-nav-item {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    position: relative;
    height: 85px;
    line-height: 85px;
    transition: color 0.3s;
}

.contact-nav-item:hover,
.contact-nav-item.active {
    color: rgba(1, 92, 171, 1);
    font-weight: 500;
}

.contact-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 3px;
    background-color: rgba(1, 92, 171, 1);
}

/* Content Sections */
.contact-content {
    background-color: #fff;
}

section {
    padding: 60px 0;
    min-width: 1300px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 39.59px;
    color: rgba(56, 56, 56, 1);
    margin-bottom: 45px;
}

/* Contact Section */
.section-contact {
    background-color: #fff;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 16px; /* 1300 - 420 - 864 = 16px gap */
}

.contact-info {
    width: 420px;
    height: 400px;
    background: rgba(244, 244, 244, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;gap: 58px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 0 50px;
    box-sizing: border-box;
}

.contact-info-item .contact-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    font-size: 21px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);;
}

.contact-details .value {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
}

.contact-map {
    width: 864px;
    height: 400px;
    background-color: #f0f0f0;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Join Us Section */
.section-join {
   background: rgba(245, 248, 251, 1);
   padding: 50px 0 75px 0;
}

.job-accordion {
    width: 100%;
}

.job-item {
    background-color: #fff;
    margin-bottom: 20px;
    /* border-radius: 4px; */
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
}

.job-header {
    padding: 26px 19px 26px 37px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s;
}

.job-header:hover {
    background-color: #fcfcfc;
}

.job-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
}

.toggle-icon {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}
.toggle-icon i {
    padding-left: 11px;
    color:rgba(23, 93, 173, 1) ;
    font-size: 17px;
}
.job-content {
    display: none;
    padding: 17px 37px 37px 37px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-section {
    margin-top: 22px;
}
.job-section:first-child{
    margin: 0;
}
.job-section h4 {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22.44px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 11px;
}

.job-section p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.5);
}

.job-item:has(.active){
    box-shadow: 0px 6px 16px  rgba(23, 93, 173, 0.2);
}