* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Verdana pro", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensure body takes the full viewport height */
    margin: 0;
    background-color: var(--white);
    font-optical-sizing: auto;

}

main {
    flex: 1;

    /* Makes the main content expand to fill available space */
}



:root {
    --logo-color: #f79836;
    --primary-color: #a8cf45;
    --primary-color-dark: #0e844d;
    --text-dark: #333333;
    --white: #ffffff;
    --button: #0b3d26;

}

/* Offer Section Grid Layout */
.offer-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    /* Adjust the min size to prevent overflow */
    gap: 1.5rem;
    padding: 2rem;
}

/* Styling each Box in Offer Section */
.offer-section .box {
    position: relative;
    height: 20rem;
    overflow: hidden;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    /* Center the image inside the box */
}

.offer-section .box img {
    width: 100%;
    /* Make image responsive to box width */
    height: 100%;
    object-fit: inherit;
    /* Ensure the image doesn't distort */
    transition: transform 0.3s ease;
    /* Smooth transition */

}

.offer-section .box:hover img {
    transform: scale(1.1);
    /* Zoom-in effect */
}

/* Content inside each Box */
.offer-section .box .content {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.offer-section .box .content span {
    font-size: 1.5rem;
    color: #333;
}

.offer-section .box .content h3 {
    font-size: 25px;
    color: #333;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.offer-section .box .content .btn {
    padding: .6rem 2rem;
    font-size: 1.5rem;
    color: #333;
    border: 0.2rem solid #333;
    background: none;
    cursor: pointer;
    border-radius: .5rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.offer-section .box .content .btn:hover {
    background: #333;
    color: #fff;
}

/* Media Queries */
@media (max-width: 1024px) {
    .offer-section {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .offer-section {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        /* Adjust the min size for smaller screens */
    }

    .offer-section .box {
        height: 20rem;
        /* Adjust box height for smaller screens */
    }
}

@media (max-width: 480px) {
    .offer-section {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        /* Adjust for very small screens */
    }

    .offer-section .box {
        height: 16rem;
        /* Adjust box height for very small screens */
    }
}

/* Large Screens (e.g., TV) */
@media (min-width: 1400px) {
    .offer-section {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        /* Adjust to ensure single-line layout */
    }

    .offer-section .box {
        height: 25rem;
        /* Optional: Adjust box height for large screens */
    }
}


/* Shop by category css */
.shop-by-category {
    padding: 10px 20px;
    background-color: #ef5e1652;
    /* Section background color */
    position: relative;
    text-align: center;
}

.category-header h2 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--primary-color-dark);
}

.category-header p {
    font-size: 16px;
    color: var(--text-dark);

}

.carousel-fixer {
    position: relative;
    margin: 10px auto;
    width: 90%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.category {
    min-width: 20%;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.category img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    filter: drop-shadow(0px 7px 5px #55555569);

}

.category h2 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-color-dark);
}

.category p {
    font-size: 15px;
    color: var(--text-dark);
}

.category .view-product-button {
    display: inline-block;
    padding: 8px 10px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--white);
    z-index: 10;
    background-color: var(--button);
    text-decoration: none;
    transition: background-color 0.3s;
}

.category .view-product-button:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 0 10px var(--primary-color);

}

.view-product-button:hover .arrow-flicker {
    transform: translateX(7px);
    opacity: 1;

}

.category:hover {
    transform: scale(1.05);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    user-select: none;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-button:hover {
    transform: translateY(-50%) scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 6px 15px var(--primary-color);
    /* Make the shadow more pronounced on hover */
}

.left-button {
    left: 25px;
    /* Moves button outside the subsection */
}

.right-button {
    right: 25px;
    /* Moves button outside the subsection */
}

@media (max-width: 480px) {
    .category {
        min-width: 100% !important;
    }

    .col-2 .offer-img {
        margin-left: 0px !important;
    }

    .category img {
        width: 75%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .category {
        min-width: 32%;
    }

    .category img {
        width: 100%;

    }

    .category-header h2 {
        font-size: 28px;
    }

    .category-header p {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-frame {
        width: 33.3333%;
    }
}

@media (max-width: 767px) {
    .product-frame {
        width: 50%;
    }
}

.arrow-button {
    margin-top: 3px;
}



/* Shop by concern css */
.shop-by-concern {
    padding: 10px 20px;
    background-color: #beeb8a5c;
    /* Section background color */
    position: relative;
    text-align: center;
}

.concern-header h2 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--primary-color-dark);
}

.concern-header p {
    font-size: 16px;
    color: var(--text-dark);
}

.concern-wrapper {
    position: relative;
    margin: 10px auto;
    width: 90%;
    overflow: hidden;
}

.concern-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.concern {
    min-width: 24%;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.concern img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    filter: drop-shadow(12px 10px 5px #55555569);

}

.concern h2 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--primary-color-dark);
}

.concern p {
    font-size: 15px;
    color: var(--text-dark);
}

.concern .view-product-button {
    display: inline-block;
    padding: 8px 10px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--white);
    z-index: 10;
    background-color: var(--button);
    text-decoration: none;
    transition: background-color 0.3s;
}

.concern .view-product-button:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 0 10px var(--primary-color);
}

.concern:hover {
    transform: scale(1.05);
}

.concern-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    user-select: none;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.concern-button:hover {
    transform: translateY(-50%) scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 6px 15px var(--primary-color);
    /* Make the shadow more pronounced on hover */
}

.concern-left-button {
    left: 25px;
    /* Moves button outside the subsection */
}

.concern-right-button {
    right: 25px;
    /* Moves button outside the subsection */
}

@media (max-width: 480px) {
    .concern {
        min-width: 100% !important;
    }

    .concern img {
        width: 75%;

    }

    .carousel-button {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .concern-button {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .concern {
        min-width: 32% !important;
    }

    .concern-left-button {
        left: 10px;
        /* Moves button outside the subsection */
    }

    .concern-right-button {
        right: 10px;
        /* Moves button outside the subsection */
    }

    .concern-header h2 {
        font-size: 28px;
    }

    .concern-header p {
        font-size: 16px;
    }

    .concern img {
        width: 100%;

    }


}


/* product crausal stylesheet */
.carousel-container1 {

    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.carousel1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 10px;
    background-color: var(--white);
    text-align: center;
}

.carousel1-heading {
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.carousel1-heading h1,
.carousel1-heading h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: var(--primary-color-dark);

}

.carousel1-heading p {
    font-size: 1.2rem;
    color: var(--text-dark);
}


.carousel-track1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}



.carousel-btn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    user-select: none;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-btn1 {
    transform: translateY(-50%) scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 6px 15px var(--primary-color);
    /* Make the shadow more pronounced on hover */
}

.carousel-btn1.prev {
    position: absolute;
    left: 2px;
}

.carousel-btn1.next {
    position: absolute;
    right: 2px;
}

@media (max-width: 768px) {
    .product-frame {
        flex: 0 0 330px;
    }
}

@media (max-width: 480px) {
    .product-frame {
        flex: 0 0 330px;
    }

    .product-buttons button {
        padding: 8px 15px !important;
    }
}







/* Our vission style sheet */
/* Our Vision Section */

.our-vision {
    position: relative;

    background-size: cover;
    padding: 20px 0px;
    color: #333;
    text-align: center;
}

.our-vision .overlay {
    background: #beeb8a5c;
    padding: 30px 60px;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-vision h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.our-vision .intro {
    font-size: 18px;
    margin-bottom: 40px;
}

.vision-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.point {
    background: linear-gradient(145deg, #d4f5bc, #c2e7a5);
    border-radius: 15px;
    padding: 24px;
    max-width: 280px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(180, 184, 175, 0.3);
    flex: 1 1 260px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #355e3b;
}

.point:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(180, 184, 175, 0.4);
}

@keyframes softBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}


img.health-img {
    animation: softBounce 2.5s ease-in-out infinite;
    width: 80px;
    margin: 15px;
}

/* .point:hover {
    transform: translateY(-10px);
} */

img.other-img {
    animation: softBounce 2.5s ease-in-out infinite;
    width: 100px;
    margin-bottom: 15px;
}

.point h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--logo-color);
}

.point p {
    font-size: 16px;
    line-height: 1.5;
}

.explore-more {
    background-color: var(--button);
    color: var(--white);
    padding: 14px 30px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.explore-more:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 0 10px var(--primary-color);
}

@media (max-width: 768px) {
    .vision-points {

        align-items: center;
    }

    .our-vision h2 {
        font-size: 32px;
    }

    .our-vision .intro {
        font-size: 18px;
    }

    .our-vision .overlay {
        padding: 30px;
    }

    .point {
        max-width: 300px;
    }

    .container ul {
        margin: 0px 20px !important;
    }

    .concern-header h2,
    .category-header h2 {
        font-size: 24px;
    }

    .concern-header p,
    .category-header p {
        font-size: 14px;
    }

    .offer-section .box .content h3 {
        font-size: 22px;
    }

    .carousel1-heading h1,
    .carousel1-heading h2 {
        font-size: 28px;
    }

    .category h2 {
        font-size: 17px;

    }

    .certificates-section {
        gap: 67px !important;

    }
}

.product-frames {

    margin: 5px;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    border: 0.2px solid #0e844d8a;
    text-align: center;
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-images {
    position: relative;
    height: 254px;
    overflow: hidden;
}

.product-images img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-images .hover-image {
    opacity: 0;
}

.product-frames:hover .hover-image {
    opacity: 1;
}

.product-frames:hover .default-image {
    opacity: 0;
}

@media (min-width: 481px) and (max-width: 768px) {


    .product-images {
        height: 200px;
    }
}

@media (max-width: 480px) {

    .product-images {
        height: 200px;
    }

    .items {
        flex: 0 0 94% !important;
    }
}

@media (max-width: 1024px) {
    .offer-section .box .content h3 {
        font-size: 16px;
    }

    .offer-section {
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    }

    .offer-section .box {
        height: 15rem;
    }

    .offer-section .box .content span {
        font-size: 20px;
    }

   

}

.badges-container {
    background-color: transparent !important;
}


.certified-img {
    flex: 1 0 250px;
    margin: 10px;
    padding: 20px;
    height: 200px;
    object-fit: cover;
}

.certified-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-container {
    display: flex;
    width: 100%;
}

.carousel-container {
    padding: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    margin-bottom: 20px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel {
    display: flex;
    transition: transform 0.4s ease;

}

.arrow {
    transform: translateY(-50%);
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    padding: 10px;
    margin: 10px;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 5px var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 5px 8px var(--primary-color);
    /* Make the shadow more pronounced on hover */
}

.items {
    flex: 0 0 98%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    margin: 5px;
}


.container ul {
    margin: 0px 25px;
}

/* Tablet: 3 items */
@media (min-width: 768px) {
    .items {
        flex: 0 0 31.333%;
    }
}

/* Desktop: 4 items */
@media (min-width: 1024px) {
    .items {
        flex: 0 0 24%;
    }
}

.certificate {
    padding: 20px;
}

.certificates-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
}

.certificates-box {
    width: 18%;
    min-width: 116px;
    text-align: center;
}

.certificates-box img {
    width: 100%;
    max-width: 130px;
    height: auto;
    transition: transform 0.3s ease;
}

.certificates-box img:hover {
    transform: scale(1.05);
}