/*/////////////////////office location section start/////////////////////////////////////*/

.office-location-section {
    padding-top: 70px;
    padding-bottom: 70px;
}


.office-location-section .description {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 20px;
    color: #000;
}

.office-location-section .contact-details {
    padding: 60px 45px;
    min-height: 250px;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.office-location-section .custom-col {
    flex: 0 0 47%;
    max-width: 47%;
}

.office-location-section .custom-remaining-col {
    flex: 0 0 6%;
    max-width: 6%;
    height: 100%;
}

.office-location-section .custom-remaining-col .line {
    width: 2px;
    background-color: #000;
}

.office-location-section .contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.office-location-section .contact-info .icon-img {
    width: 50px;
    height: auto;
}

.office-location-section .contact-info .info-text {
    font-size: 20px;
    color: #111;
    font-family: "Area-Normal-Semibold, sans-serif";
    text-decoration: none;
}

.office-location-section .contact-info .info-text a {
    font-size: 20px;
    color: #111;
    font-family: "Area-Normal-Semibold, sans-serif";
    text-decoration: none;
}

.office-location-section .contact-info .info-text:hover,
.office-location-section .contact-info .info-text a:hover {
    color: #0084de;
    cursor: pointer !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .office-location-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .office-location-section .contact-details {
        padding: 60px 20px;
    }

    .office-location-section .contact-info .info-text a {
        font-size: 18px;
    }
}

/* Mobile: horizontal divider */
@media (max-width: 767px) {
    .office-location-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .office-location-section .contact-details {
        padding: 40px 20px;
        height: 100%;
    }

    .office-location-section .custom-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .office-location-section .custom-remaining-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .office-location-section .custom-remaining-col .line {
        width: 100%;
        height: 1.5px;
        background-color: #000;
    }

    .office-location-section .contact-info .icon-img {
        width: 40px;
        height: auto;
    }

    .office-location-section .contact-info .info-text {
        font-size: 16px;
    }

    .office-location-section .contact-info .info-text a {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 10px;
        color: #111;
        font-family: "Area-Normal-Semibold, sans-serif";
    }
}


/*///////////////////// office location section end /////////////////////////////////////*/


/*///////////////////// Address Section section Start /////////////////////////////////////*/
.address-section {
    padding-bottom: 70px;
}

.address-section .tabs-wrapper {
    background-color: #aad04e;
    padding: 1rem;
    text-align: center;
}

.address-section .tabs-wrapper .nav-tabs {
    border: none;
    display: inline-flex;
    gap: 1rem;
}

.address-section .tabs-wrapper .nav-tabs .nav-link {
    border: none;
    color: #000;
    font-weight: 500;
    background: transparent;
    font-family: "Area-Normal-Semibold, sans-serif";
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: 0.3s;
}

.address-section .tabs-wrapper .nav-tabs .nav-link.active {
    background: #f4f4f4;
    color: #000;
}

.address-section .tabs-wrapper .nav-tabs .nav-link:hover {
    background: #0084de;
    color: #fff;
}

.address-section .tab-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
}
.address-section .tab-content .office-info {
    margin-bottom: 20px;
}
.address-section .tab-content .office-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    font-family: "Area-Normal-Regular, sans-serif";
}

.address-section .tab-content .office-info p i {
    color: #0d6efd;
    margin-right: 8px;
}

.address-section .tab-content .office-info p a {
    color: #000;
    text-decoration: none;
}

.address-section .tab-content .office-info p a:hover {
    color: #0d6efd;
}

.address-section .tab-content iframe {
    width: 100%;
    height: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .address-section {
        padding-bottom: 50px;
    }

    .address-section .tab-content {
        padding: 20px;
    }
}
/*///////////////////// Address Section section End /////////////////////////////////////*/