﻿.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 20px 0px 20px;
    border-bottom: 0px solid #ccc;
}

    /* Individual tab */
    .filter-tabs li {
        margin: 0 15px;
        padding: 10px 0;
        cursor: pointer;
        font-weight: 500;
        color: #555;
        position: relative;
        transition: color 0.3s ease;
    }

        /* Hover effect */
        .filter-tabs li:hover {
            color: #f7542b;
        }

        /* Active tab styling */
        .filter-tabs li.active {
            color: #f7542b;
            font-weight: 600;
        }

            .filter-tabs li.active::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                right: 0;
                height: 3px;
                background-color: #f7542b;
                border-radius: 2px;
            }

/* Tab content */
.tab-content {
    display: none;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*reach use styles*/
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
}

.contact-info-box {
    flex: 1;
    min-width: 200px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

    .contact-info-box h3 {
        background-color: #287295;
        color: #fff;
        padding: 12px 16px;
        margin: 0;
        font-size: 1.2em;
        border-bottom: 1px solid #eee;
    }

    .contact-info-box .body {
        padding: 45px;
        min-height: 80px; /* Optional: keeps boxes uniform */
    }

.reach-us-section {
    margin: 0px 0px;
}

    .reach-us-section .contact-info-box h3 {
        text-align: center;
    }

.tab-context-header {
    text-align: center;
    margin: 20px 0px;
    color: darkblue;
    font-weight:600;
}

.reach-us-section .contact-info-box .body {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

    .reach-us-section .contact-info-box .body i {
        font-size: 16px;
        color: orange;
        font-weight: 800;
    }
.reachus {
    padding: 20px 0px;
}

/*store locator*/
.info-box-address h3 {
    background-color: #6f7172 !important;
}

.contact-info-box .body i {
    font-size: 16px;
    color: orange;
    font-weight: 800;
}
.contact-us-main-body{
    margin-bottom:150px!important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}