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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     /* background-color: rgba(0, 128, 28, 0.075); */
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    padding: 8px;
    background: #222;
    color: white;
}

/* Logo in Navbar */
.logo {
    cursor: pointer;
}

.logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
    max-height: 40px;
    transition: transform 0.3s ease-in-out;
}

/* Enlarged Logo Overlay */
#logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Enlarged Logo */
#enlarged-logo {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    background: white;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Close Button */
/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    background: black;
    border-radius: 50%;
    padding: 5px 10px;
}

.close-btn:hover {
    background: red;
}


/* Hide Enlarged Logo Initially */
.hidden {
    display: none !important;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

.navbar {
    list-style: none;
    display: flex;
    background-color: #333;
}

 li {
    margin: 10px;
    margin-left: 0;
    list-style: none;
    
}

  nav a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    transition: 0.3s;
}

.navbar a:hover {
    background-color: green;
    border-radius: 4px;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
}

.overlay {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 1;
    margin-top: 55px;
    margin-bottom: 0.4px;
}

i {
    margin-right: 10px;
    cursor: pointer;
    font-size: 15px;
    color: white;
}

i:hover {
    color: green;
    transition: 0.3s ease-in-out;
}

.socials {
    margin-left: 30px; 
}  

.socials a {
    margin-right: 10px; 
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

.delivery {
    margin-left: 10px;
    margin-right: 10px; 
}

.contact {
    width: 520px; 
}

.contact i {
    margin-left: 10px;
} 

.contact a {
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
    font-size: 10px;
    font-weight: bold;
}

.contact a:hover {
    color: green;
}


/* slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.219), rgba(0, 0, 0, 0.336));
    z-index: 1;
}

/* Image styling */
.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Display the active image */
.hero img.active {
    opacity: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideLeft {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

  @keyframes popInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    opacity: 0;
}

.hero-content.animate h1 {
    animation: slideUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-content h2 {
    font-size: 60px;
    margin-bottom: 10px;
    opacity: 0;
}

.hero-content.animate h2 {
    animation: scaleUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0;
}

.hero-content.animate p {
    animation: slideDown 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-content a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

 .hero-content button {
    background-color: green;
    color: white;
    padding: 20px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    opacity: 0;
}

.hero-content.animate button {
    animation: scaleUp 1s ease-in-out forwards;
    animation-delay: 0.7s;
}

 .hero-content button:hover {
    background: rgba(0, 128, 0, 0.589);
    color: white;
    border: 2px solid green;
    border-radius: 5px;
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}


.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.dot.active {
    background-color: white;
}
.nav-box {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 2;
}
.nav-box.left {
    left: 0;
}
.nav-box.right {
    right: 0;
}
/* About */

.about{
    margin-top: 1%;
    padding: 30px;
}  

 h1 {
    text-align: center;
    font-size: 35px;
}

.content{
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 128, 28, 0.075);
    margin: 20px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    animation: slideUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.image img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px;
    padding-right: 25px;
    animation: slideUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.text{
    width: 100%;
    text-align: center;
    animation: slideDown 1.5s ease-out forwards;
    animation-delay: 0.5s;
    margin: 15px;
}

.text p{
    font-size: 16px;
    /* font-style: italic; */
    line-height: 1.5;
    margin-bottom: 10px;
    animation:  1.5s ease-out forwards;
    animation-delay: 0.5s;
    /* margin: 15px; */
    position: relative;
}


.quote::before,
.quote::after {
    content: '“'; 
    font-size: 1.5rem;
    color: green;
    font-weight: bold;
    position:sticky;
}

.quote::after {
    content: '”'; 
    right: 10px;
}

.statement{
    display: flex;
    flex-direction: row;
    font-size: 15px;
    line-height: 1.5;
    gap: 10px; 
    margin: 15px; 
    margin-left: 10%;
    margin-right: 10%;
    padding: 20px;
}

.statement-item{
    /* border-right: rgba(0, 128, 0, 0.685) solid 2px;  */
    box-shadow: rgba(0, 128, 0, 0.829) 1px 1px 1px 1px;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    animation: slideRight 1.5s ease-out forwards;
    animation-delay: 0.1s;
}

.statement h3{
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-left: 10%;
    margin-right: 10%;
    position: relative;
}


.statement p{
    text-align: start;
    font-size: 12px;
    line-height: 1.5;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10%;
    margin: 15px;
    animation: scaleUp 1.5s ease-out forwards;
    animation-delay: 0.5s;
    position: relative;
}

.collection{
    text-align: center;
    margin: 20px;
    animation: slideLeft 1.5s ease-out forwards;
    animation-delay: 0.1s; 
}

.collection-text{
    text-align: center;
    margin: 50px;
    margin-bottom: 5%;
    /* animation: slideLeft 1.5s ease-out forwards;
    animation-delay: 0.1s;  */
}

p{
    text-align: center;
    font-size: 15px;
    margin: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.carousel-container {
    width: 100%;
    max-width: 1000px; /* Increased width */
    margin: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}
.carousel {
    display: flex;
    gap: 20px; /* Increased gap */
    transition: transform 0.5s ease-in-out;
}
.collection-item {
    flex: 0 0 calc(50% - 10px); /* Ensuring exactly two images are visible */
}
.collection-item img {
    width: 80%;
    height: 250px; /* Increased height */
    object-fit: cover;
    border-radius: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    opacity: 0; /* Hide buttons initially */
    transition: opacity 0.3s ease-in-out;
}
.prev { left: 50px; }
.next { right: 50px; }
.carousel-container:hover .prev,
.carousel-container:hover .next {
    opacity: 1; /* Show buttons when hovering */
}
/* Products Section */
.products {
    text-align: center;
    margin-bottom: 5%;
    margin-right: 10%;
    margin-left: 10%;
    animation: scaleUp 1.5s ease-out forwards;
    animation-delay: 0.1s;
}

/* Products Grid */
.products-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    object-fit: cover;
    justify-content: center;
    margin-top: 4%;
}

/* Wrapper to hold image + buttons */
.product-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    /* background: transparent; */
    /* padding: 5px; */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(12, 14, 12, 0.829);
    transition: transform 0.3s ease-in-out;
}

.product-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 128, 0, 0.829);

}

/* Make images responsive */
.product-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}


/* Price Label - Aligned to the left */
/* .price-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: green;
    padding: 10px 0;
    margin-left: 5px;
    text-align: left;
} */

/* Button container - Initially hidden */
.button-container {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 5px;
    margin-left: 10px;
    margin-top: -5px;
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show buttons on hover */
.product-wrapper:hover .button-container {
    opacity: 1;
}

/* Buy Now Button */
.buy-btn {
    background: green;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none; 
    transition: background 0.3s, transform 0.2s;
}

.buy-btn:hover {
    background: darkgreen;
    transform: scale(1.1);
}

/* Like Button */
.like-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.3s;
    color: gray;
}

.like-btn:hover {
    transform: scale(1.2);
    color: red;
}

/* Responsive */
@media (max-width: 768px) {
    .products-image {
        grid-template-columns: repeat(2, 1fr);
    }

    .buy-btn {
        font-size: 0.65rem;
        padding: 10px 8px;
    }

    .like-btn {
        font-size: 1.2rem;
    }
}



/* Service */
.service{
    margin: 5%;
} 

.blog-section {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    margin: 5%;
}

.blog{
    display: flex;
    flex-direction: row;
    height: auto;
    margin-bottom: 5%;
}

.blog-text{
    width: 43%;
    margin-top: 3%;
    margin-bottom: 15%;
    margin-left: 2%;
    text-align: start;
}
.blog-text h1{
    margin-bottom: 5%;
    font-size: 40px;
}
.blog-text p{
    margin-bottom: 5%;
    font-size: 20px;
    text-align: start;

}


.blog-text button{
    background-color: green;    
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
    font-size: 15px;
    margin-right: 10px;
}

#brief {
    display: none;
}

    /* Overlay background */
    .read {
        display: none; /* Hidden by default */
        position: fixed; /* Sit on top of the page content */
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
        z-index: 1000; /* Ensure it sits above other content */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }

    /* Overlay background */
    .read {
        display: none; /* Hidden by default */
        position: fixed; /* Sit on top of the page content */
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
        z-index: 1000; /* Ensure it sits above other content */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }

    /* Overlay content (card) */
    .read-content {
        position: relative; /* Establishes a positioning context for the close button */
        background-color: #fff;
        padding: 40px;
        border-radius: 10px;
        max-width: 600px;
        width: 90%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .read-content img {
        width: 45%;
        height: 23vh;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Close button */
    .closeBtn {
        position: absolute;
        top: 10px;
        right: 10px;
        border: none;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        background-color: transparent;
        padding: 5px 5px;
        border-radius: 5px;

    }

    .closeBtn:hover {
        color: green; /* Change color on hover */
        border: 2px solid green;
        border-radius: 5px;
        border-color: black;
    }

.blog-image{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-top: 5%;
    justify-content: center;
    object-fit: cover;
    position: relative;
}


.image1, .image2 {
    position: absolute;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.image1 {
    top: 80px;  /* Move slightly up */
    left: -80px; /* Move slightly left */
    z-index: 2;  /* Ensures it appears on top */
}

.image2 {
    top: -20px;   /* Move slightly down */
    left: 150px;  /* Move slightly right */
    z-index: 1;  /* Behind image1 */
}

.blog-image img {
    width: 60%;
    border-radius: 8px;
    object-fit: cover;
}

/* Hover Effect for Fun */
.blog-image:hover .image1 {
    transform: translate(-5px, -5px);
}
.blog-image:hover .image2 {
    transform: translate(5px, 5px);
}


 
 @keyframes moveDiagonally {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
         transform: translate(-10px, -10px); /* Overlap by 10% */
     }
 }
 
 .blog-image img:last-child {
     animation: moveDiagonallyReverse 1.5s ease-out forwards;
 }
 
 @keyframes moveDiagonallyReverse {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
         transform: translate(10px, 10px); /* Overlap by 10% */
     }
 }

.blog-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 25%;
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.blog-card img {
    width: 15%;
    border-radius: 8px;
    object-fit: cover;
}
.blog-card:hover {
    transform: scale(1.1); 
    box-shadow: 0 4px 6px rgba(0, 128, 0, 0.829); 
}

.review {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./asset/image/m44.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 60%;
    max-width: 100%;
    height: 60vh;
    margin: 5% auto;
    padding: 5%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: white; /* Ensuring text is readable */
}


.review h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.review p {
    font-size: 1.2rem;
    max-width: 80%;
}


.blog-card {
    align-items: center;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;

}
/* Contact */
.main-contact {
    align-items: center;
    max-height: 45vh;
    padding: 20px;
    gap: 20px;
    margin-bottom: 10%;
    margin-top: -7%;
}

.main-contact h1{
    margin-bottom: 2%;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-height: 120%;
    width: 80%;
    margin-left: 5%;
    margin-right: 10%;
    gap: 50px;
}

.form {
    width: 50%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 5%;
    margin-top: 0;
}

.form label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.form input, 
.form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form input[type="submit"] {
    background: green;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
    width: 20%;
}

.form input[type="submit"]:hover {
    background: rgba(0, 0, 0, 0.685);
    color: white;
    border: 2px solid green;
}

.map-section {
    align-items: center;
    justify-content: center;
    background-color: #f4f4f418;
    height: 40vh;
    width: 45%;
}

.map-section h2{
    text-align: center;
    margin-bottom: 5%;
}

.map-container iframe {
    width: 100%;
    height: 35vh;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.685);
}



.map-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
}

.footer-content p {
    margin: 10px;
}

 h5 {
    margin-bottom: 2%;
    margin-top: 5px;

}

a {
    color: white;
    text-decoration: none;
}

.footer-contact {
    width: 350px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 2%;
}

.footer-contact i {
    margin-right: 10px;
    /* margin-left: 30px; */
    font: 5px;
} 

.footer-contact a {
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
    font-size: 13px;
    margin-left: 5px;
    
}

.footer-info .socials {
    margin-left: -130px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 30px;
}

.footer-info .socials p {
    margin-left: -30px;
    margin-top: 20px;
    margin-bottom: -10px;
    font-size: 15px;
    animation: scaleUp 1s ease-in-out forwards;
    animation-delay: 0.7s;   
}

.footer-info .socials i {
    margin-right: 10px;
    margin-left: -10px;
    font: 5px;
}

.footer-links{
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-align: start;}

.support {
    /* margin-top: 10px; */
    margin-left: 50px;
    font: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: start;
}

.legal {
    /* margin-top: 10px; */

    margin-left: 50px;
    font: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: start;
}

.footer-contact a:hover {    
    color: green;
}

.delivery {
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.delivery button {  
    background-color: green;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;    
}


.delivery button:hover {
    background: transparent;
    color: white;
    border: 2px solid green;
    border-radius: 5px;
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

.delivery p {
    font-size: 15px;
    margin-left: 5px;
    animation: scaleUp 1s ease-in-out forwards;
    animation-delay: 0.7s;
}

.delivery a {
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
    font-size: 20px;
}

.p-center {
    text-align: center;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.p-center img {         
    width: 28px;
    height: 17px;
}

h5 {
    margin-bottom: 2%;
    margin-top: 5px;
}

/* Responsive Styles */

/* Mobile Navigation */
@media (max-width: 768px) {
    nav{
        padding: 12px;
    }
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px;
        right: 0;
        background-color: #333;
        width: 25%;
        text-align: center;
        z-index: 1;

    }

    .navbar.active {
        display: flex;
    }

    .hamburger {
        display: block;
        padding: 5px;
        margin-right: 10px;
    }

    .content{
        margin-top: 25%;
    }

    .overlay{
        display: none;
    }

    .logo img {
        width: 60px;
        max-height: 40px;
    }

    .hero-image{
        object-fit: cover;
    }

    .hero-content{
        width: 100%;
    }

    .hero-content h1 {
        font-size: 25px;
        width: 100%;
        height: auto;
    }

    .hero-content h2 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-content button {
        font-size: 10px;
        padding: 10px 20px;
    }

    .content {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .text {
        width: 95%;
        text-align: center;
    }

    .statement {
        width: 90%;
        text-align: center;
        display: block;
        padding: 20px;
        
    }
    .statement-item {
        margin-bottom: 10px;
        border: none;
    }

    .statement-item h3 {
        font-size: 20px;
        margin: 0;
    }
    

    .collection {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-left: 40px;
        
    }

    .collection-item img {
        width: 90%;   
        height: 80%;
        object-fit: cover;
    } 

    .products-image {
        flex-direction: column;
        align-items: center;
        margin: 0;
        margin-top: 5%;
    }
    
    .service {
        margin: 5%;
    }

   
        .blog {
            flex-direction: column;
            align-items: center;
            margin: 0;
           
        }

        .blog-text {
            width: 95%;
            margin: 0;
        }
    
        .blog-image {
            width: 50%;
            margin-left: -25%;
            margin-bottom: 300px;
        }

        .blog-image img {
            width: 90%;
            height: 20%;
            object-fit: cover;
            margin: 0;
            left: 10px;
            right: -10px;
        }

        .image1 {
            top: 80px;  /* Move slightly up */
            left: -25px; /* Move slightly left */
            z-index: 2;  /* Ensures it appears on top */
        }
        
        .image2 {
            top: -10px;   /* Move slightly down */
            left: 100px;  /* Move slightly right */
            z-index: 1;  /* Behind image1 */
        }
        
    
        .blog-text h1 {
            font-size: 32px;
        }
    
        .blog-text p {
            font-size: 18px;
        }
    
        .blog-text button {
            font-size: 14px;
            padding: 8px;
        }

        .blog-container {
            flex-direction: row;
            align-items: center;
            margin: 0;
            width: 50%;
            gap: 15px;
            margin-left: 25%;
        }

        .blog-card {
            width: 70%;
            margin: 0;
            
        }
    
        .blog-card img {
            width: 30%;
        }
    
        .blog-card h2 {
            font-size: 15px;
        }
    
        .blog-card p {
            display: none;
        }
    
        .blog-card button {
            font-size: 14px;
            padding: 8px;
        }
    
        .review {
            width: 90%;
            height: 50vh;
    /* ::contentReference[oaicite:0]{index=0} */
        }
    

    .contact-container {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .form {
        width: 100%;
        margin: 0;
    }

    .map-section {
        width: 100%;
        margin: 0;
    }

    footer{
        margin-top: 100%;
        text-align: center;   
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        font-size: 5px;
    }

    .footer-contact{
        text-align: center;
    }

    /* .footer-contact i{
        text-align: center;
    } */

    .footer-info .socials {
        width: 100%;
        margin: 10px;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        margin: 10px;
        margin-left: 50px;
        text-align: center;
        display: flex;
        flex-direction: row;
        display: none;
    }

    
    .delivery {
        width: 100%;
        margin: 10px;
        text-align: center;
       
    }

    .p-center {
        flex-direction: row;
        list-style: center;
        text-align: center;
        margin: 0 10px;
        margin-left: 30px;
    }

    .p-center img {
        width: 20px;
        height: 15px;
    }

    h3{
        font-size: 20px;
        margin: 0;
        width: 100%;
    }

    h5{
        font-size: 10px;
        margin: 0;
        width: 100%;
    }

    .blog-container {
        align-items: center;
        margin: 0;
        width: 100%;
        gap: 10px;
        margin-left: 0;
        margin-bottom: 5px;
        display: none; 
    }

    /* .blog-card {
        width: 100%;
        background: none;
        padding: 20px;
      
    }

    .blog-card img {
        width: 50%;
        object-fit: cover;
        font: 2px;
    }

    .blog-card h3 {
        font-size: 5px;
        margin: 0;
        width: 100%;
    } */

    
    .review p {
        font-size: 5px;
        margin: 0;
        width: 100%;
    }
    
    .review h1 {    
        font-size: 10px;
        margin: 0;
        width: 100%;
    }
}


@media (max-width: 480px) {
    /* Navbar adjustments */
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 5px;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .navbar a {
        display: block;
        padding: 10px;
    }

    /* Logo adjustments */
    .logo img {
        width: 80px;
        max-height: 30px;
    }

    /* Hero section adjustments */
    .hero {
        height: 80vh;
    }

    .hero img {
        object-fit: cover;
    }

    /* About section */
    .about {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    .review {
        width: 90%;
        height: 50vh;
        font: 2px;
    }


    /* Footer */
    footer {
        margin-top: 110%;
        padding: 15px;
        font-size: 14px;
    }

    /* Product Grid Adjustments */
    .products-image {
        grid-template-rows: repeat(2, 1fr);
    }

    /* Button Adjustments */
    .buy-btn {
        font-size: 0.55rem;
        padding: 8px 6px;
    }

    .like-btn {
        font-size: 1rem;
    }
}
