* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    background-color: #fff;
    color: #222;
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #fff;
    /* border-bottom: 1px solid #ddd; */
}

.logo img {
    width: 194px;
    height: 80px;
    object-fit: contain;
}

.brand {
    text-align: center;
}

.brand-image {
    width: 250px;
    /* adjust size as needed */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 5px;
    /* centers image and adds spacing below */
}

.brand p {
    font-size: 1rem;
    color: #333;
}

.product-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Navbar */
.navbar {
    background-color: #1d7021;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 20px;
    text-decoration: none;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s, border-bottom 0.3s;

}

.navbar ul li a:hover {
    color: #ec6402;
}

/* Banner Video */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 10px;
}

.banner video {
    width: 100%;
    height: 70%;

}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.058); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.banner .overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.banner .overlay p {
    font-size: 1.2rem;
}
/* ===== Announcement Section ===== */
.announcement-section {
    padding: 20px 0;
    background: #fff;
    text-align: center;
}

/* Marquee styling */
.flash {
    background: linear-gradient(90deg, red);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    margin: 10px 0;
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

/* Center image */
.coming-soon-img img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    /* margin: 15px 0; */
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.coming-soon-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Coffee Section */
.coffee-section {
    background: #fafafa;
    padding: 40px 20px;
}

.coffee-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.coffee-image img {
    width: 400px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.coffee-content {
    flex: 1;
    min-width: 300px;
}

.coffee-content h2 {
    color: #1d7021;
    font-size: 2rem;
    margin-bottom: 20px;
}

.coffee-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Parallax Sections */
.parallax {
    position: relative;
    width: 100%;
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.parallax-one {
    background-image: url('im1.jpg');
    /* first background */
}

.parallax-two {
    background-image: url('Coffee\ leaf\ iced\ tea_20251021_185016_0000.png');
    height: 100vh;
    /* second background */
}

/* About Section */
.about-section {
    position: relative;
    background: #fafafa;
    color: #222;
    text-align: center;
    padding: 100px 20px;
}

.about-content {
    max-width: 1000px;
    margin: auto;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1d7021;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

/* Mission and Vision */
.mission-vision {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.mission,
.vision {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(26, 166, 52, 0.1);
    padding: 25px;
}

/* hover effect with zooming in effcet along with box shadow in linear gradient color  */
.mission:hover,
.vision:hover {
    box-shadow: 0 8px 30px rgba(10, 220, 49, 0.818), 0 0 20px rgb(241, 106, 2);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.mission h3,
.vision h3 {
    color: #1d7021;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission p,
.vision p {
    color: #555;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 30px 10px;
    background: #f7f7f7;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-details {
    flex: 1 1 400px;
}

.contact-details h2 {
    color: #1d7021;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-details ul {
    list-style: none;
}

.contact-details ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

/* Certifactions */
.certifications-section {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.cert-title {
    font-size: 2.4rem;
    color: #1d7021;
    margin-bottom: 40px;
}

.cert-slider {
    width: 100%;
    overflow: hidden;
}

.cert-track {
    display: flex;
    align-items: center;
    gap: 40px;

    /* KEY: Ensures seamless looping */
    width: max-content;

    /* KEY: TRUE infinite scroll */
    animation: scrollLoop 18s linear infinite;
    will-change: transform;
}

.cert-img {
    height: 150px;
    transition: 0.4s ease;
}

/* Hover zoom */
.cert-img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 10px rgba(29, 112, 33, 0.6));
}


/* Contact Image */
.contact-image {
    flex: 1 1 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 25px 10px;
    text-align: center;
    font-weight: 700;
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d7021;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 50px;
}

/* Masonry Grid Layout */
.gallery-container {
    column-count: 4;
    column-gap: 20px;
    transition: all 0.3s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
}

/* Image styles */
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* Hover overlay */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.346);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item .overlay span {
    font-size: 2rem;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    background: linear-gradient(90deg, #1d7021, #eb6802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
}

/* Hover effects */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7) blur(1px);
}

.gallery-item:hover .overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.gallery-item:hover .overlay span {
    opacity: 1;
    transform: translateY(0);
}


/* product style */

.ayurveda-intro {
    max-width: 100%;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.ayurveda-intro:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ayurveda-intro p {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.8;
    color: #2f4f2f;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.ayurveda-intro p::first-line {
    color: #5c8a4d;
    font-weight: 600;
}

.ayurveda-intro::before {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
    color: #4c7a34;
}

.product-section {
    padding: 50px 20px;
    background: #fafafa;
}

.container {
    position: relative;
    width: 1160px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transform-style: preserve-3d;
    perspective: 500px;
    margin: auto;
}

.container .box {
    position: relative;
    width: 275px;
    height: 275px;
    background: #000;
    transition: 0.5s;
    transform-style: preserve-3d;
    overflow: hidden;
    margin-right: 15px;
    margin-top: 45px;
}

.container:hover .box {
    transform: rotateY(25deg);
}

.container .box:hover~.box {
    transform: rotateY(-25deg);
}

.container .box:hover {
    transform: rotateY(0deg) scale(1.25);
    z-index: 1;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.container .box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .box .imgBx:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1d7021, #fff);
    z-index: 1;
    opacity: 0;
    transition: 0.5s;
    mix-blend-mode: multiply;
}

.container .box:hover .imgBx:before {
    opacity: 1;
}

.container .box .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    padding: 20px;
    align-items: flex-end;
    box-sizing: border-box;
}

.container .box .content h2 {
    color: #fff;
    transition: 0.5s;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 20px;
    transform: translateY(200px);
    transition-delay: 0.3s;
}

.container .box:hover .content h2 {
    transform: translateY(0px);
}

.container .box .content p {
    color: #fff;
    transition: 0.5s;
    font-size: 14px;
    transform: translateY(200px);
    transition-delay: 0.4s;
}

.container .box:hover .content p {
    transform: translateY(0px);
}

.footer {
    color: black;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ebf3f5, #1d7021);
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* Footer container layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-about,
.footer-quick-links,
.footer-products {
    flex: 1;
    min-width: 250px;
}

/* Quick links styling */
.footer-quick-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-quick-links ul li {
    margin: 5px 0;
}

.footer-quick-links ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-quick-links ul li a:hover {
    color: #ec6402;
    /* optional highlight color */
}

/* Products grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
}

.product-grid img {
    width: 120%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-grid img:hover {
    transform: scale(1.05);
}

/* Footer bottom */
.footer-bottom {
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        text-align: center;
    }

    .logo img,
    .product-icon img {
        width: 50px;
        height: 50px;
    }

    .navbar ul li {
        margin: 10px;
    }

    .banner .overlay h2 {
        font-size: 1.8rem;
    }

    .banner .overlay p {
        font-size: 1rem;
    }

    .coffee-container {
        flex-direction: column;
        text-align: center;
    }

    .coffee-image img {
        width: 100%;
        max-width: 500px;
    }

    .coffee-content h2 {
        font-size: 1.6rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .parallax {
        background-attachment: scroll;
        /* fix for mobile devices */
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-image {
        width: 100%;
    }

    .container {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin: auto;
        perspective: 300px;
        /* optional for smaller devices */
    }

    .container .box {
        width: 180px;
        height: 180px;
        margin: 10px;
        /* uniform spacing to avoid horizontal scroll */
    }

    .container .box:hover {
        transform: rotateY(0deg) scale(1.1);
        /* smaller scale on mobile */
    }

    .container .box .content h2 {
        font-size: 16px;
    }

    .container .box .content p {
        font-size: 12px;
    }

    .ayurveda-intro {
        padding: 25px 20px;
        margin: 40px 20px;
        border-radius: 15px;
    }

    .ayurveda-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ayurveda-intro::before {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    .flash {
        font-size: 1rem;
        padding: 8px 0;
    }
    .coming-soon-img img {
        width: 220px;
    }
}

/* Responsive Masonry Grid */
@media (max-width: 1024px) {
    .gallery-container {
        column-count: 4;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        column-count: 2;
    }

    .gallery-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        column-count: 1;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .gallery-item .overlay span {
        font-size: 1.1rem;
    }
}

/* Media quiers for certifactions */
@keyframes scrollLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Stop scroll on hover */
.cert-track:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-img {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .cert-img {
        height: 90px;
    }
}