@import url('header.css');
@import url('footer.css');
/* hero section */
.herosection {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.herosection video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.herosection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.banner-content {
    position: absolute;
    top: 60%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 12px;
    color: #fff;
}
.banner-content div {
    max-width: 70%;
}
.banner-content p {
    font-size: 14px;
    border: 1px solid var(--secondary-color);
    display: inline-block;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 80px;
    margin-bottom: 15px;
}
.banner-content h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 80px;
}
.banner-content a {
    display: inline-block;
    color: #fff;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 18px;
    background: var(--primary-color);
    border-radius: 80px;
    text-transform: uppercase;
}
.banner-content img {
    width: 170px !important;
    height: 170px !important;
    display: block;
}
.banner-content .schedule {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 11px 32px !important;
    font-size: 18px;
    text-decoration: none;
    border-radius: 80px;
    border: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.banner-content .schedule i {
    background: #fff;
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: -22px;
    /* font-size: 14px; */
    transition: all 0.3s ease-in-out;
}
/* about section */
.about .container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.about h2 {
    padding-right: 31px;
    margin-right: -200px;
    margin-bottom: 20px;
    font-size: 57px;
    line-height: 66px;
}
.about.commonblock .subtext {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.about p {
    color: #555555;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 50px;
}
.about .firstrow {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}
.about .firstrow .schedule {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 11px 32px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 80px;
    border: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.about .firstrow .schedule i {
    background: #fff;
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: -20px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.about .secondrow {
    background-color: #F8F7F0;
    padding: 40px 0;
    text-align: center;
    border-radius: 12px;
}
.numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
.num-box {
    position: relative;
    flex: 1;
    padding: 0 20px;
}
.num {
    font-size: 64px;
    font-weight: 500;
    line-height: 64px;
    display: block;
}
.num-box p {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #555855;
    text-transform: uppercase;
}
.num-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: 1px;
    background-color: lightgray !important;
}
.aboutussecondimage {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.aboutussecondimage img {
    max-width: 100%;
    height: auto;
    align-self: flex-end;
}
.commonblock .subtext {
    color: #0f0f0f;
    border: 1px solid #0f0f0f;
    text-decoration: none;
    padding: 5px 16px;
    border-radius: 80px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}
/* services */
.services {
    background: linear-gradient(119.61deg, #FFCCD4 0%, #F2EAD9 68.12%);
}
.services .container {
    padding-top: 8px;
    padding-bottom: 80px;
}
.services p {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 80px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.services.commonblock .subtext {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.services .firstrow .schedule {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: black !important;
    padding: 12px 32px !important;
    font-size: 16px !important;
    text-decoration: none;
    border-radius: 80px;
    border: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    text-transform: uppercase;
}
.services .firstrow .schedule i {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: -20px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.servicesimg {
    margin-top: -48px;
}
.services .firstrow {
    margin-bottom: 80px;
}
.serv .schedule {
    display: inline-flex;
    align-items: center;
    color: black !important;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 80px;
    border: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    text-transform: uppercase;
}
.serv .schedule i {
    /* background: var(--primary-color); */
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1xpx;
    margin-right: -20px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.serv {
    border: 1px solid black;
    height: 383px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
    background-size: cover;
    background-position: center;
}
.serv:hover {
    background: white;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.image-wrapper {
    border: 1px solid black;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: inline-block;
}
.image-wrapper img {
    display: block;
    transition: all 0.4s ease-in-out;
}
.serv h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}
.serv:hover img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(99%) saturate(7496%) hue-rotate(-9deg) brightness(105%) contrast(115%);
}
.serv:hover .image-wrapper {
    border: 1px solid #FFD1D9;
}
.serv:hover .schedule i {
    color: var(--primary-color);
}
.serv:hover .schedule {
    color: var(--primary-color) !important;
}
/* testimonials */
.testimonials {
    background-image: url('../images/testimonialbg.png');
    background-repeat: no-repeat;
    background-position: 100% 0;
    position: relative;
}
.testimonials .container {
    padding-top: 40px;
    padding-bottom: 40px;
}
.testimonials .container .testimonialcontent .quotes {
    margin-bottom: 40px !important;
}
.testimonials .container .testimonialcontent .testimonial-carousel blockquote {
    font-size: 30px;
    font-weight: 500;
    line-height: 37px;
    color: #555558;
    margin-bottom: 80px;
    max-width: 100%;
    padding: 0 4px;
}
.testimonials .container .testimonialcontent .testimonial-carousel h3 {
    font-size: 22px;
    line-height: 30px;
    color: #0F0F0F;
}
.testimonials .container .testimonialcontent .testimonial-carousel p {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #555558;
    margin-bottom: 20px;
}
.testimonialslider {
    padding-left: 80px;
}
.star-icon {
    color: #FFCB45;
    font-size: 16px;
    margin: 0 2px;
}
.testimonials .owl-nav {
    position: absolute;
    top: 70%;
    width: 100%;
    right: 10%;
    display: flex;
    justify-content: end;
    transform: translateY(-50%);
}
.testimonials .custom-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border: 1px solid #888888;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    color: black;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.testimonials .custom-nav:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    border: 0;
}
.testimonials .owl-nav .prev {
    position: absolute;
    right: 5px;
}
.testimonials .owl-nav .next {
    position: absolute;
    right: -60px;
}
/* clients */
.clients {
    background-image: url('../images/clientsbg.jpg');
    object-fit: cover;
}
.clients .container {
    padding-top: 50px;
    padding-bottom: 50px;
}
.clients .box {
    position: relative;
}
.clients .container .column {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.clients .inner {
    width: 233px;
    height: 202px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: #ffffff;
    margin-bottom: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.clients .box:hover {
    filter: drop-shadow(0px 12px 43px rgba(0, 0, 0, 0.48));
    transition: all 0.7s ease;
    z-index: 2;
}
.clients .column:nth-child(even) {
    margin: 0 -51px 0;
}
/* why Us */
.why {
    background-image: url('../images/whyusbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.why .subtext {
    color: white;
    border: 1px solid var(--secondary-color);
}
.main-container {
    height: 310px;
}
.flex-item {
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 0 !important;
}
.flex-item .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: 0.3s ease-in-out;
    width: 100%;
}
.flex-item .content .wrap {
    position: absolute;
    top: -20px;
    width: 92px;
    height: 92px;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.flex-item .content .wrap img {
    width: 55px;
    height: 55px;
}
/* Apply border radius logic */
.flex-item:nth-child(odd) .content p {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.flex-item:nth-child(even) .content p {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
/* Default styling for p */
.flex-item .content p {
    border: 1px solid #555558;
    display: flex;
    font-size: 24px;
    line-height: 28px;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* padding: 0 97px; */
    height: 122px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    color: white;
    transition: 0.3s ease-in-out;
}
/* Hover Effect */
.flex-item .content:hover .wrap {
    background-color: var(--yellow-color);
}
.flex-item .content:hover p {
    background-color: var(--secondary-color);
    color: black;
}
/* map */
.map-container {
    height: 550px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* contact */
/* ------------- About Us ----------------*/
@media (max-width: 1300px) {
    .banner-content {
        top: 60%;
    }
    .banner-content div {
        max-width: 70%;
    }
    .banner-content p {
        margin-bottom: 8px;
    }
    .banner-content h1 {
        margin-bottom: 10px;
        font-size: 50px;
        line-height: 60px;
    }
    /* testimonials */
    /* Default styling for p */
    .flex-item .content p {
        width: 269px;
    }
}
@media (max-width: 1200px) {
    /* hero section */
    .testimonialslider {
        padding-left: 0px;
    }
    .herosection {
        height: 700px;
        min-height: 500px;
    }
    .banner-content {
        top: 60% !important;
        padding: 10px;
    }
    .banner-content div {
        max-width: 70%;
    }
    .banner-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .banner-content h1 {
        font-size: 30px;
        font-weight: 500;
        line-height: 36px;
        margin-bottom: 10px;
    }
    .banner-content a {
        padding: 8px 20px;
        font-size: 14px;
    }
    .banner-content img {
        width: 100px !important;
        height: 100px !important;
    }
    /* about us */
    .about .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .about {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .about h2 {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 32px;
    }
    .about .firstrow p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: justify;
    }
    .about .firstrow {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 30px;
    }
    .about .firstrow .schedule {
        padding: 8px 32px !important;
        font-size: 16px !important;
        margin: 0;
    }
    .about .firstrow .schedule i {
        width: 30px;
        height: 30px;
    }
    .aboutussecondimage {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    .aboutussecondimage img {
        /* max-width: 100%; */
        height: 400px;
        align-self: center;
    }
    /* testimonial */
    .whyusrow {
        margin-top: 60px;
    }
    .whyusrow .col-3 {
        flex: 0 0 50%;
        /* 2 items per row */
        max-width: 50%;
        padding: 15px;
        /* Adjust spacing */
    }
    /* clients */
    .clients .inner {
        width: 200px;
        height: 165px;
    }
    .clients .column:nth-child(2n) {
        margin: 87px -25px 0 !important;
    }
    .clients .column:nth-child(even) {
        margin: 0 -45px 0 !important;
    }
}
@media (max-width: 992px) {
    /* banner */
    .banner-content {
        top: 70%;
        padding: 3px;
    }
    .banner-content div {
        max-width: 100% !important;
    }
    .banner-content h1 {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .banner-content a {
        padding: 6px 14px !important;
        font-size: 12px;
        margin: 0;
    }
    .banner-content .schedule {
        padding: 8px 20px !important;
    }
    .banner-content .schedule i {
        background: #fff;
        color: black;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 20px !important;
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
        transition: all 0.3s ease-in-out;
    }
    /* services */
    .services .container {
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }
    .services a {
        margin-bottom: 10px;
    }
    .services h2 {
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 34px;
    }
    .servicesimg {
        margin-top: 0;
        object-fit: cover;
    }
    .services .firstrow {
        margin-bottom: 40px;
    }
    .serv {
        border: 1px solid black;
        height: 300px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: all 0.4s ease-in-out;
        background-size: cover;
        background-position: center;
    }
    .serv:hover {
        background: white;
        border: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    .image-wrapper {
        border: 1px solid black;
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 10px;
        display: inline-block;
    }
    .image-wrapper img {
        display: block;
        transition: all 0.4s ease-in-out;
    }
    .serv h3 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 3px;
    }
    /* testimonial */
    .why .container .sub {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .why .container h2 {
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        font-size: 28px;
        line-height: 28px;
    }
    .main-container {
        height: 410px;
    }
    .flex-item .content .wrap {
        /* position: absolute;
        top: -20px; */
        width: 72px;
        height: 72px;
    }
    .flex-item .content .wrap img {
        width: 35px;
        height: 35px;
    }
    /* Apply border radius logic */
    .flex-item:nth-child(odd) .content p {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .flex-item:nth-child(even) .content p {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    /* Default styling for p */
    .flex-item .content p {
        font-size: 20px;
        line-height: 24px;
        height: 80px;
    }
    /* Hover Effect */
    .flex-item .content:hover .wrap {
        background-color: var(--yellow-color);
    }
    .flex-item .content:hover p {
        background-color: var(--secondary-color);
        color: black;
    }
    /* clients */
    .clients .inner {
        width: 130px !important;
        height: 115px !important;
    }
    .clients .inner img {
        width: 70px !important;
    }
    /* .clients .column:nth-child(2n) {
        margin: 87px -45px 0 !important;
    } */
    .clients .column:nth-child(even) {
        margin: 0 -26px 0 !important;
    }
}
@media (max-width: 767px) {
    /* hero section */
    .herosection {
        min-height: 500px;
        height: 500px;
    }
    /* about */
    .about .secondrow {
        padding: 20px 0;
    }
    .numbers {
        flex-direction: column;
        justify-content: center;
    }
    .num-box p {
        font-size: 16px;
        font-weight: 400;
    }
    .num-box:not(:last-child)::after {
        display: none;
    }
    .aboutussecondimage {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
        justify-content: center;
    }
    .aboutussecondimage img {
        /* max-width: 100%; */
        height: 400px;
        align-self: center;
    }
    /* testimonials */
    .testimonials .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .testimonials .container .testimonialcontent h2 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 28px;
    }
    .testimonials .container .testimonialcontent .quotes {
        margin-bottom: 20px !important;
    }
    .testimonials .container .testimonialcontent .testimonial-carousel blockquote {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .testimonials .container .testimonialcontent .testimonial-carousel h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .testimonials .container .testimonialcontent .testimonial-carousel p {
        margin-bottom: 10px;
    }
    .star-icon {
        font-size: 14px;
    }
    .testimonials .owl-nav {
        display: none;
    }
    /* why us */
    .main-container {
        margin-top: 30px !important;
        height: 710px !important;
    }
    .flex-item .content .wrap {
        width: 52px !important;
        height: 52px !important;
    }
    .flex-item .content .wrap img {
        width: 25px !important;
        height: 25px !important;
    }
    /* Apply border radius logic */
    .flex-item:nth-child(odd) .content p {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .flex-item:nth-child(even) .content p {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    /* Default styling for p */
    .flex-item .content p {
        font-size: 20px;
        line-height: 24px;
        height: 80px;
    }
    /* Hover Effect */
    .flex-item .content:hover .wrap {
        background-color: var(--yellow-color);
    }
    .flex-item .content:hover p {
        background-color: var(--secondary-color);
        color: black;
    }
    /* clients */
    .clients .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .clients .container p {
        margin-bottom: 0 !important;
    }
    .clients .container h2 {
        font-weight: 600 !important;
        font-size: 34px !important;
        margin-bottom: 20px !important;
    }
}
@media (max-width: 570px) {
    .clients .container .mainbox {
        max-width: 390px;
        margin: 0 auto;
    }
    .lastcolhexagon {
        margin: -62px 27px 17px -11px;
    }
    .firstcolhexagon {
        padding-left: 19px;
        margin: -66px -10px 10px 39px;
    }
}