@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Darker+Grotesque:wght@300..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Inter Tight", sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Geist", sans-serif;
}

* {
    box-sizing: border-box;
}

/********** Global Styles **********/

:root {
    --primary-color: #E4FF60;
    --black-color: #000000;
    --white-color: #ffffff;

}

.bg-yellow {
    background-color: var(--primary-color);
}

.btn-yellow {
    background-color: var(--primary-color);
    padding: 10px 20px;
    color: var(--black-color);
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
}

.btn-yellow:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.btn-black {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
}

.btn-black:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    transform: scale(1.1);
}



/********** Navigation bar ************/


.navbar-nav .nav-link {
    color: var(--black-color);
    font-weight: 500;
    margin-right: 20px;
    padding: 8px 15px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: var(--black-color);
}

.navbar .btn-black:hover {
    transform: translateY(0px) !important;
    color: var(--black-color);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 175px;
}

.search-box input {
    width: 100%;
    padding: 8px 32px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 14px;
}

.right-menus a:nth-of-type(2),
.right-menus a:nth-of-type(3) {
    border-radius: 50px;
    box-shadow: 0 0 10px #ddd;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--black-color);
}



.right-menus a:not(:first-of-type):hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}

/*****Carousel Slider*****/

#carouselPethabitats .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 15rem;
    max-width: 700px;
    text-align: left;
    padding: 1.25rem;
    color: #fff;
    z-index: 5;
}

#carouselPethabitats .carousel-caption h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}


#carouselPethabitats .carousel-caption p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;

}

#carouselPethabitats .carousel-caption p span {
    color: #FFEA00;
    font-weight: 600;
}

#carouselPethabitats .banner-btngroup {
    display: flex;
    justify-content: start;
    gap: 20px;
}

#carouselPethabitats .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #363636;
}

#carouselPethabitats .carousel-indicators .active {
    background-color: #fff;
}

#carouselPethabitats .carousel-item img {
    object-fit: cover;
}

#carouselPethabitats .carousel-des p {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--white-color);
    font-weight: 400;
}

#carouselPethabitats .carousel-des p a {
    font-size: 16px;
    color: var(--white-color);
}

/* **Smart Care Section** */
.smart-care {
    position: relative;
    padding-bottom: 320px;
}

.smart-care-bg {
    background: var(--primary-color);
    padding: 60px 0;
    min-height: 500px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.smart-care-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.smart-care .smart-care-title::before,
.smart-care .smart-care-title::after {
    content: "";
    flex: 1;
    max-width: 100%;
    height: 1px;
    background-color: #91AA13;
}

.smart-care h3 {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin: 15px auto 0;
    max-width: 700px;
}

.smart-care-box {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 960px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.best-seller {
    padding: 0px 0 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .smart-care {
        padding-bottom: 220px;
    }

    .smart-care-bg {
        min-height: auto;
        padding: 40px 15px;
    }

    .smart-care h3 {
        font-size: 22px;
    }

    .smart-care-box {
        bottom: -110px;
        max-width: 90%;
    }

}

/* ** Best Seller** */

.best-seller .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.best-seller h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--black-color);
}

.best-seller .card {
    height: 100%;
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.best-seller .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.best-seller .card-img-top {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.best-seller .card:hover .card-img-top {
    transform: scale(1.05);
}

.best-seller .card-body {
    text-align: center;
    padding: 20px;
}

.best-seller .card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black-color);
}

.best-seller .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);

}

.best-seller .old-price {
    font-size: 18px;
    color: #FF0000;
    text-decoration: line-through;
    margin-left: 8px;
}

/*** About Us ***/

.about-us .about-content {
    background-color: var(--primary-color);
    padding: 60px 40px 60px 60px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 695px;
}

.about-us .about-content .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.about-us .about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black-color);
}


.about-us .about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--black-color);
}

.about-us .about-content a.btn {
    max-width: fit-content;
    margin-top: 15px;
    border: 1px solid var(--black-color);
}

/* Dog Waste Disposal System | Pet Habitats */

.dog-waste {
    background-image: url(../images/dog-waste.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.dog-waste .dog-waste-content .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.dog-waste .dog-waste-content {
    max-width: 600px;
    text-align: center;
}

.dog-waste .dog-waste-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black-color);
}

.dog-waste .dog-waste-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--black-color);
}

/* Products */

.products {
    padding: 40px 0;
    background-color: #E9F9FF;
}

.products .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.products h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--black-color);
}

.products .card {
    height: 100%;
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    background-color: transparent;
    border: none;
}

.products .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.products .card-img-top {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.products .card:hover .card-img-top {
    transform: scale(1.05);
}

.products .card-body {
    text-align: center;
    padding: 20px;
}

.products .card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black-color);
}

.products .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);

}

.products .old-price {
    font-size: 18px;
    color: #FF0000;
    text-decoration: line-through;
    margin-left: 8px;
}



/* *** Testimonials *** */

.testimonials {
    background: #fff;
    position: relative;
}

.testimonials .section-title {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--black-color);
}

/* ================================
   Owl Carousel Equal Height Fix
================================ */
.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
}

/* ================================
   Testimonial Card
================================ */
.testimonial-card {
    background: #FFEFD3;
    border-radius: 28px;
    padding: 45px 35px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 360px;
    transition: all 0.4s ease;
}

.testimonial-card .quote {
    font-size: 72px;
    color: #E2C088;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.7;
    margin-bottom: auto;
}

.testimonial-card hr {
    margin: 25px 0 15px;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 1);
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 4px;
}

.testimonial-card .stars {
    color: #F5B300;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card:hover {
    background: var(--primary-color);
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .quote {
    color: #BFDD31;
}

/* ================================
   Owl Dots
================================ */
.testimonials .owl-carousel .owl-dots.disabled {
    display: block !important;
}

.testimonials .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonials .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 0.3;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.testimonials .owl-dots .owl-dot.active span {
    opacity: 1;
    transform: scale(1.4);
    background: #000;
}

/* ================================
   Responsive
================================ */
@media (max-width: 991px) {
    .testimonials h2 {
        font-size: 32px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 35px 25px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 2;
}

.cta-box {
    background: #08a9dd;
    border-radius: 20px;
    padding: 40px 50px;
    color: #fff;
}

.cta-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.btn-cta {
    background: #e6ff3f;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-cta:hover {
    background: #d4f500;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white-color);
    padding: 120px 0 30px;
    margin-top: -80px;
}

.footer h6 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;

}

.footer ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.5s ease-in-out;

}

.footer ul li a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.tagline {
    font-size: 14px;
    color: var(--white-color);
}

.social-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    color: var(--white-color);
    margin-left: 8px;
    text-decoration: none;
}

/* Newsletter */
.newsletter {
    display: flex;
    border: 1px solid #444;
}

.newsletter input {
    background: transparent;
    border: none;
    color: var(--white-color);
    padding: 6px;
    width: 100%;
    outline: none;
}

.newsletter button {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 14px;
}

.certificates img {
    height: 32px;
    margin-left: 10px;
}

/* ****Responsive css */
@media screen and (max-width: 1699px) and (min-width: 1400px) {
    #carouselPethabitats .carousel-caption {
        bottom: 10rem;
        left: 5%;
    }

    .our-practice-areas .owl-nav .owl-prev,
    .testimonials .owl-nav .owl-prev {
        left: -30px;
    }

    .our-practice-areas .owl-nav .owl-next,
    .testimonials .owl-nav .owl-next {
        right: -30px;
    }

}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .navbar-nav .nav-link {
        color: var(--black-color) !important;
        font-weight: 500;
        margin-right: 0;
        font-size: 14px;
    }

    #carouselPethabitats .carousel-caption {
        bottom: 5rem;
        left: 5%;
    }


}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        margin-right: 8px;
    }

    .carousel-des img {
        max-width: 128px;
        height: 25px !important;
    }

    #carouselPethabitats .carousel-item img {
        height: 600px;
        object-fit: cover;
    }

    #carouselPethabitats .carousel-caption {
        bottom: 6rem;
    }

    .about-us .about-content h2 {
        font-size: 24px;
    }


}

@media screen and (max-width: 991px) and (min-width: 768px) {}

@media screen and (max-width: 991px) {

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 65px;
        z-index: 999;
        text-align: left;
        background: #fff;
        left: 0;
        width: 100%;
        border-top: 1px solid #ddd;
    }
}

@media screen and (max-width: 767px) {}


/* Inner Banner */
.inner-banner {
    /* background-image: url(../images/about-banner.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 80px;
    text-align: center;
    height: 500px;
}

.inner-banner .inner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.inner-banner .inner-content p {
    font-size: 16px;
    color: var(--white-color);
}

.inner-banner .breadcrumb {
    background: transparent;
    padding: 0;
}

.inner-banner .breadcrumb-item a,
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
    text-decoration: none;

}

.inner-banner .breadcrumb-item.active {
    color: var(--white-color)
}

/* Counter */
.webcounter .counter-item {
    position: relative;
}

.webcounter .counter-item h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.webcounter .counter-item p {
    font-size: 16px;
    color: var(--black-color);
}

.webcounter .counter-item::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: #A8A3A3;
}

.webcounter .counter-item:last-child::after {
    display: none;
}

@media (max-width: 767px) {
    .webcounter .counter-item::after {
        display: none;
    }
}

/*** Our values ****/

.our-values {
    padding: 40px 0;
    background: #FFFFFF;
}

.our-values .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.our-values h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--black-color);
    text-align: center;
}

.our-values .value-card {
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.5s ease-in-out;
    border: 1px solid #A3A1A1;
    border-radius: 40px;
}

.our-values .value-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.our-values .value-card img {
    max-width: 80px;
    margin-bottom: 20px;
}

.our-values .value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black-color);
}

.our-values .value-card p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.7;
}

/* Our Mission   */

.our-mission {
    padding: 40px 0 0;
    background: #E9F9FF;
}

.our-mission .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.our-mission h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black-color);
}

.our-mission p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.7;
}

.our-mission .btn-yellow {
    margin-top: 15px;
}

/* for blog start */

.posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    min-width: 280px;
}

/* for blog end */

/* for woocommerce product page start */


/* PRODUCT GRID CARD */
.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 18px;
    /*     margin: 15px 1.5%; */
    /*     width: 31%; */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* HOVER EFFECT */
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    border-color: #dcdcdc;
}

/* PRODUCT IMAGE */
.woocommerce ul.products li.product a img {
    border-radius: 10px;
    transition: 0.3s ease;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* PRODUCT TITLE */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 15px 0 8px;
    min-height: 45px;
}

/* PRICE */
.woocommerce ul.products li.product .price {
    font-size: 20px;
    font-weight: 700;
    color: #D10202;
    margin-bottom: 12px;
    display: block;
}

/* ADD TO CART BUTTON */
.woocommerce ul.products li.product .button {
    background: #ffeb00;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* BUTTON HOVER */
.woocommerce ul.products li.product .button:hover {
    background: #016BB3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(1, 75, 130, 0.25);
}

/* SALE BADGE */
.woocommerce span.onsale {
    background: #D10202;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    top: 10px;
    left: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .woocommerce ul.products li.product {
        width: 47%;
        margin: 12px 1.5%;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products li.product {
        width: 100%;
        margin: 10px 0;
    }
}

/* for woocommerce product page end */