* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 200vh;
}
/* user loging */
.icon{
    color:#fff;
    font-size:18px;
    text-decoration:none;
    cursor:pointer;
}

.dropdown-menu{
    background:#1f1e1e;
    border:none;
    border-radius:8px;
}

.dropdown-item{
    color:#fff;
}

.dropdown-item:hover{
    background:#f5c16c;
    color:#000;
}

/* HEADER */
.logo img{
    max-height: 85px;     
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 576px){
    .header{
        height: 70px;
    }

    .logo img{
        max-height: 60px;
    }
}
.header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;          
    z-index: 1000;
    background: transparent;
}


.header.scrolled {
    background: #1f1e1e;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.header-inner{
    max-width: 1200px;
    margin: auto;
    height: 100%;           
    padding: 0 20px;          
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HEADER ICONS */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons .icon {
    color: #fff;
    font-size: 18px;
    position: relative;
    text-decoration: none;
}

.header-icons .icon:hover {
    color: #f5c16c;
}

/* CART COUNT */
.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #f5c16c;
    color: #000;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* MOBILE MENU BUTTON */
.menu-btn {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .nav {
        position: absolute;
        top: 65px;
        right: 20px;
        background: #000;
        width: 220px;
        flex-direction: column;
        padding: 15px;
        display: none;
        border-radius: 8px;
    }

    .nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.logo small {
    font-size: 12px;
    letter-spacing: 2px;
}

/* NAV */
.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #f5c16c;
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('https://images.unsplash.com/photo-1500595046743-cd271d694d30') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .nav {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #000;
        flex-direction: column;
        width: 200px;
        padding: 15px;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}

/* product */
.product-img {
    max-height: 400px;
}

.farm-title {
    color: #d4a257;
    letter-spacing: 2px;
}

.price {
    color: #d4a257;
    font-weight: 600;
}

.buy-btn {
    background: #1f2428;
    color: #fff;
    border-radius: 30px;
}

.buy-btn:hover {
    background: #000;
}

.inquire-btn {
    background: #d4a257;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
}

.inquire-btn:hover {
    background: #b88945;
}

/* video banner */
.video-banner {
    height: 100vh;
}

.object-fit-cover {
    object-fit: cover;
}

/* Mobile height fix */
@media(max-width:768px) {
    .video-banner {
        height: 90vh;
    }
}

/* owl crausel products */
.other-products {
    background: #75757500;
}

.product-item {
    overflow: hidden;
    /* overlap rokta hai */
    border-radius: 16px;
}

.product-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.4s ease-in-out;
}

.product-card:hover {
    transform: scale(1.0);
    /* 1.9 bahut zyada hota hai */
}
.products-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.oval-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5e8d1; 
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden; /* 🌟 ensures image does not spill outside */
    width: 400px;  /* example width, adjust as needed */
    height: 400px; /* example height, adjust as needed */
    padding: 10px; /* optional: thodi spacing inside */
    box-sizing: border-box;
}

.oval-bg img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* 🌟 ensures full image visible */
}

.add-btn {
    background: #1f2428;
    color: #fff;
    border-radius: 25px;
    padding: 6px 30px;
    margin-top: 10px;
}

.add-btn:hover {
    background: #000;
    color: #f5c16c;
}

.owl-nav button {
    position: absolute;
    top: 45%;
    font-size: 28px !important;
    color: #c99a4a !important;
}

@media (max-width: 576px) {
    .products-carousel .owl-nav {
        display: none !important;
    }
}


.owl-prev {
    left: -40px;
}

.owl-next {
    right: -40px;
}

@media(max-width:768px) {
    .oval-bg {
        width: 220px;
        height: 320px;
    }
}

/* faq */
.faq-section {
    background: #faf4ea;
}

.faq-item {
    background: #fff;
    border-radius: 25px;
    padding: 5px;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 20px 25px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.faq-question .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    background: #d4a257;
}

/* hr */
.hr-bold {
    border: none;
    height: 8px;
    width: 80%;
    margin: auto;
    background: #270000;
    border-radius: 50px;
}

/* client */
.products-carousel .product-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.products-carousel .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    max-height: 200px;
    object-fit: cover;
}

.icon-btn:hover {
    background: #ff6f61;
    color: #fff;
}

/* Nav button style */


.owl-nav button:hover {
    background: #e55b50 !important;
}

.owl-nav button:focus {
    outline: none;
}


/* footer */
.footer-section {
    background-color: rgb(7, 7, 7);


}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #d4a257;
}

.social-icons i {
    font-size: 18px;
}

@media (max-width: 767px) {

    .text-start,
    .text-center {
        text-align: center !important;
        margin-top: 15px;
    }
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-fab {
    flex: 0 0 auto;
    width: 45px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 576px) {
    .footer-fab {
        width: 35px;
        font-size: 14px;
    }
}

.footer-fab:hover {
    transform: rotate(360deg);
    background-color: #fefefe;
    color: #010101 !important;
    border-color: rgb(90, 10, 10);
}

/* our story */
/* About file */
.about-us {
    margin-top: 0;
}

.about-us {
    padding: 50px 0;
    /* small screen default */
}

@media (min-width: 768px) {
    .about-us {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .about-us {
        padding: 150px 0;
    }
}

/* cart box */
.cart-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #cfb178;
    box-shadow: -4px 0 15px rgba(0,0,0,0.3);
    padding: 20px;
    transition: right 0.4s ease;
    z-index: 999999;
}

.cart-box.active {
    right: 0;
}

/* Our Farm */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* center vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0a0a0a;
    transform: translateX(-50%);
}

/* timeline item */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

/* content box */
.timeline-item .content {
    width: 45%;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* image box */
.timeline-item .image {
    width: 65%;
    text-align: center;
}

.timeline-item img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
}

/* left right alignment */
.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

/* circle on line */
.timeline-item::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fb0101;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .timeline-item .content,
    .timeline-item .image {
        width: 100%;
    }

    .timeline-item .image {
        margin-top: 20px;
    }
}

/* Product details */
        .why-choose-us .overlay {
            position: absolute;
            inset: 0;
            background: rgb(21 20 20 / 82%);
            /* transparent black */
        }

        .circle-wrapper {
            position: relative;
            width: 480px;
            height: 480px;
        }

        .circle-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: rotate360 12s linear infinite;
        }

        .logo-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 15px;
            border-radius: 50%;
        }

        .logo-center img {
            width: 100%;
        }

        @keyframes rotate360 {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Mobile fix */
        @media (max-width: 576px) {
            .circle-wrapper {
                width: 220px;
                height: 220px;
            }
        }
        /* icons position fixed */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    flex-direction: row;
}

.icon-btn:hover {
    transform: scale(1.1);
}

