.hero-container {
    width: 100%;
    max-width: 100%;
    height: 656px;
    padding-top: 120px;
    padding-left: 112px;
    padding-right: 112px;
    background: radial-gradient(
            50% 50% at 50% 50%,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 100%
        ),
        url("/imgs/pages/home/4e90384cfb8c4a470957877de37282b0 (1).png")
            lightgray 50% / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: -230px;
    background-size: cover;
    background-position: center;
}

.content-box {
    max-width: 544px;
    height: 198px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.title {
    color: #fff;
    text-align: center;
    text-shadow: -8.133px 8.133px 28.465px rgba(0, 0, 0, 0.55),
        -4.066px 4.066px 10.166px rgba(0, 0, 0, 0.8);
    font-family: "Open Sans";
    font-size: 105.726px;
    font-style: normal;
    font-weight: 800;
    line-height: 113.859px; /* 107.692% */
    text-transform: uppercase;
}

/* service box start */

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.service-box {
    flex: 1 1 calc(25% - 30px); /* 4 items per row with 40px gap */
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 4px;
    outline: 1px solid #e7e7e7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 325px;
}

.service-box img {
    min-width: 260px;
    min-height: 173px;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-box img {
    width: 100%;
    height: auto;
    max-height: 195px;
    border-radius: 4px;
    object-fit: cover;
}

.service-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #080808;
    font-family: "Open Sans", sans-serif;
    line-height: 1.4;
}

/* service box end */
/* schedule start */
.service-schedule-wrapper {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("/imgs/pages/services/service.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

.service-schedule-heading {
    color: white;
    font-size: 44px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 48px;
    text-align: center;
}

.service-schedule-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1140px;
}

.service-schedule-card {
    width: 100%;
    max-width: 360px;
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    cursor: pointer;
}

.service-schedule-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .service-schedule-icon-inner {
    background: #a51336;
    border-radius: 4px;
} */

.phone-icon {
    width: 60px;
    height: 60px;
}

.email-icon {
    width: 66.67px;
    height: 53.33px;
}

.online-icon {
    width: 66.67px;
    height: 66.67px;
}

.service-schedule-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: white;
}

.service-schedule-title {
    color: #080808;
    font-size: 32px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 40px;
    text-align: start;
    flex: 1;
}

.service-schedule-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-schedule-arrow-inner {
    width: 12px;
    height: 20px;
    /* background: #a51336; */
}

/* schedule end */

/* content start */
.service-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
}

.service-content-text-block {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-content-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-content-heading {
    font-size: 36px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 44px;
    color: black;
}

.service-content-paragraph {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: #4f4f4f;
}

.service-content-button-group {
    background: #080808;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-content-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
}

.service-content-button-text {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 20px;
}

.service-content-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
}

.service-content-icon {
    width: 7.41px;
    height: 12px;
    background: white;
}

.service-content-image {
    flex: 1 1 400px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.2);
    /* margin: auto; */
}
.use-tow-guide-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #080808;
    color: white;
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}
.use-tow-guide-button:hover {
    color: white;
}

/* content end */
/* did you know css start */
.did-you-know-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("/imgs/pages/services/fcdc1d598dd8c03eec5d69e7d359189c68c61424.jpg")
            no-repeat center/cover;
    flex-direction: column;
    gap: 10px;
    min-height: 482px;
    width: 100%;
    box-sizing: border-box;
}

.did-you-know-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.8); */
    max-width: 100%;
    flex-wrap: wrap;
}

.did-you-know-icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 20px 11px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.did-you-know-icon {
    width: 52px;
    height: 52px;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.did-you-know-inner-icon {
    width: 45.5px;
    height: 43.33px;
    /* background: white; */
}

.did-you-know-heading {
    max-width: 532px;
    text-align: center;
    color: white;
    font-size: 52px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 56px;
    word-wrap: break-word;
}

.did-you-know-content-paragraph {
    color: white;
    max-width: 900px;
}

.did-you-know-button-wrapper {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 50px;
}

.did-you-know-button {
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.did-you-know-button-text {
    text-align: center;
    color: #080808;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 20px;
}

/* did you know css end */
/* meet the team start */
.meet-our-team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
}

.meet-our-team-title {
    text-align: center;
    color: black;
    font-size: 52px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 56px;
    word-wrap: break-word;
}

.meet-our-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
}

.meet-our-team-card {
    width: 290px;
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.meet-our-team-card img {
    width: 208px;
    height: 208px;
    background: #d9d9d9;
    /* border-radius: 50%; */
    object-fit: cover;
}

.meet-our-team-name {
    text-align: center;
    color: black;
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 32px;
}

/* meet the team end */
/* slider start */
.mid-search-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 500px;
    margin: auto;
}
.mid-search-inner a:hover {
    color: white;
}
.mid-search-inner-slide {
    /* background: url("/imgs/pages/home/AdobeStock_309830491.png") lightgray 50% /
        cover no-repeat; */
    background: none;
    width: 100%;
    /* height: 566px !important; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mid-search-inner-slide img {
    /* max-width: 800px; */
    width: 100%;
    height: 100%;
    min-height: 566px !important;
    object-fit: cover;
    object-position: center;
}
.mid-search-image-container{
    margin-bottom: 80px;
}
.mid-search-image-container .slick-dots {
    bottom: -73px;
}
.mid-search-image-container .slick-prev {
    left: 100px;
    z-index: 999999;
    width: 24px;
    height: 24px;
    box-shadow: 0 8px 20px rgba(1, 1, 1, 0.4);
    border-radius: 100%;
}

.mid-search-image-container .slick-next {
    right: 100px;
    z-index: 999999;
    width: 24px;
    height: 24px;
    box-shadow: -8px 0 20px rgba(1, 1, 1, 0.4);
    border-radius: 100%;
}

/* Remove default content inserted by Slick */
.mid-search-image-container .slick-prev::before,
.mid-search-image-container .slick-next::before {
    content: none !important;
}

/* Optional: if needed, remove background if it's showing */
.mid-search-image-container .slick-prev,
.mid-search-image-container .slick-next {
    background: transparent !important;
    border: none;
}

.mid-search-image-container ul.slick-dots {
    background-color: #eff1f3;
    width: 160px;
    margin: auto !important;
    border-radius: 100px;
    position: absolute;
    bottom: -54px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px !important;
    height: 24px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.mid-search-image-container .slick-dots li button:before {
    font-size: 8px !important;
}

/* slider end */
/* Responsive */
@media (max-width: 1200px) {
    .service-box {
        flex: 1 1 calc(33.333% - 30px);
    }
}
@media screen and (max-width: 768px) {
    .home .hero-container {
        margin-top: 0px;
    }
    .service-box {
        flex: 1 1 calc(50% - 30px);
    }
    .service-content-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
    .title {
        color: #fff;
        text-align: center;
        text-shadow: -8.133px 8.133px 28.465px rgba(0, 0, 0, 0.55),
            -4.066px 4.066px 10.166px rgba(0, 0, 0, 0.8);
        font-family: "Open Sans";
        font-size: 52px;
        font-style: normal;
        font-weight: 800;
        line-height: 56px; /* 107.692% */
        text-transform: uppercase;
    }
    .hero-container {
        gap: 10px;
        margin-top: 0;
        height: auto;
    }
}
@media (max-width: 480px) {
    .service-box {
        flex: 1 1 100%;
    }
}
