.section-service-gallery .col-f{
    margin: 0 auto;
}
.section-service-details .row img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    max-width: 400px;
}


.section-whyus .row-1-3-1 .col .card {
    position: relative;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    border-radius: var(--br-40);;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 0;
    height: 100%;
}
.section-whyus .row-1-3-1 .col .card .card-button {
    margin-top: auto;
}
.section-whyus .button-wrapper a.transparent{
        padding: 0 0 0 10px;
}
.section-whyus .button-wrapper a.transparent::before{
    background-color: var(--white);
}
.section-whyus .row-1-3-1 .col .card .card-icon svg {
    width: 48px;
    height: 48px;
}
.section-whyus .row-1-3-1 .col .card h3.card_heading {
    padding-bottom: 20px;
}
.section-whyus .row-1-3-1 .col .card:before {
    content: "";
    position: absolute;
    top: 100%;
    left:0;
    height: 0;
    width: 100%;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.section-whyus .row-1-3-1 .col .card:hover {

}
.section-whyus .row-1-3-1 .col .card:hover:before {
    top: 0;
    height: 100%;
    background-color: var(--global-color-primary);
}
.section-whyus .row-1-3-1 .col .card:hover .card-icon svg path{
    fill: var(--white);
}
.section-whyus .row-1-3-1 .col .card:hover .card-body h3,
.section-whyus .row-1-3-1 .col .card:hover .card-body p {
    color: var(--white);
}
@media screen and (min-width: 1024px) {
    .section-whyus .row-1-3-1 .col .card {
        padding: 30px;
    }
}
.section-faq .col-a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 100px;
}
.section-faq .col-a .section-heading h2{
    display: none;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.faq-item {
    border: 1px solid var(--global-color-darkdivider);
    border-radius: var(--br-14);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}
.faq-item.active {
    box-shadow: var(--box-shadow-gray);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    cursor: pointer;
    color: var(--global-color-primary);
    text-align: left;
}
.faq-question .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.faq-question .icon svg path {
    fill: var(--global-color-accent);
}
.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 18px;
}
.faq-answer p {
    padding-bottom: 16px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
@media (min-width: 768px) {
    .faq-question {
        padding: 18px 22px;
    }
    .faq-answer {
        padding: 0 22px;
    }
    .faq-answer p {
        padding-bottom: 18px;
    }
}
@media (min-width: 1024px) {
    .section-faq .col-a{
        padding-bottom: 0;
    }
    .faq-question {
        padding: 20px 26px;
    }
    .faq-answer {
        padding: 0 26px;
    }
    .faq-item.active .faq-answer {
        max-height: 400px;
    }
}