@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container-fluid {
    --bs-gutter-x: 8rem;
}

body {
    background-color: #F9F6F2;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.header .nav-item .nav-link {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #000;
}

.theme-btn-outline {
    outline: 1px solid #000;
    padding: 0.6rem 1.5rem 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: .1s ease-in;
}

.theme-btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.theme-btn {
    background-color: #000;
    padding: 0.6rem 1.5rem 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: .1s ease-in;
}

.green-btn {
    background-color: #01A82D;
    padding: 0.6rem 1.5rem 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: .1s ease-in;
}

.green-btn:hover {
    outline: 1px solid #01A82D;
    background-color: #fff;
    color: #01A82D;
}

.theme-btn:hover {
    outline: 1px solid #000;
    background-color: #fff;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.hero-bg {
    background-color: #F4EEE5;
    border-radius: 20px;
}

.hero-title h1 {
    font-size: 62px;
}

.hero-title h1 .cursive-style {
    color: #01A82D;
    font-style: italic;
}

.hero-para {
    max-width: 789px;
    margin: auto;
}

.hero-para p {
    font-size: 20px;
    font-weight: 300;
}

.hero-images img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.banner-btn .theme-btn {
    padding: 13px 28px 13px 28px;
}

.sub-text p {
    font-family: "Figtree", sans-serif;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 700;
}

.section-title h2 .cursive-style {
    color: #01A82D;
    font-style: italic;
}

.service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

.service-box .image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-title h3 {
    font-weight: 500;
    font-size: 24px;
    color: #01A82D;
}

.service-content p {
    font-weight: 400;
    font-size: 16px;
    color: #131313;
}

.service-carousel .service-box {
    transition: all 0.4s ease;
    transform: scale(0.9);
    opacity: 0.6;
}

/* ACTIVE CENTER CARD */
.service-carousel .owl-item.active.center .service-box {
    transform: scale(1.05);
    opacity: 1;
}

/* SIDE CARDS */
.service-carousel .owl-item.active:not(.center) .service-box {
    transform: scale(0.9);
    /* opacity: 0.6; */
}

.service-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.service-carousel .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
}

/* LEFT GREEN */
.service-carousel .owl-prev .arrow {
    background: #04a82e;
    color: #fff;
}

/* RIGHT BLACK */
.service-carousel .owl-next .arrow {
    background: #000;
    color: #fff;
}

/* Hide by default */
.service-box .read-more {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show only center active */
.service-carousel .owl-item.active.center .service-box .read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Optional styling */
.read-more a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

@media (max-width: 991px) {

    .service-carousel .owl-item.active.center .service-box {
        transform: scale(0.9);
        opacity: 0.6;
    }

    .service-carousel .owl-item.custom-active .service-box {
        transform: scale(1);
        opacity: 1;
    }

    .service-carousel .owl-item.custom-active .service-box .read-more {
        opacity: 1;
        transform: translateY(0);
    }

    .container-fluid {
        --bs-gutter-x: 2rem;
    }
}

@media (max-width: 1110px) {
    .navbar-expand-lg .navbar-nav {
        gap: 0 !important;
    }
}
@media (max-width: 450px) {
    .hero-title h1{
        font-size: 35px;
    }
    .section-title h2{
        font-size: 35px;
    }
}