* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Global-Styling ===== */
:root {
    --primary-color: black;
    --accent-color: #BE5504;
    --primary-font: "Bai Jamjuree";
    --Secondary-font: "Urbanist";
}

.container {
    max-width: 90%;
    margin: auto;
}

p {
    margin: 0;
}

/* ===== Header ===== */


ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.headers {
    padding: 15px 0;
    position: relative;
}

.logo img {
    width: 140px;
    height: 100px;
    object-fit: contain;
}

.menus ul {
    display: flex;
    gap: 50px;
}

.menus ul li a {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.menus ul li a:hover {
    color: var(--accent-color);
}

.login {
    gap: 15px;
}

.login p {
    font-size: 25px;
    color: #BE5504;
}

.login i {
    font-size: 26px;
    cursor: pointer;
    color:var(--accent-color);
}

/* ===== Toggle Button ===== */
.toggle-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== Close Button ===== */
.close-btn {
    display: none;
}
.close-btn i {
    color:darkorange;
}


.top-header {
    background: var(--accent-color);
    text-align: center;
    padding: 15px 0;
    font-family: var(--Secondary-font);
    color: white;
    font-size: 18px;
}

/* ====== Banner-img ====== */
.Banner-Section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-content {
    position: relative;
    padding: 125px 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.banner-content h1 {
    font-size: 80px !important;
    font-weight: 700;
    font-family: var(--primary-font);
}

.pre-quality {
    font-size: 40px;
    font-family: var(--Secondary-font);
}

.banner-content p {
    font-size: 27px;
    max-width: 50%;
    margin-top: 20px;
    letter-spacing: 2px;
    font-family: var(--Secondary-font);
}

.banner-content h1 span {
    color: var(--accent-color);
}

.banner-button {
    margin-top: 30px;
    gap: 30px;
    display: flex;
}

.banner-btn {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    font-size: 25px;
    font-weight: 500;
    border: 0;
    font-family: var(--Secondary-font);
}

.banner-btns {
    padding: 12px 30px;
    background-color: white;
    color: var(--accent-color);
    font-size: 25px;
    font-weight: 600;
    border: 0;
    font-family: var(--Secondary-font);
}

/* ===== Product-Section ====== */
.product-heading {
    font-size: 50px;
    font-weight: 600;
    max-width: 60%;
    line-height: 4rem;
    font-family: var(--primary-font);
}

.product-heading span {
    color: var(--accent-color);
    font-weight: 700;
}

.product-section {
    padding: 60px 0;
}

.heading-p p {
    font-size: 20px;
    letter-spacing: 1px;
    max-width: 75%;
    text-align: end;
    color: rgb(98, 98, 99);
    font-family: var(--Secondary-font);
}

.list-products {
    margin-top: 30px;
}

/* Bootstrap spacing fix */
.list-products > div {
    padding: 10px;
}

/* Product Card */
.products {
    text-align: center;
    padding: 20px 10px;
}

/* Image auto resize */
.products img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    animation: rotateBowl 6s linear infinite;
    margin: 0 auto;
    min-height: 130px;
}

/* Title */
.products h3 {
    font-size: 16px;
    margin-top: 10px;
}

/* Link */
.products a {
    font-size: 19px;
    font-weight: 500;
 color: var(--accent-color);;
    text-decoration: none;
    display: inline-block;
}

/* RESPONSIVE TWEAK (small screens pe readable rahe) */

@keyframes rotateBowl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.products h3 {
    margin-top: 20px;
    font-size: 27px;
    max-width: 96%;
    text-align: center;
    font-family: var(--primary-font);
}

/* ====== Arrival-Products ====== */
.arival-products {
    background: rgb(239, 239, 239);
    padding: 80px 0 46px;
}

.arival-image-last img {
    margin-left: 10px;
}

.arival-prodcut-img {
    height: 350px;
    width: auto;
    margin-left: 50px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER */
.arival-raisin-card:hover .arival-card-img,
.arival-card:hover .arival-card-img,
.arival-pista-card:hover .arival-card-img,
.arival-makhana-card:hover .arival-card-img,
.arival-arkrot-card:hover .arival-card-img,
.arival-cashew-card:hover .arival-card-img {
    transform: scale(1.08);
}

/* TEXT */
.arrival-detail {
    padding: 0 25px;
    text-align: center;
    margin-top: 10px;
}

.arrival-detail h3 {
    font-family: var(--Secondary-font);
    font-size: 22px;
    font-weight: 600 !important;
    color: black;
    margin-top: 15px;
}

.arrival-button {
    justify-content: space-between;
    padding: 10px 0;
}

.arrival-button button {
    background: #BE5504;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 19px;
    font-weight: 700;
    color: white;
    font-family: var(--Secondary-font);
}

.arrival-button p {
    font-size: 19px;
    font-family: var(--Secondary-font);
    font-weight: 700;
    color: #BE5504;
}
/* ===== CARD BASE ===== */
.arival-card,
.arival-pista-card,
.arival-makhana-card,
.arival-arkrot-card,
.arival-raisin-card,
.arival-cashew-card {
  width: 100%;
    border-radius: 13px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.arival-card-img {
    height: 320px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
    margin: 0 auto;
}

.arival-products .row {
    align-items: stretch !important;
}
.arrival-detail h3 span{
    display: block;
    margin-top: 11px; /* optional */
}
/* ===== Dryfruit-banner ===== */
.dryfruit-section {
    position: relative;
    height: 630px;
}
.available-img img
{
    width: 700px;
    height: 650px;
}

.dryfruit-banner {
    width: 100%;
    height: 640px;
    position: absolute;
    object-fit: cover;
    z-index: -1;
    object-fit: cover;
}

.dryfruit-detail button {
    padding: 15px 80px;
    background-color: var(--accent-color);
    color: white;
    font-size: 25px;
    font-weight: 500;
    border: 1px solid white !important;
    border: 0;
    margin-top: 20px;
    font-family: var(--Secondary-font);
}

.dryfruit-detail {
    padding: 135px 0 0 0;
}

.dryfruit-detail h2 {
    color: white;
    font-weight: 800;
    font-family: var(--primary-font);
    font-size: 78px;
    max-width: 38%;
    line-height: 120%;
}

.dryfruit-detail h2 span {
    color: var(--accent-color);
}

.dryfruit-detail p {
    font-family: var(--Secondary-font);
    color: azure;
    font-size: 22px;
    font-family: 400;
    margin: 20px 0;
    max-width: 40%;
}

/* ===== packages-Product ====== */
.package-product {
    padding: 90px 0;
    background: rgb(239, 239, 239);
}

.tabs {
    margin-top: 40px;
}

.tabs input {
    display: none;
}

/* tab buttons */
.tab-labels {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.tab-labels label {
    cursor: pointer;
    padding: 10px 20px;
    font-family: var(--primary-font);
    font-size: 22px;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

/* active tab */
#tab1:checked~.tab-labels label[for="tab1"],
#tab2:checked~.tab-labels label[for="tab2"],
#tab4:checked~.tab-labels label[for="tab4"],
#tab5:checked~.tab-labels label[for="tab5"],
#tab6:checked~.tab-labels label[for="tab6"],
#tab3:checked~.tab-labels label[for="tab3"] {
    border-bottom: 2px solid #BE5504;
    color: #BE5504;
    font-family: var(--primary-font);
    font-size: 24px;
}

.content {
    display: none;
}

#tab1:checked~.tab-content .content1,
#tab2:checked~.tab-content .content2,
#tab4:checked~.tab-content .content4,
#tab5:checked~.tab-content .content5,
#tab6:checked~.tab-content .content6,
#tab3:checked~.tab-content .content3 {
    display: block;
}

/* --- Package-card---- */
.package-product-card {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.package-cards {
    padding: 25px;
    /* border: 1px solid gray; */
    background-color: white;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}

.package-cards img {
    height: 400px;
    width: 100%;
    /* object-fit: cover; */
}

.package-cards p {
    font-family: var(--Secondary-font);
    font-size: 23px;
    font-weight: 600 !important;
    padding-bottom: 10px;
    margin-top: 20px;
}

.package-detail p {
    font-size: 18px;
}

.package-btn {
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 20px;
    border: none;
    margin-top: 10px;
    border-radius: 100px;
    font-family: var(--Secondary-font);
}

/* ==== Footer ==== */
footer {
    background: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    object-fit: cover;
    padding: 60px 0;
}

/* .logo-section
{
    padding-bottom: 10px;
    border-bottom: 1px solid white;
} */

.logo-section img {
    width: 240px;
    height: 180px;
    object-fit: contain;
}

.footer-icons {
    /* margin-top: 40px; */
    gap: 13px;
}

.fa-brands {
    font-size: 38px;
    object-fit: cover;
    padding: 5px 5px;
    background-color: white;
    border-radius: 100px;
}

.footer-menus {
    color: white;
    margin-top: 30px;
}

.footer-explore h2 {
    color: var(--accent-color);
    font-family: var(--primary-font);
    font-size: 33px;
    font-weight: 500;
    padding-bottom: 10px;
}

.footer-explore ul li {
    padding-bottom: 6px;
    font-family: var(--Secondary-font);
    font-weight: 500;
    font-size: 20px;
    margin-left: 7px;
}

.footer-explore ul li:hover {
    cursor: pointer;
    font-size: 22px;
    color: var(--accent-color);
}

/* ======== Blog-Html ============== */
/* ======== Blog-Html ============== */
.Blog-section {
    padding: 60px 0;
    background-color: rgb(239, 239, 239);
}

/* ❌ grid remove */
.blog-card-section {
    padding-top: 70px;
}

/* CARD */
.blog-cards {
    padding: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    height: 100%;
}

/* IMAGE */
.blog-cards img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* TEXT */
.blog-cards h3 {
    font-family: var(--Secondary-font);
    font-size: 22px;
    font-weight: 600;
    padding: 15px 3px;
}

/* DATE */
.blog-date {
    padding: 0 4px;
}
.blog-date time
{
    font-weight:500;
    font-size:19px;
}

.blog-date button {
    padding: 8px 25px;
    border: none;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: white;
    font-family: var(--Secondary-font);
    font-size: 18px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .blog-cards img {
        height: 200px;
    }

    .blog-cards p {
        font-size: 18px;
    }

    .blog-date button {
        font-size: 14px;
        padding: 6px 18px;
    }
}

@media (max-width: 576px) {

    .blog-cards img {
        height: 180px;
    }

    .blog-cards p {
        font-size: 16px;
    }
}
.blog-inner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-details {
    padding: 60px 0;
}

.blog-details h2 {
    font-family: var(--primary-font);
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
}

.blog-details p {
    font-size: 23px;
    font-family: var(--Secondary-font);
}

.blog-details p span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 24px;
    font-family: var(--primary-font);
}

.festival-table {
    margin-top: 40px;
    overflow-x: auto;
}

.festival-table table {
    width: 100%;
    border-collapse: collapse;
    border: 0.9px solid gray;
    font-family: var(--Secondary-font);
}

.festival-table th,
.festival-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 0.9px solid gray;
}

.festival-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 20px;
}

.festival-table tr:last-child td {
    border-bottom: none;
}

.festival-table tbody tr:hover {
    background-color: #f9f9f9;
    transition: 0.3s;
}

.festival-table td:first-child {
    font-weight: 600;
}

.blog-h2 {
    margin-top: 50px;
}

.blog-li {
    border-bottom: 1px solid rgb(197, 197, 197);
    padding-bottom: 25px;
    padding-top: 10px;
}

.blog-li p {
    padding-bottom: 13px;
}

.blog-li h5 span {
    font-weight: 700;
}

.blog-li h5 {
    font-family: var(--Secondary-font);
    font-size: 20px;
    margin-top: 2px;
}

.blog-li h4 {
    margin-top: 20px;
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 6px;
}
.arrival-product-blog
{
    margin-bottom:20px !important;
}
/* ====== About-us ========= */
/* ====== About-us ========= */
.about-icon {
    padding: 0 50px;
}

.about-icons {
    padding: 60px 0;
}

.about-icon img {
    height: 100px;
    width: 110px;
}

.icon-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-txt p {
    padding-top: 25px;
    font-family: var(--Secondary-font);
    font-size: 25px;
    font-weight: 600;
}

/* ----- About-Food-Section ------- */
/* ----- About-Food-Section ------- */

.about-food-section {
    background-color: rgb(239, 239, 239);
    padding: 90px 0;
}

.about-food-txt h4 {
    font-family: var(--Secondary-font);
    font-weight: 700;
    color: var(--accent-color);
    padding: 8px 0;
}

.about-food-txt h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 56px;
    padding-bottom: 9px;
}

.about-food-txt p {
    font-size: 21px;
    font-family: var(--Secondary-font);
}

.about-food-txt h5 {
    font-size: 24px;
    font-family: var(--Secondary-font);
    padding-top: 26px;
    font-weight: 600;
}

.quality-box {
    padding: 8px;

}

.quality-box-one,
.quality-box-two {
    border: 0.7px solid rgb(82, 81, 81);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px;
    align-items:center;
}

.quality-box i {
    font-size: 30px;
}

.quality-box-txt h4 {
    font-family: var(--Secondary-font);
    font-size: 19px;
}

.quality-box-txt p {
    font-size: 15px;
    padding: 0px;
}

.img-food {
    /*background: url(../images/faq-second-banner.jpeg);*/
    border-radius: 25px;
}
.img-food img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}
.about-food-txt {
    padding-left: 47px;
}


/* ------- Available-products -------- */
.available-products {
    padding: 60px 0;
}
.available-txt
{
}
.available-txt h3 {
    font-family: var(--primary-font);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 43px;
}

.available-txt p {
    font-family: var(--Secondary-font);
    font-size: 18px;
    padding: 10px 0;
}

.available-btn {
    border: none;
    font-family: var(--Secondary-font);
    color: white;
    background-color: var(--accent-color);
    padding: 10px 40px;
    margin-top: 10px;
    font-size: 20px;
}

/* =============== Product-Details ============= */
/* =============== Product-Details ============= */
.product-detail {
    padding: 60px 0;
}

/* GALLERY */
.product-gallery img {
    width: 100%;
    padding: 6px;
    border: 1px solid #BE5504;
    cursor: pointer;
}

/* MAIN IMAGE */
.product-imgs {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-imgs img {
    width: 100%;
    height: 530px;
    object-fit: contain;
    display: block;
    padding: 10px;
    border: 1px solid #BE5504;
}

/* TEXT */
.product-description {
    padding-left: 20px;
}

.product-description h3 {
    font-family: var(--primary-font);
    color: var(--accent-color);
    font-size: 36px;
    padding-bottom: 10px;
    font-weight: 600;
}

/* REVIEW */
.product-review {
    padding-bottom: 15px;
}

.product-review p {
    font-family: var(--Secondary-font);
    font-weight: 600;
    font-size: 18px;
}

.star p {
    margin-left: 8px;
}

/* LIST */
.product-specification ul li {
    list-style-type: disc;
    margin-left: 20px;
    font-family: var(--Secondary-font);
    font-size: 18px;
    padding-bottom: 8px;
}

/* BUTTONS */
.product-button {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.product-link a
{
    text-decoration: none;
    font-size: 19px;
    font-family: var(--Secondary-font);
    color: #BE5504;
    font-weight: 600;
}
.product-link
{
    margin-top: 20px;
}

.cart {
    padding: 10px 18px;
    border: none;
    background-color: var(--accent-color);
    color: white;
    font-family: var(--Secondary-font);
    font-size: 16px;
    font-weight: 600;
}
.cart:hover
{
     background-color: gainsboro;
    color: black;
}
.Buy-now {
    padding: 10px 20px;
    border: none;
    background-color: gainsboro;
    color: black;
    border: 1px solid rgb(197, 197, 197);
    font-family: var(--Secondary-font);
    font-size: 16px;
    font-weight: 600;
}
.Buy-now:hover
{
     background-color: var(--accent-color);
    color: white;
}

/* ------ Product-table ------- */
.Product-table {
    padding: 60px 0;
}

.product-data h2 {
    padding-bottom: 08px;
    font-size: 32px;
    font-family: var(--Secondary-font)
}

.nutrition-table {
    width: 100%;
    padding: 20px 50px;
    color: black;
    border: 1px solid rgb(135, 135, 136);
    font-family: var(--Secondary-font);
}

.nutrition-table .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nutrition-table .row:nth-child(odd) {
    background-color: rgba(128, 128, 128, 0.2);
    /* light gray */
}

.nutrition-table .row:last-child {
    border-bottom: none;
}

.nutrition-table span:last-child {
    text-align: right;
}

.product-img img {
    width: 90%;
    height: 860px;
}

.product-banners {
    padding: 10px 0px 80px 0px;
}

/* ------ Similar-Product-------- */
.similar-product {
    padding: 60px 0;
}

.similar h2 {
    font-size: 40px;
    font-family: var(--Secondary-font);
    text-align: center;
}

/* --------- Contact-Section --------- */
.contact-body {
    background-color: rgb(239, 239, 239);
}

.contact-section {
    padding: 0px 0px;
}

.contact-box {
    padding: 100px 120px;
}

.contact-box-one {
    background: url("../images/Contact-us.jpeg");
    object-fit: cover;
    background-position: bottom;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 20px 0px 0px 20px;
}

.contact-icons {
    background-color: transparent;
    font-size: 30px;
}

.contact-detail h2 {
    font-size: 40px;
    font-family: var(--primary-font);
    font-weight: 700;
    color: white;
}

.contact-detail p {
    color: white;
    font-family: var(--Secondary-font);
    font-size: 18px;
}

.call {
    padding: 10px;
}

.call p {
    font-family: var(--Secondary-font);
    font-size: 20px;
    font-weight: 600;
    color: rgb(242, 242, 242);
}

/* ---------- Box-second -------- */
.contact-box-two {
    border: 3px solid #BE5504;
    border-radius: 0px 20px 20px 0px;
}

.form-container {
    padding: 30px;
}

.input-group {
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    padding: 8px 0;
    outline: none;
    background: transparent;
}

.subject {
    margin-bottom: 25px;
}

.subject label {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    font-size: 14px;
    color: #777;
}

.message-box label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.message-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    height: 60px;
    resize: none;
    outline: none;
    background: transparent;
}

.btn-box {
    text-align: right;
    margin-top: 30px;
}

button {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

button:hover {
    background: #000;
}

.banner-button a {
    text-decoration: none;
}

.arrival-button button:hover {
    background-color: #BE5504;
    color: white;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/*=============== NEW CSS =============*/


.dryfruit-detail {
    padding: 135px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrival-detail h3 span {
    color: var(--accent-color);
}
.footer-explore a {
    color: #fff;
    text-decoration: none;
}

/* ====== FAQ-Page ========= */
/* ====== FAQ-Page ========= */

.accordion
{
    padding: 0px 180px;
    margin-top: 50px;
}
.faq-accordians {
    padding: 70px 0;
    background: rgb(233, 233, 233);
}

.accordion-item {
    margin-bottom: 20px;
    border-bottom: 0.2px solid #BE5504;
    overflow: hidden;
    box-shadow: 0 06px 20px rgba(76, 75, 75, 0.18);
    background: #fff;
}

.accordion-item:not(:first-of-type) {
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background-color: whitesmoke;
    color: #000;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 22px;
    transition: 0.3s;
    border: none;
    padding-top: 28px  ;
    padding-bottom: 28px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: none;
}

.accordion-body {
    background-color: #fff;
    color: #0e0e0e;
    font-size: 19px;
    font-weight: 500;
    font-family: var(--Secondary-font);
    border: none;
    padding: 0 25px 20px;
}

.accordion-button:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}
.banner-btn 
{
    text-decoration: none !important;
}
/* ====== Faq-txt-banner ====== */
.faq-txt-banner {
    position: relative;
    background: url('../images/faq-second-banner.jpeg');
    padding: 100px 0;
}

.faq-txt-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.faq-txt-banner .container {
    position: relative;
    z-index: 2;
}

.faq-img-box {
    display: none;
}

.faq-txt {
    color: #fff;
    text-align: center;
    max-width: 770px;
    margin: auto;
}

.faq-txt h3 {
    font-size: 60px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 78px;
    margin-bottom: 15px;
}
.faq-txt span{
    color: #BE5504;
}
.faq-txt p {
    font-size: 20px;
    font-family: var(--Secondary-font);
    margin-bottom: 25px;
    margin-top:30px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #BE5504;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.banner-btn:hover {
    background: #a34703;
}
.contact-icon i
{
    color:white;
}

/* =========== Site-map ========== */
.site-map {
    padding: 60px 0;
}

.sitemap-ul ul {
    margin: 0;
    padding: 0;
}

.sitemap-ul ul li {
    list-style: none;
}

.sitemap-ul ul li a {
    text-decoration: none;
}

/* Main Menu */
.Main-ul > li {
    margin-bottom: 33px;
}

.Main-ul > li:last-child {
    margin-bottom: 0;
}

.Main-ul > li > a {
    font-size: 25px;
    color: black;
    font-weight: 600;
    font-family: var(--Secondary-font);
}

/* Products Sub Menu */
.Products-ul {
    margin-top: 15px;
    padding-left: 25px;
}

.Products-ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    margin-top: 14px;
    margin-left: 20px;
}

.Products-ul li:last-child {
    margin-bottom: 0;
}

.Products-ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: 600;
}

.Products-ul li a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    font-family: var(--Secondary-font);
}
/*========== Slider-Section ===============*/

/* ========== Slider-Review =========== */
.review-slider {

    padding: 130px 0;
    position: relative;

}

.slider-card {

    padding: 25px;
    background: #f5f5f5;
    margin: 10px;
    height: 100%;
    transition: .3s;

}

.slider-card:hover {

    transform: translateY(-5px);

}

.owner-name img {

    height: 70px;
    width: 70px;
    border-radius: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 2px;

}

.owner-position {

    margin-left: 5px;

}
.owner-position p
{
    margin:0 !important;
    padding:0 !important;
}
.reviewer-name span
{
    padding:0;
    margin:0;
}

.owner-position h5 {

    margin: 0;
    font-size: 21px;
    font-weight: 600;
    font-family: var(--primary-font);

}

.owner-position h6 {

    margin-top: 4px;
    font-family: var(--Secondary-font);

}

.slider-card p {

    padding-top: 30px;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: var(--Secondary-font);

}

.review-rating i {

    color: #fff200e0;

}

/* slick spacing */

.slick-slide {

    padding: 0 8px;

}

.slick-list {

    margin: 0 -8px;

}

/* Arrow */

.slick-prev,
.slick-next {

    width: 52px;
    height: 52px;
    border-radius: 50%;
    z-index: 99;
}

.slick-prev {

    left: -50px;

}

.slick-next {

    right: -50px;

}


.slick-prev:before,
.slick-next:before {
    color: var(--accent-color);
    font-size: 38px;
}
/* Slick Slide Equal Height */
.slider-cards-section .slick-track{
    display: flex !important;
    align-items: stretch;
}

.slider-cards-section .slick-slide{
    height: inherit !important;
    display: flex !important;
}

.slider-cards-section .slick-slide > div{
    width: 100%;
    display: flex;
}

.slider-card{
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media(max-width:991px) {

    .slick-prev {

        left: -15px;

    }

    .slick-next {

        right: -15px;

    }

}

@media(max-width:767px) {

    .slick-prev,
    .slick-next {

        display: none !important;

    }

}
.drufruits-p p
{
    max-width:63% !important;
}


.copy-right
{
    color:white;
    font-family:  var(--primary-font);
    font-size:16px;
}
a.dryfruit-a {
    text-decoration: none;
    color: white;
    border: none;
    padding: 12px 30px;
    background: var(--accent-color);
    font-size: 23px;
    margin-top: 10px;
    font-family: var(--primary-font);
}