body {
    font-family: 'Poppins', sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;

}

h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
}

h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-size: 22px;
    margin: 0;
}

h4{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

p {
    font-size: 16px;
    font-weight: 500;
    color: #282828;
    margin: 0;
}

label {
    font-size: 11px;
    font-weight: 500;
    color: #282828;
    margin: 0;
}

header {
    background-color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7.5%;
}

.logo {
    width: 90px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex: 1;
    /* padding: 0 20%; */
}

nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 7.5%;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    font-size: 12px;
}

.profile-icon {
    width: 35px;
    height: 35px;
}



/* BODY */

.small-section {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7.5% 0 0 7.5%;
    background-color: #FAFAFA;
}

.sm-section2 {
    padding-top: 4%;
}

.small-section-content {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
}

.hero-img-container {
    width: 350px;
    height: 350px;
    position: relative;
}

.hero-img-container-without-bg {
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #0E9D4C;
    border-radius: 50%;
    z-index: 0;
}

.hero-img {
    /* width: 100%; */
    height: 90%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-img-without-bg {
    width: 90%;
    object-fit: contain;
}

.btn {
    padding: 10px 20px;
    background-color: #0E9D4C;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.btn:hover {
    background-color: #36B87C;
}

.divider {
    height: 4px;
    width: 100%;
    background-color: #0E9D4C;
}

.learn-more-btn {
    padding: 10px 40px;
}

.bold {
    font-weight: 600;
}

.product-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    width: 70%;
    height: 90vh;
    margin: 8% auto;
    background-color: #FAFAFA;
}

.left-container,
.right-container {
    flex: 1;
    background: white;
    border-radius: 8px;
}

.left-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.right-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px 30px; */
}

.product-section .description {
    width: 80%;
}

.text {
    line-height: 15px;
}

.checkout-btn {
    width: 80%;
}

.counter {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: bold;
    color: green;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#count {
    font-size: 22px;
    font-weight: bold;
    color: green;
    background: white;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 50px;
}


.product-section ul {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .right-container {
        text-align: center;
    }

    .product-section .description {
        width: 100%;
    }
}

.features {
    display: flex;
    height: 200px;
    align-items: center;
    background-color: white;


}

.features-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: start;
    gap: 25%;
    padding: 20px;
    text-align: center;
    background-color: white;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.feature img {
    width: 80px;
    /* Adjust as needed */
    height: auto;
}

/* .feature p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
} */




.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.testimonials-section h1 {
    margin: 20px 0;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    position: relative;
}


.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%;
    gap: 80px;
    justify-content: center;
    transform: translateX(-50%);
}

.testimonial {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 60%;
    max-width: 800px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;

    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Show the first testimonial */
.testimonial.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 10px 0;
    object-fit: cover;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    text-align: start;
    max-width: 500px;
    margin: 10px 0;
}

.quote {
    font-size: 40px;
    color: green;
    font-weight: bold;
    display: flex;
    width: 100%;
}

.quote img {
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
}

.quote-right {
    justify-content: flex-end;
}

.quote-right img {
    transform: rotate(0deg);
}

.dots {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: green;
}











.services-section {
    padding: 40px 7.5%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
}

.services-title {
    font-size: 32px;
    font-weight: bold;
}

.services-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 45%;
    min-width: 350px;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.green {
    background-color: #0EA14D;
}

.yellow {
    background-color: #D9AB20;
}

.service-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 30%;
}


.service-content h2 {
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.service-content button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.white-btn {
    background-color: white;
    color: #0EA24E;
}

.gray-btn {
    background-color: #D9D9D9;
    color: black;
}


.white-btn:hover {
    background-color: #f0f0f0;
}

.gray-btn:hover {
    background-color: #B0B0B0;

}

.service-img {
    width: 150px;
    max-width: 40%;
}

.coming-soon-img {
    width: 200px;
    max-width: 40%;
}





.footer {
    background-color: #0EA24E;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
}

.footer-newsletter input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-newsletter button {
    width: 100%;
    background-color: white;
    font-size: 14px;
    font-weight: 600;
    color: #0EA24E;
}

.footer-newsletter button:hover {
    background-color: #f0f0f0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 5px 0;
    color: white;
}

.contact-icon {
    width: 25px;
    height: 25px;
    margin-right: 20px;
}


@media (max-width: 768px) {

    .small-section {
        flex-direction: column;
        align-items: flex-end;
        gap: 40px;
        padding-top: 60px;
        /* padding: 7.5%; */
    }

    .sm-section2 {
        align-items: center;
        /* margin-top: 60px; */
    }

    .small-section-content {
        width: unset;
        padding-right: 7.5%;
        gap: 30px;
    }

    .features-container {
        gap: 20px;
    }

    .feature {
        width: 30%;
    }

    .feature img {
        width: 60px;
    }

    .service-card {
        max-width: unset;
        min-width: unset;
        width: 95%;
    }

    .services-section {
        padding: 50px 7.5%;
    }

    nav a {
        white-space: nowrap;
    }

    nav ul li {
        margin: 0 5%;
    }

    .hero-img-container-without-bg {
        display: none;
        width: 60%;
    }

    .btn {
        margin: auto;
        padding: 10px 30px;
    }

    .right-container {
        padding: 20px;
    }

    .text {
        text-align: start;
        line-height: 19px;
    }

    label {
        font-size: 14px;
    }

    .product-section {
        width: 80%;
    }
}



/* About Page */
.sm-section3 {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5% 12.5%;
    background-color: #FAFAFA;
}
.sm-section3 .small-section-content{
    width: 50%;
}
.sm-section3 .hero-img-container-without-bg{
    width: 200px;
}

.mission-section{
    background-color: #0EA24E;
    padding: 50px 12.5%;
}
.mission-inner-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
}

.mission,.vision{
    background-color: white;
    padding: 20px;
    width: 45%;
    border-radius: 8px;
}
.mission-section h2{
margin-bottom: 20px;
}
.mission-section label{
    font-weight: 700;
}

.family-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 5% 12.5%;
}

.family-section .left{
    width: 50%;
}
.family-section .right{
    flex: 1;    
}
.family-section .right h1{
    margin-bottom: 20px;
}
.family-section .left img{
    width: 100%;
}


@media (max-width: 768px){
    .mission-inner-container{
        flex-direction: column;
    }
    .mission, .vision{
        width: unset;
    }
    .family-section{
        flex-direction: column;
        padding: 15% 12.5%;
        gap: 10px;
    }
    .family-section .left{
        width: unset;
    }
}