    @media (min-width: 992px) {
    .search-section {
        display: none;
    }
}
/* Remove slider dots / bottom line */
.slick-dots,
.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    display: none !important;
}

.mobile-menu i[class^="fa-"],
.mobile-menu i[class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* ===== RESPONSIVE MENU CONTROL ===== */

/* Default: Desktop */
.desktop-menu {
    display: block;
}

.mobile-menu {
    display: none;
}

/* second section */

.review-section {
    background: #f8fff9;
    padding: 80px 0;
}

.about-us-title h4 {
    color: #12A48A;
    font-weight: 800;
}

.about-us-title h2 {
    color: #2f3e34;
    font-weight: 700;
}

.reviewer-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviewer-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.reviewer-box h3 {
    font-weight: 700;
    color: #2f3e34;
    margin-bottom: 15px;
}

.reviewer-box p {
    color: #4f5f55;
    line-height: 1.7;
}

.reviewer-profile {
    margin-top: 20px;
}

.reviewer-profile h4 {
    margin: 0;
    color: #12A48A;
    font-weight: 600;
}

.reviewer-profile h6 {
    margin: 0;
    color: #6b7c72;
    font-weight: 500;
}

/* Highlighted Card first section */
.reviewer-box.highlighted {
    background: #12A48A;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 14px 40px rgba(46, 125, 50, 0.35);
}

.reviewer-box.highlighted h3,
.reviewer-box.highlighted p,
.reviewer-box.highlighted h4 {
    color: #ffffff;
}

.reviewer-box.highlighted h6 {
    color: #c8e6c9;
}

/* Icons */
.icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
}

.icon.muted {
    color: #c8e6c9;
}

.icon.success {
    color: #2e7d32;
}

.icon.white {
    color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .reviewer-box.highlighted {
        transform: scale(1);
    }
}

/* third section */

.client-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-us-title h4 {
    color: #12A48A;
    font-weight: 600;
}

.about-us-title h2 {
    color: #2f3e34;
    font-weight: 800;
}

/* Card Style */
.client-box {
    background: #f8fff9;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Headings */
.client-box h4 {
    font-weight: 700;
    color: #2f3e34;
    margin-bottom: 15px;
}

/* Text */
.client-box p {
    color: #4f5f55;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

/* Responsive Spacing */
@media (max-width: 767px) {
    .client-section {
        padding: 60px 0;
    }

    .client-box {
        padding: 30px 25px;
    }
}


/* Mobile Only */
@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: block !important;
    }
}