.cta-wrapper .caller-button .theme-btn {
    background-color: white !important;
}

.cta-wrapper .caller-button .theme-btn span {
    color: var(--header) !important;
}

.cta-wrapper .caller-button .theme-btn:hover span{
    color: white !important;
}
.service-details-post h3 {
    font-size: 27px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.service-details-post h2 {
    font-size: 33px;
}

.service-details-post h4 {
    font-size: 20px;
    font-weight: 600;

}

.service-tab-section-main {
    /* background-color: #F1663E; */
    /* padding-bottom: 10px; */
    border-bottom: 2px solid black;
    display: flex;
    /* border-radius: 5px; */
    justify-content: space-between;
    margin: 30px 0px 20px;
}

.service-tabs {
    padding: 0;
    margin: 0;
}

.service-tabs p {
    color: black;
    font-weight: 600;
    background-color: white;
    padding: 6px 25px 7px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    text-align: center;
    /* border-radius: 5px; */
    width: fit-content;
    cursor: pointer;
    margin: 0;
    transition: all 0.3s ease;
}

.service-tabs.active p {
    background-color: #007bff;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}