@font-face {
  font-family: myFont; /* set name */
  src: url(font/Helvetica.ttf); /* url of the font */
}
body,*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'myFont', sans-serif;
}

/* html, body {
 
  scroll-behavior: smooth;
   scroll-snap-type: y mandatory;
  
}
section {
  scroll-snap-align: center;
  min-height: 100vh;         
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer-section {
    height: auto;
    width: 100%;
    min-height: 100%;
    display: block;
} */
.navbar
{
    z-index: 999;
    font-size: 21px;
    /* font-weight: bolder; */
    color: white !important;
    padding: 0px 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo
{
    width: 65px;
    height: 65px;
    object-fit: contain;
    /* margin-right: 10px; */
}
.navbar .navbar-brand
{
    padding: 0;
    margin: 0;
}
.navbar .nav-link,.navbar .nav-item .nav-link {
    color: black;
    border-radius: 12px;
    padding: 8px 15px;
}
.navbar .nav-link:hover {
    color: black !important;
    background-color: #ff7000;
    border-radius: 12px;
}
.nav-btn
{
    background-color: #ff7000;
}
.blur
{
    backdrop-filter: blur(5px);
}
ul.navbar-nav.me-auto.mb-2.m-auto.mb-lg-0 {
    gap: 10px;
}
/* Navbar scrolled state: switch from transparent to dark */
.navbar {
    transition: background-color 0.28s ease, box-shadow 0.28s ease, color 0.2s ease;
}
.navbar.nav-scrolled {
    background: rgba(0,0,0,0.92) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    backdrop-filter: none;
}
.navbar.nav-scrolled .navbar-brand,
.navbar.nav-scrolled .nav-link {
    color: black !important;
}
.navbar.nav-scrolled .nav-link:hover {
    color: black !important;
    background-color: #ff7000;
    border-radius: 12px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.mobile-video {
  display: none;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* SCROLL DOWN OVERLAY */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  font-size: 16px;
  animation: fadeUpDown 2s infinite;
  cursor: pointer;
  opacity: 0.9;
}

.scroll-down span {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 1px;
}

.scroll-down i {
  font-size: 22px;
  color: #ff7000;
  transition: transform 0.3s ease;
}

.scroll-down:hover i {
  transform: translateY(5px);
}

/* ANIMATION */
@keyframes fadeUpDown {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -10px);
    opacity: 1;
  }
}

/* CUSTOM GREEN THEME */
.text-green {
  color: #ff7000;

}

.btn-green {
  background: linear-gradient(135deg, #ff7000, #ff6f00);
  border: none;
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  transition: 0.3s;
}

.btn-green:hover {
  transform: scale(1.05);
  /* background: linear-gradient(135deg, #714625, #bc855b); */
}

/* .about-section */
/* .about-section .row
{
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    background-color: #f6efef;
} */
.about-section
{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.about-section img
{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.first-heading
{
    font-size: 3rem;
    font-weight: bold;
}
.second-heading
{
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 1rem;
}



/* product section  */
/* .product-section
{
    height: 100vh;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.product-section .card {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 1200px; 
    cursor: pointer;
    border: none;
    background: transparent;
}

.product-section .card .front,
.product-section .card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.product-section .card .front {
    
    color: black;
    font-size: 3rem;
    transform: rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}


.product-section .card .back {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    color: #222;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}


.product-section .card:hover .front {
    transform: rotateY(-180deg);
}

.product-section .card:hover .back {
    transform: rotateY(0deg);
}


.product-section .card .front i {
    font-size: 4.5rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    /* transform: translateZ(60px); */
/* }


.product-section .card:hover {
    transform: rotateX(5deg);
    transition: transform 0.4s ease;
}


.product-section .card:hover .front {
    box-shadow: 0 10px 20px rgba(183, 183, 183, 0.2);
}
.product-section .col-md-3 {

    display: flex;
    align-items: center;
    justify-content: center;
} */ 
 
 /* .product:nth-child(1){
    
    color: white;
    background: url('gallery/product/coriander_seeds.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 } */
 /* .product:nth-child(2){
    color: white;
    background: url('gallery/product/cumin_seeds.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 }
 .product:nth-child(3){
    color: white;
    background: url('gallery/product/dill_seeds.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 }
 .product:nth-child(4){
    color: white;
    background: url('gallery/product/fennel_seeds.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 }
 .product:nth-child(5){
    color: white;
    background: url('gallery/product/fenugreek_seeds.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 } */
  .product-section{
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
  }
  .product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(159, 255, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(159, 255, 159, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .product-section-header {
    position: relative;
    z-index: 1;
    padding: 20px;
  }
 .product-card
 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px auto;
    width: 85%;
    max-width: 1400px;
    height: 500px;
    padding: 50px 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.9); */
    border: 1px solid rgba(159, 255, 159, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* overflow: hidden; */
    /* width: 300px;
    height: 300px; */
    perspective: 1200px; /* stronger 3D depth */
    cursor: pointer;
    border: none;
    background: transparent;
    /* color: white; */
 }
 /* .product-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(159, 255, 159, 0.1), transparent);
   transition: left 0.6s ease;
 } */
 /* .product-card:hover::before {
   left: 100%;
 } */
 /* .product-card:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
               0 15px 40px rgba(0, 0, 0, 0.1),
               inset 0 1px 0 rgba(255, 255, 255, 0.9);
   border-color: rgba(159, 255, 159, 0.4);
 } */
.product-card .front,
.product-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* FRONT SIDE */
.product-card .front {
    /* background: linear-gradient(145deg, #007bff, #6610f2); */
    /* color: white; */
    font-size: 3rem;
    border: 1px solid #ccc;
     transition: all 0.6s ease;
    transform: rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    padding: 50px 40px;
    /* flex-direction: column; */
}

/* BACK SIDE */
.product-card .back {
    background: transparent;
    color: #222;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 50px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}
.product-card .back table thead tr td
{
  background-color: #ff7000;
}
.product-card .back table tbody tr td:nth-child(1)
{
  background-color: #f3944c;
}
.product-card .back table tbody tr td
{
    width: 50%;
}
.product-card:hover .front {
    transform: rotateY(-180deg);
}

.product-card:hover .back {
    transform: rotateY(0deg);
}
 .product-card-content
 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    /* gap: 25px; */
    width: 50%;
    position: relative;
    z-index: 1;
 }
 .product-card-image
 {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    position: relative;
    z-index: 1;
 }
 .product-card-image img,
 .product-img
 {
    width: 400px;
    border-radius: 18px;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
 }
 /* .product-card:hover .product-img {
   transform: scale(1.1) rotate(5deg);
   filter: drop-shadow(0 15px 40px rgba(159, 255, 159, 0.3));
 } */
 .product-info
{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: start;
    color: #333;
    z-index: 2;
}
 .product-name {
    z-index: 2;
    transition: all 0.3s ease;
}
 /* .product-card:hover .product-name {
   transform: translateX(5px);
 } */
 .product-features {
   display: flex;
   gap: 15px;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
 }
 .feature-badge {
   padding: 10px 20px;
   background: linear-gradient(135deg, #9fff9f, #7dd87d);
   color: #1a5a1a;
   border-radius: 25px;
   font-size: 14px;
   font-weight: 600;
   box-shadow: 0 4px 15px rgba(159, 255, 159, 0.3);
   transition: all 0.3s ease;
   border: 2px solid rgba(159, 255, 159, 0.3);
 }
 .feature-badge:hover {
   transform: translateY(-3px) scale(1.05);
   box-shadow: 0 6px 20px rgba(159, 255, 159, 0.4);
   background: linear-gradient(135deg, #7dd87d, #9fff9f);
 }
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* customer offering */
.customer-offering
{
    height: auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.customer-offering .row
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
/* .customer-offering .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    border-radius: 0px 50px 0px 50px;
    
    border: 1px solid #ccc;
    transition: all 0.6s ease;
} */
.customer-offering .card {
    position: relative;
    width: 300px;
    height: 300px;
    /* perspective: 1200px; stronger 3D depth */
    cursor: pointer;
    border: none;
    background: transparent;
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
    transition: all 0.6s ease;
}

/* .customer-offering .card .front,
.customer-offering .card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
} */

/* FRONT SIDE */
/* .customer-offering .card .front {
    background: linear-gradient(145deg, #007bff, #6610f2);
    color: white;
    font-size: 3rem;
    border: 1px solid #ccc;
     transition: all 0.6s ease;
    transform: rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
} */

/* BACK SIDE */
/* .customer-offering .card .back {
    background: transparent;
    color: #222;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
} */

/* FLIP EFFECT */
/* .customer-offering .card:hover .front {
    transform: rotateY(-180deg);
} */

/* .customer-offering .card:hover .back {
    transform: rotateY(0deg);
} */

.customer-offering .col-md-3:nth-child(1):hover .card
{
    background-color: #B7FDC7;
    color: black;
} 
.customer-offering .col-md-3:hover .card .show p
{
    display: block;
    transition: all 0.9s ease;  
    /* color: black; */
}
.customer-offering .col-md-3:hover .card svg
{
    display: none;
    transition: all 0.9s ease;  
    /* color: black; */
}
.customer-offering .col-md-3:nth-child(2):hover .card
{
    background-color: #CDE9FF;
    color: black;
}
.customer-offering .col-md-3:nth-child(3):hover .card
{
    background-color: #FFF0D9;
    color: black;
}
.customer-offering .col-md-3:nth-child(4):hover .card
{
    background-color: #EBFFC9;
    color: black;
}
.customer-offering .col-md-3:nth-child(5):hover .card
{
    background-color: #FFD6BB;
    color: black;
}
.customer-offering .col-md-3:nth-child(6):hover .card
{
    background-color: #b1a6f6;
    color: black;
} 
.customer-offering .row .col-md-3 h3
{
    font-size: 1.9rem;
}
.customer-offering .row .col-md-3 p
{
  display: none;
    font-size: 18px;
    line-height: 1.2;
    
}
.customer-offering svg
{
    height: 100px;
    width: 100px;
    position: absolute;
    bottom: 0px;
    right: 20px;
    padding-bottom: 10px;
}
.green
{
    color: green;
}
.purple
{
    color: #8B5CF6;
}

/* heritage-section */
.heritage-section
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* footer */
.footer-section
{
    background-color: #222;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer
{
    height: auto;
    /* background-color: #222; */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .row
{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* gap: 50px; */
}
footer h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #10B981;
}
.footer-section footer ul li {
    margin-bottom: 0.8rem;
    color: #94A3B8;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-section footer ul li:hover {
    color: #ff7000;
    transform: translateX(10px);

}

.footer-section footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
    color: #ff7000;
}
footer h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.footer-img img {
    max-width: 100%;
    height: auto;
    opacity: 0.3;
}
.footer-logo {
    display: flex;
    justify-content:left;
    align-items: center;
}
.footer-logo img {
    width: 300px;
    height: 200px;
    object-fit: contain;
    
}




@media screen and (max-width:850px) {
    button.navbar-toggler {
    border-color: black;
    }
    i.bi.bi-list {
        color: black;
    }
     .about-section
    {
        height: auto;
        padding: 20px;
        margin: 50px 0;
    }
    .product-section
    {
        height: auto;
        padding: 20px 10px;
        margin: 50px 0;
    }
    .product-section-header {
      padding: 20px 10px;
    }
    .product-card {
      flex-direction: column !important;
      width: 95%;
      height: 650px;
      padding: 30px 20px;
      gap: 30px;
      margin: 30px auto;
    }
    .product-card .front,.flex-row-reverse{
      display: flex;
      padding: 30px 20px;
      flex-direction: column !important;
    }
    .product-card .back {
      padding: 10px 20px;
    }
    /* .product-card.flex-row-reverse {
      flex-direction: column !important;
    } */
    .product-card-content {
      width: 100%;
      gap: 0px;
      align-items: center;
    }
    .product-card-image {
      width: 100%;
    }
    .product-card-image img,
    .product-img {
      width: 100%;
      max-width: 350px;
      height: auto;
      max-height: 350px;
    }
   
    .product-info {
      font-size: 16px;
      padding: 0 10px !important;
      line-height: 1.6;
    }
    .product-features {
      gap: 10px;
    }
    .feature-badge {
      font-size: 12px;
      padding: 8px 16px;
    }
    .customer-offering
    {
        height: auto;
        padding: 20px;
        text-align: center;
        margin: 50px 0;
    }
    .heritage-section
    {
        margin: 50px 0;
        height: auto;
        padding: 20px;
        /* text-align: center; */
    }
    .footer-section
    {
        height: auto;
        
    }
    footer
    {
        height: auto;
        padding: 20px;
        text-align: center;
    }
    .product-name
    {
        font-size: 32px !important;
        font-weight: 900 !important;
    }
    .product-info
    {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
    }
}
/* Make flip work on touch when JS toggles .is-flipped */
.product-section .card.is-flipped .front {
    transform: rotateY(-180deg);
}
.product-section .card.is-flipped .back {
    transform: rotateY(0deg);
}







@media screen and (max-width:450px) {
    .navbar .container-fluid {
        padding: 0;
    }
    .first-heading
    {
        font-size: 2.5rem;
    }
    .lead
    {
        line-height: 1.3;
    }
    .mobile-video {
      display: block;
      object-fit: cover;
    }
    .desktop-video {
      display: none;
    }
    .about-section
    {
        height: auto;
        padding: 20px;
        margin: 0px 0;
    }
    .about-section .row
    {       
        padding: 0;
    }
    .about-section .row .col-md-6.d-flex.justify-content-center.align-items-center
    {       
        padding: 0;
    }
    .product-section
    {
        height: auto;
        padding: 15px 5px;
        margin: 0px 0;
    }
    .product-section-header {
      padding: 15px 5px;
    }
    .product-section-header .first-heading {
      font-size: 35px !important;
    }
    .product-section-header .second-heading {
      font-size: 20px !important;
    }
    .product-section-header .lead {
      font-size: 18px !important;
      font-weight: 500;
    }
    .product-card {
      flex-direction: column !important;
      width: 98%;
      padding: 25px 15px;
      gap: 25px;
      margin: 25px auto;
      border-radius: 20px;
    }
    .product-card.flex-row-reverse {
      flex-direction: column !important;
    }
    .product-card-content {
      width: 100%;
      gap: 0px;
      align-items: center;
    }
    .product-card-image {
      width: 100%;
    }
    .product-card-image img,
    .product-img {
      width: 250px;
      height: 250px;
      margin: 20px 0;
      max-width: 280px;
      max-height: 280px;
    }
    .product-section .card
    {
        width: 250px;
        height: 250px;
    }
    .customer-offering
    {
        height: auto;
        padding: 80px 20px;
        text-align: center;
        margin: 0px 0;
    }
    .customer-offering .row
    {
        flex-direction: column;
        gap: 20px;
        /* padding: 20px 50px; */
    }
    .customer-offering .row .col-md-3
    {
       display: flex;
       align-items: center;
       justify-content: center;
    }
    .heritage-section
    {
        margin: 50px 0;
        height: auto;
        padding: 20px;
        text-align: center;
    }
    footer
    {
        height: auto;
        padding: 20px;
        text-align: center;
    }
    .footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    
}
}