.banner-section {
    background: linear-gradient(258.81deg, #ffffff 73.74%, #dcff94 117.08%);
    position: relative;
    z-index: 0;
}

.default-banner .banner-img {
    max-height: 502px;
    max-width: 489px;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner-section::before {
    content: "";
    background-image: url(../imgs/banner-bg.png);
    left: 0;
    width: 216px;
    height: 288px;
    bottom: 0;
    position: absolute;
}

.banner-section h1 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -0.02em;
    color: #292929;
    margin-bottom: clamp(15px, 3vw, 25px);
}

.banner-section h1>span {
    color: var(--secondary);
}

.banner-section .banner-text {
    max-width: 557px;
}

.banner-section .banner-text p {
    max-width: 442px;
}

.banner-text>.btn {
    display: inline-block;
    margin: clamp(30px, 4vw, 50px) 0;
}


/* about us */

.aboutus-section {
    background-color: #daecff;
    position: relative;
    z-index: 0;
}

.aboutus-section::before,
.aboutus-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 512px;
    height: 413px;
    background-image: url(../imgs/aboutus-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.aboutus-section::after {
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
    z-index: -1;
}

.aboutus-section .section-heading {
    max-width: 615px;
    width: 100%;
}

.aboutus-section .section-heading p:not(:last-child) {
    margin-bottom: 10px;
}

.section-heading ul {
    list-style: none;
    margin-top: clamp(20px, 3vw, 28px);
}

.section-heading ul li {
    position: relative;
    padding-left: 1.3rem;
    padding-bottom: 5px;
}

.section-heading ul li::before {
    content: "";
    position: absolute;
    background-image: url("../imgs/check-bullet.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    left: 0;
    top: 6px;
}

.section-heading ul>p {
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.03em;
    color: #292929;
    margin-bottom: clamp(15px, 3vw, 25px);
}

/* about us */
/* whyus section */
.whyus-section {
    background-color: #fffbef;
    position: relative;
    z-index: 0;
}

.whyus-section .section-heading h2 {
    margin-bottom: 0;
}

.whyus-section::after {
    content: "";
    background-image: url(../imgs/right-bg.png);
    right: 0;
    width: 216px;
    height: 288px;
    bottom: -180px;
    position: absolute;
    z-index: -1;
}

.whyus-section::before {
    content: "";
    bottom: -140px;
    width: 100%;
    height: 106%;
    bottom: -350px;
    position: absolute;
    z-index: -1;
    background: var(--background);
}

.whyus-section .cards .card-item {
    position: relative;
    padding: 30px 55px 55px 30px;
    background-color: white;
    border-radius: 20px;
    overflow: visible;
    z-index: 1;
}

.whyus-section .cards .card-item:hover {
    box-shadow: 0px 2px 5px 0px #0000001A;

}

.whyus-section .cards .card-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 33px;
    background-color: var(--primary);
    border-radius: 0 0 20px 20px;
    z-index: -2;
    transition: width 0.5s ease;
}

.whyus-section .cards .card-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #ffffff;
    z-index: -1;
    inset: 0;
}

.whyus-section .cards .card-item {
    width: 316px !important;
    display: block;
    margin: 0 10px;
}

.whyus-section .cards .card-item:hover::after {
    width: 100%;
}

.whyus-section>div>div.flex {
    margin-bottom: clamp(20px, 4vw, 40px);
}

.whyus-section>div>div.flex>p {
    max-width: 436px;
    width: 100%;
}

.whyus-section .section-heading {
    max-width: 405px;
    width: 100%;
}

.whyus-section .slick-track {
    padding-bottom: 10px;
}

.cards h3 {
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #191919;
    margin-bottom: clamp(15px, 3vw, 32px);
}

.card-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    margin-bottom: clamp(10px, 4vw, 32px);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: var(--primary);
    opacity: 1;
}

/* LEFT ARROW */
.slick-prev:before {
    content: "\f177";
    color: white;
}

/* RIGHT ARROW */
.slick-next:before {
    content: "\f178";
    color: white;
}

.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--primary);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: white;
    border-color: var(--primary);
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--primary);
}

.slick-prev:focus,
.slick-next:focus {
    outline: none;
    background: #659cd8;
}

/* Fix icon color on focus */
.slick-prev:focus:before,
.slick-next:focus:before {
    color: white;
    opacity: 1;
}

/* Prevent fading when disabled */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.5;
    /* or 1 if you want always visible */
}

/* whyus section */
/* explore-section */
.explore-section h2 {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: clamp(80px, 8vw, 185px);
    line-height: 1;
    letter-spacing: 0.03em;
    color: #eff7df;
    text-align: center;
}

.explore-section {
    position: relative;
    /* background-color: white; */
    /* overflow: hidden; */
    padding: 120px 0;
    z-index: 1;
}

.explore-section>div {
    background-color: white;
}

/* .explore-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url(../imgs/eplore-bg.png);
    background-repeat: no-repeat;
}
 */


.explore-section .container {
    position: relative;
    z-index: 1;
}

.circle-slider-section {
    /* padding: 80px 0; */
    position: relative;
}

/* circle card */
.circle-slider-section .circle-card {
    width: 370px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

    transform: scale(0.85);
    transition: all 0.4s ease;
    overflow: visible;
}

.circle-slider-section .circle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-slider-section .slick-center.circle-card {
    transform: scale(1);
    opacity: 1;
}

/* .circle-slider-section .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
} */

.circle-slider-section .slick-list {
    padding: 32px 0 !important;
}

.circle-slider-section .overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(179.33deg, rgba(78, 78, 78, 0) -4.27%, #000000 99.42%);


    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

.circle-slider-section .slick-slide {
    margin: 0 15px;
    /* 15px left + 15px right = 30px gap */
}

.circle-slider-section .overlay>div {
    position: absolute;
    bottom: 65px;
    text-align: center;

}

.circle-slider-section .overlay h3 {
    color: #fff;
    font-weight: 600;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 100%;
    letter-spacing: 3%;

}

.circle-slider-section .overlay span {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
    color: white;
}


.circle-slider-section .slick-center .overlay {
    opacity: 1;
}

.circle-slider-section .overlay {
    pointer-events: none;
}

.circle-card {
    display: block;
    /* THIS is the fix */
}

.circle-card a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}



/* explore-section */
/* story-section */
.story-section {
    position: relative;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 18.5%,
            #fffbef 100%);
    background-color: #fffbef;
    z-index: 0;
}

.story-section.whyus-section.related-section>.container::after {
    display: none;
}

.story-section.whyus-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -350px;
    z-index: -1;
    background-image: url("../imgs/pattern-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.story-section.whyus-section>.container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -350px;
    background-color: var(--background);
    background-size: cover;
    z-index: -2;
    left: 0;
}

.story-section .cards>.card img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section .cards>.card .img-container {
    margin-bottom: clamp(10px, 3vw, 25px);
    /* width: 393px; */
    height: 313px;
}

.story-section .cards>.card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.story-section .cards>.card {
    max-width: 391px;
}

.story-section .cards.three-grid {
    padding-bottom: clamp(15px, 4vw, 30px);
    border-bottom: 1px solid #d6d6d6;
}

/* 
.story-section .cards.three-grid .card:not(:last-child) {
    border-right: 1px solid #d6d6d6;
    padding-right: 46px;
} */

.story-section .cards.three-grid .card {
    position: relative;
}

.story-section .cards.three-grid .card:not(:last-child)::before {
    position: absolute;
    content: "";
    border-right: 1px solid #d6d6d6;
    width: 100%;
    height: 100%;
    right: -32px;
}

.story-section .cards.three-grid .card:nth-child(3n)::before {
    display: none;
}

.story-section .cards.three-grid .card>span {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--primary);
}

.story-section.whyus-section::after {
    display: none;
}

/* story-section */

/* testimonial-section */
.testimonial-section {
    background-color: #fffbef;
}

.testimonial-section .section-heading {
    max-width: 463px;
    width: 100%;
}

.testimonial-div .img-container {
    width: 393px;
    height: 393px;
    min-width: 393px;
    min-height: 393px;
}

.testimonial-div .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-section .info p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: #272727;
    margin-top: clamp(15px, 3vw, 30px);
}

.testimonial-section .info span {
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.03em;
    color: rgba(44, 44, 44, 0.76);
}

.section-heading>span {

    display: inline-block;
    margin-bottom: clamp(15px, 3vw, 20px);
}




.testimonial-section .slick-prev,
.testimonial-section .slick-next {
    bottom: -20px;
    top: auto;
}

.testimonial-section .slick-prev {
    left: 22%;
    transform: translateX(-60px);
}

.testimonial-section .slick-next {
    left: 20%;
    transform: translateX(20px);
}

/* testimonial-section */
/* cta-section */
.cta-section {
    /* background-color: #fffbef; */
    position: relative;
    z-index: 1;
}

.cta-section>.container {
    margin: 0 auto -240px;
}

.cta-section .cta-wrapper {
    background-image: url(../imgs/cta-bg.png);
    width: 100%;
    height: 304px;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: clamp(10px, 5vw, 80px) clamp(10px, 5vw, 20px) 0 clamp(10px, 5vw, 50px);
    align-items: end;
}

.cta-section .section-heading {
    padding: clamp(20px, 5vw, 80px) 0;
}

.cta-section .section-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section .section-heading h2 .cta-wrapper .cta-img {
    width: 711px;
    max-width: 711px;
    height: 400px;
}

/* testimonial page */
.testimonial-page {
    background-color: #FFFBEF;
}

.testimonial-card {
    background-color: white;
    padding: clamp(20px, 4vw, 60px) clamp(15px, 3vw, 28px);
    gap: 20px;
    border-radius: 30px;
}

.testimonial-card img {
    width: 236px;
    height: 236px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 236px;
    min-height: 236px;
}

.testimonial-card .name {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 3%;
    margin-top: clamp(20px, 3vw, 40px);
    display: block;

}

.description {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 3%;
    color: #2C2C2CC2;

}

.testimonial-section .container-small {
    position: relative;
}

/* .static-heading {
    position: absolute;
    top: 93px;
    right: 24px;
    transform: translateY(-50%);
    z-index: 2;

} */

.testimonial-page .section-heading {
    margin-bottom: clamp(25px, 4vw, 60px);
}
.testimonial__wrapper .slider-for img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.testimonial-slider .entry-content {
    display: flex;
    flex-direction: column-reverse;
}

/* testimonial page */

/* 404 page */
.error-404{
    padding-top: 150px;
    height: 60vh;
}
.error-404 .page-header {
    text-align: center;
    margin:25vh  auto;
    text-align: center;
}
.error-404 .btn{
    margin-top: 25px;

}
.error404 footer{
    padding-top: clamp(30px,5vw,80px);
}
@media (max-width: 1380px) {
    .story-section .cards.three-grid .card:not(:last-child)::before {
        display: none;
    }

}


@media (max-width: 1400px) {

    .slick-prev,
    .slick-next {
        position: absolute;
        bottom: -70px;
        top: auto;
        transform: none;
    }


    .slick-prev {
        left: 50%;
        transform: translateX(-60px);

    }

    .slick-next {
        left: 50%;
        transform: translateX(10px);

    }

    .whyus-section {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 1280px) {
    .testimonial-card {
        flex-direction: column;
    }

}

@media (max-width: 1080px) {
    .footer-wrapper {
        justify-content: space-between !important;
    }

    .quick-links:not(:last-child) {
        border-right: none;
    }


}

@media (max-width: 980px) {
    .banner-text {
        padding-bottom: clamp(40px, 4vw, 80px);
    }

    .banner-section>div>div.flex {
        align-items: end;
        gap: 30px;
    }

    .aboutus-section>div>div.flex,
    .whyus-section>div>div.flex {
        gap: 30px;
    }
}

@media (max-width:940px) {
    .testimonial-div {
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
        align-items: center !important;
    }

    .static-heading {
        position: unset;
        margin: 0 auto;
        text-align: center;
        transform: none;
    }
}

@media (max-width: 880px) {

    .banner-section>div>div.flex,
    .whyus-section>div>div.flex {
        flex-direction: column;
    }

    .banner-section .banner-text,
    .banner-section .banner-text p,
    .whyus-section .section-heading,
    .whyus-section>div>div.flex>p {
        max-width: 100%;
    }

    .custom-logo {
        max-width: 100px;
    }

    .cta-section .cta-img {
        display: none;
    }

    .cta-section .cta-wrapper {
        width: 100%;
        max-height: 304px;
        height: 100%;
    }

    .story-section .cards>.card .img-container {
        margin-bottom: clamp(10px, 3vw, 25px);
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .circle-slider-section .circle-card {
        /* max-width: 270px !important; */
        aspect-ratio: 1 / 1;
    }



    .testimonial-section .slick-next,
    .testimonial-section .slick-prev {
        left: 50%;

    }

    .testimonial-section .slick-prev,
    .testimonial-section .slick-next {
        bottom: -52px;
        top: auto;
    }

    .circle-slider-section .slick-slide {
        display: block !important;
        outline: none;
    }

    .circle-slider-section .circle-card {
        /* max-width: 250px; */
        width: 100%;
        transform: scale(1);
    }





}

@media (max-width: 720px) {
    .story-section .cards>.card {
        max-width: 100%;
    }
}



@media (max-width: 620px) {
    .aboutus-section>div>div.flex {
        flex-direction: column;
        row-gap: 20px;
    }

    .aboutus-section .img-container {
        height: 300px;
    }

    .aboutus-section .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonials.two-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: row;
    }

    .testimonial-card img {
        width: 175px;
        height: 175px;
        border-radius: 50%;
        object-fit: cover;
        min-width: 175px;
        min-height: 175px;
    }

    .testimonial-card .name,
    .testimonial-card .description,
    .testimonial-card p {
        font-size: 16px;
    }

    .banner-section::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-div .img-container {
        width: 250px;
        height: 250px;
        min-width: 250px;
        min-height: 250px;
    }

    .circle-slider-section .slick-active .overlay {
        opacity: 1;
    }

}