*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    
}
ul{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}

:root {
    --bg: #1a1a2e;
    --fg: #f0e6d3;
    --gold: #d4a843;
    --gold-light: #e0bc5e;
    --surface: #1e1e34;
    --surface-light: #26263f;
    --border: #333355;
    --muted: #8a8a9a;
    --font: 'Josefin Sans', sans-serif;
}
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
    background: #1a1a22;
    color: #f0ede5;
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden
}
html{
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

/* Header */
/* header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #1a1a22d9;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid #3a3a45 
} */


.header-main {
    width: 100%;
    display: flex;
    padding: 12px 0;
    position: relative;
    z-index: 999999;
    background: #1a1a22d9;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid #3a3a45;
}
.header-top-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding: 0 20px; */
}
.logo {
   width: 220px !important;
    position: relative;
    background-color: #fff;
    padding: 10px 3px;
    border-radius: 18px;
}
.logo img {
    width: 100%;
}
nav {
    display: flex;
    position: relative;
    z-index: 9999;
    position: relative;
    width: 59%;
}
nav>ul{
    display: flex;
}
nav>ul>li {
    padding: 0 10px;
    list-style: none;
    display: flex;
    align-items: center;
}
nav>ul>li:first-child{
    padding-left: 0;
}
nav>ul>li:last-child{
    padding-right: 0;
}
nav > ul > li > a{
    display: block;
     padding: 35px 0;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c4a975;
    opacity: 0.7;
    transition: all 0.3s ease;
}
nav>ul>li:hover a{
    color: #c4a975;
} 
 nav>ul>li>a>i{
    transition: 0.3s ease;
     color: #c4a975;
     font-size: 17px;
}
nav>ul>li:hover>a>i{
    transform: rotate(180deg);
    color: #f0ede5;
} 
.drop-down-menu{
    position: relative;
}
.drop-down-nav{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: #1a1a22;
    top: 80px;
    left: 0;
    width: 320px;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.drop-down-menu:hover .drop-down-nav {
    opacity: 1;
    overflow: visible;
    visibility: visible;
    top: 79px;
    transition: 0.5s;
}
.drop-down-nav>li {
    border-bottom: 1px solid #cfcfcf4d;
    list-style: none;
}
.drop-down-nav>li:last-child{
    border-bottom: none;
}
.drop-down-nav>li>a {
    color: #ffffff !important;
    position: relative;
    padding: 10px 16px;
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 17px;
}
.drop-down-nav>li:hover {
    background-color: #f59814;
    transition: 0.3s;
}
.drop-down-menu:hover > a{
    color: #f0ede5 !important;
    opacity: 1;
}
.drop-down-nav>li:hover>a{
    color: #fff !important;
} 
nav > ul > li > a:hover{
    color: #f0ede5 !important;
    opacity: 1;
}

/* Active menu */
nav > ul > li.active > a{
    color: #f0ede5;
    opacity: 1;
}

/* sticky Header */

.sticky header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 0 40px #000;
    animation: sticky-header 1s;
    width: 100%;
}
@keyframes sticky-header{

    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }

}


.btn-gold {
    background: var(--gold);
    color: var(--bg);
    height: 42px;
    line-height: 46px;
    padding: 0 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background .3s;
    display: inline-block;
}

.btn-gold-1:hover {
    background: #d4a843
}

.btn-gold-1 {
     background: var(--gold);
    color: var(--bg);
    display: inline-block;
    overflow: hidden;
     border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background .3s;
    height: 53px;
    line-height: 56px;
    padding: 0 25px;
    box-shadow: none;
    transition: all .3s ease 0s;
    text-align: center;
    z-index: 1;
    position: relative;
}

.btn-gold-1:hover {
    background: #d4a843
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
      display: inline-block;
    overflow: hidden;
     border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background .3s;
    height: 53px;
    line-height: 52px;
    padding: 0 25px;
    box-shadow: none;
    transition: all .3s ease 0s;
    text-align: center;
    z-index: 1;
    position: relative;
}

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1)
}

.hamburger-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    display: none
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    width: 30px
}

.bar {
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #ffffff;
    transition: 0.3s
}

.bar:nth-child(2) {
    width: 15px
}

.header-contact .bar:nth-child(2) {
    transform: translateX(-40px);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background-color: #ffffff
}

.header-contact .bar:nth-child(1) {
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #ffffff
}

.header-contact .bar:nth-child(3) {
    transform: rotate(225deg);
    top: -6px;
    background-color: #ffffff;
    position: relative
}


/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
     width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, rgba(26, 26, 34, .85) 50%, rgba(26, 26, 34, .4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 600px; */
    padding: 40px 0px 120px;
}

.hero-content .tag {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
    width: 30%;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1
}

.hero-content h1 span {
    color: var(--gold)
}

.hero-content p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    max-width: 480px;
    text-align: justify;
}

.hero-btns {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* Marquee */

.marquee-section {
    overflow: hidden;
    padding: 24px 0;
    background: #1a1a22
}

.marquee-svg {
    width: 200%;
    animation: marquee-wave 20s linear infinite
}

@keyframes marquee-wave {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Sections */
section {
    padding: 80px 0px
}

.section-tag {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em
}

.section-title {
    font-size: 58px;
    font-weight: 700;
    margin-top: 10px;
}

.section-title span {
    color: var(--gold)
}

.bg-surface {
    background: #26262f
}

.section-title-1 {
    font-size: 29px;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
    line-height: 37px;
}

.section-title-1 span {
    color: var(--gold)
}

/* Grid layouts */
.grid-part {
    margin-top:64px;
    text-align:left
}
.process-part {
    display:flex;
    flex-direction:column;
    gap:30px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

/* Cards */
.card {
    background: #2d2d38;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .3s;
    margin-bottom: 25px;
}

.card:hover {
    border-color: rgba(212, 168, 67, 0.4)
}

.card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 12px;
    transition: color .3s;
    color: #f0ede5;
}

.card:hover h3 {
    color: var(--gold)
}

.card p {
    color: var(--muted);
    font-size: 17px;
    margin-top: 8px
}

.card .icon {
    font-size: 47px
}

/* Nutrition cards */
.nutrition-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: border-color .3s
}

.nutrition-card:hover {
    border-color: rgba(212, 168, 67, 0.4)
}

.nutrition-card .val {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold)
}

.nutrition-card .unit {
    font-size: 14px;
    color: rgba(212, 168, 67, 0.7)
}

.nutrition-card .lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

/* Process steps */
.step {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-num {
    font-size: 28px;
    font-weight: 700;
    color: rgb(201 164 79 / 81%);
    flex-shrink: 0
}

.step h3 {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #f0ede5;
    margin: 0;
    /* 👈 aa main fix che */
}

.step p {
    color: rgb(212 168 67 / 53%);
    font-size: 14px;
    margin-top: 4px
}

/* Stats */
.stat {
    text-align: center;
    padding: 32px 0
}

.stat .num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
        font-size: 36px;

}

.stat .lbl {
    color: var(--muted);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 7px;
    text-align: center;
}


.cert-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    /* tamara design mujab change karo */
    height: auto;
    object-fit: contain;
}
.process{
    padding: 80px 0;
}


/* Cert badges */
.cert-badges {
      background: #313133fa;
    border: 1px solid #3a3a45;
      border-radius: 50px;
       margin-bottom: 25px;
}

.cert-badge {
    /* background: #26262f;
    border: 1px solid #3a3a45; */
    padding: 16px 25px;
  
    font-weight: 700;
    transition: all .3s;
    margin: 0 auto;
  
}

.cert-badge:hover {
    border-color: var(--gold);
    color: var(--gold)
}
.cert-list {
    margin-top: 70px;
}

/* Export banner */
.export-banner {
    position: relative;
    padding: 128px 24px;
    text-align: center;
    overflow: hidden
}

.export-banner .bg {
    position: absolute;
    inset: 0
}

.export-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.export-banner .bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 34, .7)
}

.export-banner .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto
}
section#export {
    padding: 80px 0;
}
.export-text p {
    margin-top: 24px;
    color: #9b9890;
}

/* USP */
 .usp-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; */
    margin-top:64px;
    text-align:left
}

/* Rounded image */
.rounded-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover
}

.aspect-square {
    aspect-ratio: 1/1
}

.aspect-video {
    aspect-ratio: 16/9
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Optional: glow effect wrapper */
.glow-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.glow-wrap::before {
    content: '';
    position: absolute;
    /* inset: -16px; */
    border-radius: 24px;
    filter: blur(24px)
}

/* About page */
.about-hero {
    position: relative;
    padding: 128px 24px;
    overflow: hidden;
    text-align: center
}

.about-hero .bg-img {
    position: absolute;
    inset: 0;
    opacity: 0.15
}

.about-hero .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.8)
}

.about-hero .content {
    position: relative;
    z-index: 2
}

/* Quality steps */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.q-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center
}

.q-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 168, 73, .2);
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

/* Flavour grid */

.flavour-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    font-weight: 700;
    transition: border-color .3s
}

.flavour-card:hover {
    border-color: rgba(212, 168, 67, 0.4);
    color: var(--gold)
}

/* Tags */
.tag-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px
}

.tag {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600
}
.content p {
    margin-top:24px;
    color:#cdcdcd;
    font-size:18px
}
.text-part {
    text-align:center;
    margin-top:80px;
}
.text-part {
    text-align: center;
    margin-top: 55px;
}


/* Contact */


/* .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px
}

.contact-card h3 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px
}

.contact-card p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    margin-bottom: 12px
}

input,
textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--fg);
    font-family: var(--font);
    font-size: 14px;
    transition: border-color .3s;
    outline: none
}

input:focus,
textarea:focus {
    border-color: var(--gold)
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px
}

.form-group {
    margin-bottom: 20px
} */

/* Footer */
footer {
    background: #26262f;
    border-top: 1px solid #3a3a45;
    padding: 85px 0px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto
}

footer h4 {
    color: var(--gold);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px
}
.footer-part p {
    color: #9b9890;
    font-size: 17px;
    max-width: 280px;
    line-height: 1.7;
    text-align: justify;
    margin: 16px 0;
}

footer a {
    color: #9b9890;
    font-size: 18px;
    display: block;
    /* margin-bottom: 8px; */
    transition: color .3s
}
.contact-address{
    color: #9b9890;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 28px;
}
.contact-info{
    color: #9b9890;
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-link{
    color: #9b9890;
    text-decoration: none;
}
.contact-icon{
    width: 20px;
    height: 20px;
    fill: #c8a96b;
    min-width: 20px;
}
footer a:hover {
    color: var(--fg)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding-top: 32px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted)
}

/* Animations */
/* @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards
} */

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite
}



/* inner Page */


/* breadcrumb */

.breadcrumb {
    background-image: url(../images/breadcrumb-img-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
    margin: 0;
    
}
.breadcrumb::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #094b54 0%, rgb(147 86 0) 117.71%) !important;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    /* background: #02464f; */
}
.breadcrumb h2 {
    position: relative;
    color: #fff;
    font-size: 47px;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
        margin-bottom: 0;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
  .bread-last a {
    color: #fff;
    transition: 0.3s ease;
  }
  .bread-last a:hover {
    color: #1a62ac;
  }
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #fff3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(212, 168, 67);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.key-part ul {
    margin-top:32px;
    list-style:none;
    padding:0
}
.key-part ul li {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size: 17px;
}
.key-part span {
    width:8px;
    height:8px;
    background:var(--gold);
    border-radius:50%;
    flex-shrink:0"
}
.section-tag-1 {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: #ffffff33;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #d4a843;
    padding: 6px 18px;
    border-radius: 20px;
}
.key-part {
    border: 2px solid #3a3a45;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
    animation: pulse-glow 2.5s ease-in-out infinite;
    background-color: #212128;
    height: 430px;
}
.key-part-1 {
    border: 2px solid #3a3a45;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
    animation: pulse-glow 2.5s ease-in-out infinite;
    background-color: #26262f;
}
.key-part-1 ul {
    margin-top: 13px;
    list-style: none;
    padding: 0;
}
.key-part-1 ul li {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px
}
.key-part-1 span {
    width:8px;
    height:8px;
    background:var(--gold);
    border-radius:50%;
    flex-shrink:0"
}
 .image-item img {
        width: 100%;
        padding-top: 0
    }
    .app-image img:hover {
    transform: scale(1.1);
    cursor: pointer;
    transition: 3s
}

.app-image {
    overflow: hidden;
    position: relative;
    border-radius: 10px
}
.app-image img {
    width: 100%;
}
.makhana.bg-surface {
    padding: 80px 0;
}
section.packaging-part {
    padding: 80px 0px;
}
.vision.bg-surface {
    padding: 80px 0px;
}
.makhana-part p {
text-align: justify;
line-height: 31px;
}
.section-part.bg-surface {
    padding: 80px 0;
}
.section-part-1{
    padding: 80px 0;
}


/* .makhana-part .slick-prev,
.makhana-part .slick-next{
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 40px;
    height: 40px;
    border: 0;
    /* border-radius: 50%;
    background-color: #f58532; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    font-size: 0;
    cursor: pointer;
}

.makhana-part .slick-prev:before,
.makhana-part .slick-next:before{
    display:none;
}
.makhana-part .slick-prev{
    right: 95%;
    left: auto;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l176 176c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 262.6 102.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-176 176z'/%3E%3C/svg%3E");
}
.makhana-part .slick-next{
    right: -2%;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-176-176c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 57.4 409.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l176-176z'/%3E%3C/svg%3E");
} */


















/* Responsive 
@media(max-width:768px) {

    .grid-2,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .grid-3,
    .flavour-grid {
        grid-template-columns: 1fr 1fr
    }

    /* .grid-4,
    .quality-grid {
        grid-template-columns: 1fr 1fr
    } */

    /* nav {
        display: none
    } 

    .hero-content h1 {
        font-size: 2rem
    }
}

/* Industries */
.pill-list {
    /* display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px; */
    margin-top: 48px
}

.pill {
    display: flex;
    background: #26262f;
    border: 1px solid #3a3a45;
    padding: 10px;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
    width: 100%;
    height: 78px;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.img-box:hover .pill {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* optional: image hover effect */
.img-box img {
    transition: transform 0.3s ease;
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.img-box {
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.img-box:hover img {
    transform: scale(1.03);
}

/* Page navigation (tabs) */
.page-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 80px 24px 0;
    flex-wrap: wrap
}

.page-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    transition: all .3s
}

.page-tab.active,
.page-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08)
}

.page-content {
    display: none
}

.page-content.active {
    display: block
}

strong {
    color: #9a9a9a;
}

.read {
    text-align: center;
    display: flex;
    /* justify-content: center; */
    gap: 20px;
    padding-top: 0px;
}

.read a {
    position: relative;
    font-size: 17px;
    /* line-height: 1.4; */
    padding: 14px 0px;
    color: #d4a843;
    font-weight: 700;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0px;
}

.packaging {
    max-width: 500px;
}

.section-tag {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    margin-top: 7px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 11px;
}

.section-desc {
    margin-top: 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.packaging-list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.packaging-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
}

.packaging-list li span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.label {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.center h2 {
    font-size: 55px;
    margin-top: 12px;
    line-height: 1.15;
}

p {
    /* color: #9b9890; */
    font-size: 17px;
    /* max-width: 640px; */
    /* margin: 16px 0; */
    /* text-align: justify; */
}

.center {
    text-align: center;
}

.footer-part img {
    background-color: #fff;
    padding: 10px 0;
    width: 224px;
    border-radius: 7px;
    margin: auto;
}

/* Products */

.clients-logo {
    position: relative;
    margin: 20px 15px;
    height: 350px;
    cursor: pointer;
}

/* White background layer */
.clients-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff2dd;
    z-index: 1;
}

/* Border behind */
.clients-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    top: -12px;
    left: -12px;
    border: 2px solid #ff9600;
    border-radius: 5px;
    z-index: 0;
    transition: 0.7s;
    right: 10px;
    bottom: 10px;
}

.clients-logo:hover::before {
    top: 0;
    left: 0;
}

/* Content upar rahe */
.clients-logo>* {
    position: relative;
    z-index: 2;
}

.clients-logo:hover::before {
    top: 0;
    left: 0;
    transition: .7s;
}

.front-card {
    width: 100%;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 100% 100%, 0% 100%, 0% 60%, 0% 20%);
    transition: .3s;
}

/* .product-sec .front-card:hover h4{
    color: white !important;
} */

.clients-logo:hover h4 {
    color: white !important;
}

.clients-logo:hover .front-card {
    background-color: #ff9600;
    opacity: 9;
    /* transform: translateY(20px); */
    bottom: 0;
}

.view-btn a {
    font-size: 18px;
    word-spacing: 5px;
    color: #fff;
    background-color: #ff5d13;
    border: 1px solid white;
    padding: 8px 20px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
    z-index: 9;
    margin-top: 0;
    /* border-radius: 5px; */
}

.read-btn a {
    font-size: 18px;
    color: #000000;
    background-color: #d4a843;
    border: 1px solid #fff;
    display: inline-block;
    overflow: hidden;
    border-radius: 45px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background .3s;
    height: 53px;
    line-height: 54px;
    padding: 0 15px;
    box-shadow: none;
    transition: all .3s ease 0s;
    text-align: center;
    z-index: 1;
    position: relative;
    margin-top: 80px;
}

.view-btn a::before {
    position: absolute;
    content: "";
    background-color: black;
    color: #fff;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease;
}

.view-btn a:hover::before {
    height: 100%;
    z-index: 999999;
    color: white;
    z-index: -1;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.view-btn a:hover {
    color: #fff;
}

.view-btn i {
    color: white;
}

.view-btn a:hover i {
    transform: rotate(30deg);
}

.section .slick-prev {
    display: none !important;
}

.section .slick-next {
    display: none !important;
}

.in-client {
    margin: 0 0;
}

.clients-logo h4 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: black !important;
    margin-bottom: 12px;
    margin-top: 20px;
}


.clients-logo img {
    /* padding: 10px 5px 0 5px; */
    margin: 0 auto;
}

.product-sec img {
    width: 100%;
}
.center  p{
    max-width:640px;margin:16px auto 0; text-align: center;
}
section#products {
    padding: 80px 0;
}
.q-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #f0ede5;
}

.pkg-list {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}

.pkg-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 18px;
    color: #f0ede5;
}

.pkg-list .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.flavour-grid {
    margin-top: 48px
}

.flavour {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all .3s
}

.flavour:hover {
    border-color: rgba(212, 168, 73, .4)
}

.flavour:hover h3 {
    color: var(--gold)
}

.also {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px
}

.also span {
    background: rgba(212, 168, 73, .1);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.power {
    color: #9b9890;
    position: relative;
    padding-top: 33px;
    text-align: right;
    font-size: 17px;
}

.botton-line {
    border-top: 1px solid #3a3a45;
    margin-top: 15px;
}

.copy {
    color: #9b9890;
    position: relative;
    padding-top: 33px;
    font-size: 17px;
}

.power a {
    color: #9b9890;
    /* white-space: nowrap; */
    display: inline !important;
}


.top-part {
    padding-left: 35px;
}
.glow-wrap img {
    width: 100%;
}
.makhana-text h3 {
    font-size: 31px;
    font-weight: 700;
    /* line-height: 34px; */
}
.construction {
   box-shadow: 0 5px 15px 0 rgb(195 195 195 / 23%);
    border-radius: 10px;
    border-left: 5px solid #f18e00;
    padding: 30px 0 15px 15px;
    margin-top: 20px;
    background-color: #212128;
}
.er_contact_icon {
    width: 80px;
    height: 80px;
    background-color: #f18e00;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}
.er_contact_icon img {
    max-width: 48px;
    max-height: 48px;
    object-fit: cover;
    transition: all .6s ease-in-out;
}
.mission-time h4 {
    color: #fff;
    text-align: center;
    padding-bottom: 4px;
    font-weight: 600;
    font-size: 34px;
}
.mission-time p {
    padding: 0 10px 0 5px;
    text-align: center;
}
.new-cons img {
    border-radius: 10px;
}
.captch {
    filter: invert(1);
}

/* body {
    font-size: 14px;
} */


/* inner-page product-part */

.clients-logo-1 {
    position: relative;
    margin: 20px 5px;
    height: 350px;
    cursor: pointer;
}

/* White background layer */
.clients-logo-1::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff2dd;
    z-index: 1;
}

/* Border behind */
.clients-logo-1::before {
    content: '';
    position: absolute;
    inset: 0;
    top: -12px;
    left: -12px;
    border: 2px solid #ff9600;
    border-radius: 5px;
    z-index: 0;
    transition: 0.7s;
    right: 10px;
    bottom: 10px;
}

.clients-logo-1:hover::before {
    top: 0;
    left: 0;
}

/* Content upar rahe */
.clients-logo-1>* {
    position: relative;
    z-index: 2;
}

.clients-logo-1:hover::before {
    top: 0;
    left: 0;
    transition: .7s;
}
.clients-logo-1:hover h4 {
    color: white !important;
}

.clients-logo-1:hover .front-card-1 {
    background-color: #ff9600;
    opacity: 9;
    /* transform: translateY(20px); */
    bottom: 0;
}
.clients-logo-1 h4 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: black !important;
    margin-bottom: 12px;
    margin-top: 20px;
}


.clients-logo-1 img {
    /* padding: 10px 5px 0 5px; */
    margin: 0 auto;
}
.front-card-1 {
    width: 100%;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 100% 100%, 0% 100%, 0% 60%, 0% 20%);
    transition: .3s;
}


/* contact us */


.contact-page {
    padding: 80px 0;
    background-color: #15141c;
}
.er_contact_box {
    text-align: center;
    height: 315px;
    transition: all .5s ease-in-out;
    cursor: pointer;
   box-shadow: 0 5px 15px 0 rgb(195 195 195 / 31%);
    border-radius: 10px;
    border-left: 5px solid #f18e00;
    padding: 25px 0 15px 15px;
    margin-top: 20px;
}
.in-add h4 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding: 0 0 10px;
}
.in-location {
    color: #fff;
    line-height: 28px;
    font-size: 17px;
    font-weight: 500;
}
.map-time iframe {
    border-radius: 20px;
}
.map-time {
    margin-top: 50px;
    border-radius: 20px;
    border: 3px solid #f18e00;
    height: 455px;
    border-radius: 20px;
}
.in-add p {
    color: #E7E7E7;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.er_contact_box:hover {
    transform: translateY(-10px);
}
.er_contact_box:hover .er_contact_icon img {
    transform: scale(-1) rotate(180deg);
}



.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* .footer-part img {
    max-width: 150px;
    margin-bottom: 15px;
} */

.footer-grid h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-grid a {
    display: block;
    color: #9b9890;
    /* margin-bottom: 8px; */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-grid a:hover {
    color: #c8a96b;
    padding-left: 5px;
}
.footer-product-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-product-list li{
    margin-bottom: 10px;
}

.footer-product-list li a{
    color: #9b9890;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
.quick-links-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li{
    margin-bottom: 10px;
}

.quick-links-list li a{
    color: #9b9890;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.quick-links-list li a:hover{
    color: #c8a96b;
    padding-left: 5px;
}
.footer-product-list li a:hover{
    color: #c8a96b;
    padding-left: 5px;
}

.botton-line {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
}

.copy,
.power {
    font-size: 17px;
    color: #9b9890;
}


/* Enquiry Form Css */

.form-control-feedback {
  display: none;
}

.has-feedback label~.form-control-feedback {
  top: 0 !important;
}

.error {
  text-align: left !important;
  display: table !important;
}

.thnak4 {
  margin-top: 50px;
}

.has-feedback .form-control {
 
  padding: 20px;
}

.form-group {
  margin: 15px 0 !important;
}

.form-group input {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #1b3075;
  color: #000;
  font-weight: 500;
}
.has-feedback .form-control::placeholder{
  color: #000000;
}
.has-feedback .form-control{
  color: #000000;
}
.form-group textarea {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #1b3075;
  font-weight: 500;
}

.form-group select {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #1b3075;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  width: 100% !important;
  border-bottom: 2px solid #1b3075;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 20px 0;
  width: 100% !important;
}

.Submit-box {
  background-color: #f18e00;
  color: #fff;
  padding: 10px 15px;
  border: 1px solid #f18e00;
  font-size: 18px;
  border-radius: 2px;
  transition: 0.3s ease;
  font-weight: 600;
}

.Submit-box:hover {
  background-color: #000;
  border: 1px solid #000;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #000 !important;
  border-bottom: 2px solid #f18e00;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.fill {
  font-size: 20px;
  font-weight: 600;
}
.get strong {
  font-size: 32px;
  color: #f18e00;
  padding-bottom: 10px;
}
.page-part{
  padding: 80px 0;
}


/* Enquiry Form Css End*/



.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
    color: #0b2e38;
}


/* media Query */

@media only screen and (max-width:1199px) {


            .hero-content .tag {
        font-size: 14px;
        width: 35%;
    }
        section {
        padding: 40px 0px 60px;
    }
.marquee-section {
    overflow: hidden;
    padding: 46px 0 24px;
    background: #1a1a22;
}
.clients-logo {
    margin: 20px 15px;
    height: 370px;
}
       nav {
        width: 72%;
    }
    .header-main {
    padding: 10px 0;
}
nav > ul > li > a {
    padding: 30px 0;
}
.hero-content p {
    margin-top: 20px;
}
.center p {
    margin: 10px auto 0;
}
.read-btn a {
    height: 51px;
    margin-top: 65px;
}
.clients-logo h4 {
    font-size: 22px;
    margin-bottom: 8px;
    margin-top: 30px;
}
section#export {
    padding: 70px 0;
}
.process {
    padding: 70px 0;
}
.section-title-1 {
    font-size: 29px;
    margin-top: 5px;
}
.cert-list {
    margin-top: 60px;
}
.hero-content {
    padding: 40px 0px 90px;
}
.hero-btns {
    margin-top: 25px;
}
    section.makhana-part {
        padding: 80px 0 70px;
    }
.vision.bg-surface {
    padding: 50px 0px 70px;
}
footer {
    background: #26262f;
    border-top: 1px solid #3a3a45;
    padding: 70px 0px 15px;
}
.makhana.bg-surface {
    padding: 70px 0;
}
.contact-page {
    padding: 70px 0;
    background-color: #15141c;
}
.page-part {
    padding: 70px 0;
}
.section-part.bg-surface {
    padding: 70px 0;
}
.section-part-1 {
     padding: 70px 0;
}
section.packaging-part {
    padding: 70px 0px;
}
.construction {
    height: 325px;
}
section#products {
    padding: 70px 0;
}
.clients-logo-1 {
    height: 316px;
}
.clients-logo-1 h4 {
    margin-top: 30px;
}
.key-part {
    height: 488px;
}
.card {
    padding: 32px 20px;
    height: 258px;
}
}


/* @media (min-width: 576px) and (max-width: 767px) {
    .hero-content .tag {
        color: var(--gold);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
        display: block;
        width: 55%;
    }
} */


@media only screen and (max-width:991px) {

    .hero-content .tag {
        color: var(--gold);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
        display: block;
        width: 45%;
    }
    .marquee-svg {
        width: 236%;
        animation: marquee-wave 20s linear infinite;
    }
section {
        padding: 55px 0px 55px;
    }
.marquee-section {
        padding: 35px 0 0px;
    }
    .glow-wrap {
        margin-top: 25px;
    }
    .read a {
        margin-top: 8px;
        font-size: 18px;
    }
    .center h2 {
    margin-top: 9px;
    margin-bottom: 7px;
}
    .center p {
        margin: 6px auto 0;
    }
.clients-logo {
    height: 385px;
}
.read-btn a {
    margin-top: 50px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}
.pill {
    font-size: 23px;
}
.img-box {
    margin-bottom: 25px;
}
.card {
    padding: 32px 20px;
    height: auto;
}
.footer-part img {
    width: 248px;
    margin: 0;
}
section {
    padding: 50px 0px;
}
 .hamburger-menu {
        display: block;
        cursor: pointer
    }

    nav {
        display: none
    }

    nav>ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 324px;
        background-color: #fff;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        z-index: 999999999999
    }

    .header-contact nav>ul {
        transform: translateX(0)
    }

    nav {
        display: initial
    }

    nav>ul {
        display: initial;
        flex-direction: column
    }

       nav>ul>li>a {
        padding: 15px 20px;
        display: block;
        color: #000 !important;
        /* padding-left: 20px; */
    }

    nav>ul>li {
        border-bottom: 1px solid #d4d4d4;
        padding-left: 0;
        display: block;
    }

    nav>ul>li>a>i {
        display: none !important
    }

    nav>ul>li.drop-down-menu {
        padding-right: 60px;
        position: relative;
        overflow: hidden
    }

        nav>ul>li.drop-down-menu::after {
        position: absolute;
        top: 4px;
        right: 22px;
        content: "+";
        font-size: 30px;
        color: #02464f;
    }

    nav>ul>li.drop-down-menu.responsive-header::after {
        content: "-" !important
    }

    .drop-down-nav {
        position: initial;
        visibility: visible;
        opacity: 1;
        overflow: visible;
        top: 0;
        left: 0;
        background-color: #02464f;
        z-index: 9;
        height: 0;
        transition: none !important;
        padding: 0
    }

    .responsive-header .drop-down-nav {
        height: 100%;
        overflow-y: scroll;
        width: 150%
    }
   .btn-gold-1 {
    font-size: 15px;
    height: 52px;
    line-height: 57px;
    padding: 0 15px;
}
.drop-down-menu:hover > a {
    color: #dbb661 !important;
    opacity: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 30px; */
}
.power {
    color: #9b9890;
    position: relative;
    padding-top: 10px;
    text-align: justify;
    font-size: 17px;
}
.copy {
    color: #9b9890;
    position: relative;
    padding-top: 6px;
    font-size: 17px;
}
.hero {
    padding-top: 20px;
    min-height: 85vh;
}
    .header-main {
        padding: 12px 0;
    }
    .hero-content {
        padding: 15px 0px 35px;
    }
.section-title {
    margin-bottom: 7px;
    margin-top: 7px;
}
.section-tag {
    font-size: 19px;
    margin-bottom: 5px;
    margin-top: 25px;
}
/* .stay-text {
        display: flex;
        flex-direction: column-reverse;
    } */
.export-text p {
    margin-top: 10px;
}
.pkg-list {
    margin-top: 10px;
}
section#export {
        padding: 65px 0;
    }
.process-part {
    gap: 18px;
    margin-top: 27px;
}
    .process {
        padding: 65px 0;
    }
.grid-part {
    margin-top: 45px;
}
.quality-grid {
    grid-template-columns: repeat(auto-fit, minmax(237px, 1fr));
    gap: 20px;
    margin-top: 35px;
}
.section-part.bg-surface {
    padding: 65px 0;
}
.section-part-1{
    padding: 65px 0;
}
.pill-list {
    margin-top: 35px;
}
.usp-grid {
    margin-top: 40px;
    text-align: left;
}
.export-banner {
    padding: 75px 0px;
}
.footer-grid h4 {
    margin-bottom: 15px;
    font-size: 20px;
}
.breadcrumb {
    padding: 85px 0;
}
.app-image {
    margin-bottom: 30px;
}
.makhana-text h3 {
    font-size: 27px;
}
    section.makhana-part {
        padding: 65px 0 60px;
    }
    .key-part {
    height: auto;
    margin-bottom: 25px;
}
    .makhana.bg-surface {
        padding: 65px 0 60px;
    }
    section.packaging-part {
    padding: 65px 0px;
}
.construction {
    height: 345px;
}
    .drop-down-nav>li>a {
        padding: 15px 20px;
        font-size: 18px;
    }
.logo {
    width: 225px !important;
}
.contact-page {
        padding: 65px 0;
    }
        .page-part {
        padding: 65px 0;
    }
    .btn-gold {
        border-radius: 0px;
        font-size: 17px;
        display: block;
        padding: 0px 20px;
        height: 50px;
    line-height: 53px;
    }
    .btn-outline {
    font-size: 15px;
}
.clients-logo-1 {
    height: 365px;
}
.hero-content h1 {
    font-size: 63px;
}
section#products {
    padding: 65px 0;
}
    .clients-logo-1 h4 {
        margin-top: 20px;
    }
    

}


@media only screen and (max-width:767px) {

}




@media only screen and (max-width:576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-part p {
        max-width: 100%;
    }

        .botton-line .row {
        gap: 5px;
    }

    .copy,
    .power {
        text-align: center;
    }

    .power {
        font-size: 17px;
    }

    .top-part {
        padding-left: 0px;
    }

    footer a {
        color: #9b9890;
        font-size: 17px;
        display: block;
        margin-bottom: 8px;
        transition: color .3s
    }
    .power {
    padding-top: 5px;
    margin-top: 0;
}
.hero-content .tag {
        font-size: 13px;
        width: 57%;
    }
    .btn-outline {
    font-size: 15px;
}
    .clients-logo {
        height: 343px;
    }
    section#products {
    padding: 60px 0;
}
    
.read-btn a {
    font-size: 17px;
    line-height: 52px;
    padding: 0 11px;
    margin-top: 45px;
}
.section-title {
    font-size: 39px;
}
    .section-part-1 {
        padding: 60px 0;
    }
        .section-part-1 {
        padding: 60px 0;
    }
    .section-part.bg-surface {
        padding: 50px 0;
    }
    .card {
        height: 288px;
    }
    .content p {
    margin-top: 14px;
    color: #cdcdcd;
    font-size: 18px;
}
.footer-grid {
    gap: 20px;
}
.footer-part img {
        width: 254px;

    }
        .export-banner {
        padding: 65px 0px;
    }
        .center h2 {
        margin-top: 10px;
        margin-bottom: 7px;
    }
    .q-card {
    padding: 32px 20px;
}
.er_contact_box {
    height: auto;
}
    .contact-page {
        padding: 60px 0;
    }
        section.makhana-part {
        padding: 60px 0 55px;
    }
        .makhana.bg-surface {
        padding: 60px 0 50px;
    }
        section.packaging-part {
        padding: 60px 0px;
    }
        .construction {
        height: 402px;
    }
        .vision.bg-surface {
        padding: 44px 0px 65px;
    }
    footer {
        background: #26262f;
        border-top: 1px solid #3a3a45;
        padding: 60px 0px 10px;
    }
    .botton-line {
    margin-top: 14px;
    padding-top: 12px;
}
    .makhana-text h3 {
        font-size: 25px;
    }
    .get strong {
    font-size: 27px;
}
.fill {
    font-size: 18px;
}
    .page-part {
        padding: 60px 0;
    }

}



@media only screen and (max-width:450px)  {

    .marquee-section {
    display: none;
}
    .hero-content {
        padding: 0px 0px 50px;
    }
        section {
        padding: 40px 0px 40px;
    }
        .section-tag {
        font-size: 19px;
    }
    section#products {
        padding: 55px 0 55px;
    }
        section#export {
        padding: 50px 0;
    }
    .process {
        padding: 50px 0 45px;
    }
    .step h3 {
    font-size: 20px;
}
   
.section-tag {
        margin-top: 10px;
    }
    .flavour-grid {
    margin-top: 33px;
}
    .card {
        height: auto;
    }
.read a {
    margin-top: 0px;
}
    .glow-wrap {
        margin-bottom: 20px;
    }
    .glow-wrap {
        margin-top: 10px;
    }
    .section-title {
    font-size: 29px;
}
.clients-logo {
    height: 400px;
}
    .hero-content p {
        margin-top: 13px;
    }
.section-part-1 {
        padding: 55px 0 50px;
    }
        .export-banner {
        padding: 60px 0px;
    }
        .cert-list {
        margin-top: 45px;
    }
        .makhana-text h3 {
        font-size: 23px;
    }
    .key-part ul {
    margin-top: 20px;
}
.footer-grid {
        gap: 14px;
    }   
.key-part-1 {
    padding: 35px 20px 30px;
}
.makhana.bg-surface {
        padding: 60px 0 45px;
    }
        .contact-page {
        padding: 50px 0 55px;
    }
.read-btn a {
    margin-top: 40px;
}
.section-title-1 {
    font-size: 21px;
    margin-top: 5px;
    line-height: 30px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
}
.stat {
    padding: 16px 0;
}
.center h2 {
    font-size: 36px;
}
.q-circle {

    font-size: 23px;
}
.img-box {
    margin-bottom: 25px;
}
.pill {
    font-size: 24px;
    height: 76px;
}
    .footer-part img {
        margin: 0 auto;
    }
    .power {
        font-size: 18px;
        color: #9b9890;
    }
        footer a {
        font-size: 18px;
    }
    .footer-grid h4 {
    margin-bottom: 15px;
    font-size: 22px;
}
    .copy {
        padding-top: 12px;
    }
footer {
    background: #26262f;
    border-top: 1px solid #3a3a45;
    padding: 60px 0px 15px;
}
.footer-part img {
    width: 237px;
}
    nav>ul {
        width: 300px;
    }

    .hero-content .tag {
        color: var(--gold);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
        display: block;
        width: 84%;
    }
    .hero {
    padding-top: 50px;
}
    .breadcrumb {
        padding: 80px 0;
    }
       .get strong {
        font-size: 19px;
    }
        .page-part {
        padding: 50px 0;
    }
        .logo {
        width: 210px !important;
    }
        .btn-outline {
        font-size: 16px;
        padding: 0 14px;
    }
        .logo {
        width: 201px !important;
    }
        .hero-content .tag {
        font-size: 13px;
        width: 92%;
    }
    .hero-content h1 {
    font-size: 40px;
}
    .btn-gold {
        /* border-radius: 50px; */
        font-size: 17px;
    }
    .header-main {
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #3a3a45;
}
.btn-gold-1 {
        padding: 0 10px;
    }

}

@media only screen and (max-width:400px)  {

    .hamburger-menu {
    padding-right: 2px;
}
.hero-content h1 {
    font-size: 35px;
}
.btn-outline {
        font-size: 15px;
    }
        nav>ul {
        width: 285px;
    }
    section {
        padding: 40px 0px 35px;
    }
    .makhana-text h3 {
        font-size: 20px;
    }
    .makhana.bg-surface {
        padding: 50px 0 40px;
    }
    .breadcrumb h2 {
    font-size: 36px;
    line-height: 40px;
}
        .btn-gold {
        /* border-radius: 50px; */
        font-size: 17px;
    }
   
        .get strong {
        font-size: 18px;
    }
        .contact-page {
        padding: 45px 0 55px;
    }
        section.makhana-part {
        padding: 50px 0 50px;
    }
        .section-title {
        font-size: 24px;
    }
        .center h2 {
        font-size: 31px;
    }
        .clients-logo {
        height: 382px;
    }

}

@media only screen and (max-width:350px)  {

           .hero-content {
        padding: 0px 0px 30px;
    }
        .hero-content .tag {
        font-size: 13px;
        width: 100%;
    }
        .export-banner {
        padding: 50px 0px;
    }
        .logo {
        width: 192px !important;
    }
    .header-main {
    backdrop-filter: blur(12px);
}
    .clients-logo {
        height: 380px;
    }
        .makhana-text h3 {
        font-size: 18px;
    }
        section.packaging-part {
        padding: 50px 0px;
    }
        .footer-part img {
        width: 225px;
    }
        .footer-grid h4 {
        margin-bottom: 12px;
        font-size: 22px;
    }
        .section-tag {
        font-size: 18px;
    }
        .botton-line {
        margin-top: 7px;
        padding-top: 9px;
    }
        nav>ul {
        width: 269px;
    }
        .hamburger-menu {
        padding-right: 0px;
    }

}