
  body{
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.top-container{
padding-top: 2rem;
/* background-color: rgb(214, 247, 247); */
background-color: white;
height: 100%;
text-align: center;

}

.bg_image{
    display: block;
    margin: auto;
    width: 40rem;
    padding-bottom: 3rem;
}
.navbar-brand{
    margin-bottom: 1.5rem;
}
.nav_bg{
    /* background-color: rgb(214, 247, 247); */
    background-color: rgb(255, 255, 255);
}
.nav_button{
padding-right: 1rem;
padding-left: 1rem;
   font-size: 1.5rem;
}

.heading-down{
padding: 0.7rem ;
text-align: center;
}
.heading-down-p{
  padding: 0.7rem ;
  text-align: center;
  font-size: 1.5rem;
  }
.top_button1{
    margin-top: 2rem;


}
.btn{
    cursor:pointer;
      position:relative;
      padding:10px 20px;
      background:rgb(26, 192, 120);
      font-size:28px;
      border-top-right-radius:10px;
      border-bottom-left-radius:10px;
      transition:all 1s;
      &:after,&:before{
        content:" ";
        width:10px;
        height:10px;
        position:absolute;
        border :0px solid #16ad5c;
        transition:all 1s;
        }
      &:after{
        top:-1px;
        left:-1px;
        border-top:5px solid black;
        border-left:5px solid black;
      }
      &:before{
        bottom:-1px;
        right:-1px;
        border-bottom:5px solid black;
        border-right:5px solid black;
      }
      &:hover{
        border-top-right-radius:0px;
      border-bottom-left-radius:0px;
        /* // background:rgba(0,0,0,.5);
        // color:white; */
        &:before,&:after{
          
          width:100%;
          height:100%;
          /* // border-color:white; */
        }
      }
    }

    /* new edit */
/* From Uiverse.io by MuhammadHasann */ 
button.new {
  position: relative;
  padding: 12px 45px;
  background: linear-gradient(
    85deg,
    #04460b,
  #04460b,
   #04460b,
  #04460b,
  #04460b
  );
  background-size: 200% 200%;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid#04460b;
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

/* ICON 1 */
.icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
  animation: slay-1 2.5s cubic-bezier(0.52, 0, 0.58, 1) infinite;
}

@keyframes slay-1 {
  0% { transform: rotate(10deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(10deg); }
}

/* ICON 2 */
.icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
}

@keyframes slay-2 {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
  100% { transform: rotate(0); }
}

/* ICON 3 */
.icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
}

@keyframes slay-3 {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(0); }
}

button .fil0 {
  fill: #d4af37 !important;
}



    /* new edit */



/* middle container */
/* --- General Setup --- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f9f9f9;
}


/* --- Main Scrollytelling Section --- */
.scrolly-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* 50/50 split */
  gap: 3rem;
  padding: 10rem 2rem;
}

/* --- Column 1: Sticky Image --- */
.sticky-image-column {
  /* This column just holds the wrapper */
}

.image-wrapper {
  position: sticky; /* THIS IS THE CORE OF THE EFFECT */
  top: 10vh; /* Stick 15% from the top of the viewport */
  width: 100%;
  height: 75vh; /* Give it a fixed height */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the wrapper nicely */
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Column 2: Scrolling Text --- */
.scrolling-text-column {
  /* This column will scroll naturally */
}

.feature-step {
  min-height: 1vh; /* CRITICAL: Gives space for scrolling */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 1rem; /* Space between steps */
  
  /* The "fade" effect */
  opacity: 0.3;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: scale(0.98);
}

/* This class will be added by JavaScript */
.feature-step.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-text-h3 {
  font-size: 1.75rem;
  color: #04460b; /* Eart-tone color from your image */
  margin-bottom: 1rem;
}

.info-text-p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  padding: 0; /* Override old padding */
}

/* --- Mobile / Responsive --- */
/* --- Mobile / Responsive --- */
@media (max-width: 900px) {

  .scrolly-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    background-color: #fdfdfd; /* A very clean background */
  }

  .image-wrapper {
    position: relative;
    top: auto;
    height: 40vh; /* Give the image good presence */
    width: 100%;
    margin-bottom: 2rem;
  }
  
  /* --- The New "Content Focus" Style --- */

  .feature-step {
    /* All cards are visible, no opacity/transform */
    opacity: 1; 
    transform: scale(1);
    
    /* Basic card styling */
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 2rem;
    
    /* We transition the shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03); /* Subtle base shadow */
    transition: box-shadow 0.4s ease-out;
  }
  
  .feature-step .info-text-h3 {
    font-size: 1.5rem;
    color: #04460b; /* Title is always strong */
    margin-bottom: 1rem;
    
    /* Prepare for the underline animation */
    position: relative;
    display: inline-block; /* Allows ::after to be positioned */
  }
  
  /* The "highlighter" underline */
  .feature-step .info-text-h3::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Position 5px below the text */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8D6E63; /* Earth-tone color from your image */
    
    /* Start with it "scaled" to 0 width */
    transform: scaleX(0);
    transform-origin: left; /* Animate from left to right */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* A smooth ease */
  }

  .feature-step .info-text-p {
    font-size: 1rem;
    line-height: 1.7;
    
    /* This is the key: dimmed text */
    color: #aaa;
    
    /* Animate the color change */
    transition: color 0.5s ease-out;
  }

  /* --- The "Active" State --- */
  
  .feature-step.active {
    /* Add a stronger, "lifted" shadow */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  
  /* Animate the paragraph color to full */
  .feature-step.active .info-text-p {
    color: #333; /* Full, readable black */
  }
  
  /* Animate the "highlighter" in */
  .feature-step.active .info-text-h3::after {
    transform: scaleX(1); /* Scale width to 100% */
  }
}



/* bottom container */

.bottom-container{
text-align: center;
}

.purchase_heading{
 padding-bottom: 8rem;
}

.product {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px auto;
  width: 400px;
  height: 550px;
  background: white;
  border-radius: 75px;
  background-image: "url(../images/logo_bg_removed.png)";

  /* font-size: 20px;
  font-weight: lighter; */
  /* letter-spacing: 2px; */
}



.salt_img{
position: relative;

}
.img_100g{
  width: 60%;
  margin-bottom: 50%;
}
.img_250g{
  width: 80%;
  margin-bottom: 70%;
}
.img_500g{
  width: 100%;
  margin-bottom: 90%;
}
.buy_btn{
  position: absolute;
  margin-top: 25rem;
}
.buy_text{
  position: absolute;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: 12rem;
}

/* end container */
.end-container{
  margin-top: 5rem;
  background-color:#F3F8FF;
  text-align: center;
}
.grow{
  text-decoration: none;
  color: black;
  margin: 0 2rem 0 1rem;
  padding-top: 1rem;
  font-size: 10rem;
  size: 3rem;
}
.grow:hover{
  color:grey;
}
.footer_rights{
  margin-bottom: 0rem;
  padding-right: 0rem;
}






/* review container */
.review-container{
  background-color: #305126;
  height: 29rem;
  
}

/* .review_img{
  border-radius: 50%;

  overflow: hidden;
  object-fit: cover; 
  width: 5%;

  margin: auto;
} */
.review_main{
text-align: center;

height: 100%;

}
.review_main_second{

 padding-left: 10%;
 padding-right: 10%;
padding-top: 4rem;

}
.review_text_div{
}
.review_text_div h1{
  font-size: 3.5rem;
  padding-bottom: 2rem;
  color: white;
}
.review_text_div p{
  font-size: 1.4rem;
  color: white
}


/* whatsapp container  */


.whatsapp-float {
  position: fixed;

  bottom: 3rem; /* Distance from the bottom */
  right: 1.5rem;  /* Distance from the right */
  z-index: 1000; /* Ensures it stays above other content */
  color: #25d366; /* WhatsApp green color */
  text-decoration: none; /* Removes underline */
  border-radius: 50%; /* Makes it circular */
  background: white; /* Background color for better visibility */
  padding: 20px;
  transition: transform 0.2s ease-in-out; /* Smooth hover effect */
  background: none;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* ai container */
.whatsapp-float-ai {
  position: fixed;
  bottom: 12rem; /* Distance from the bottom */
  right: 1.5rem;  /* Distance from the right */
  z-index: 1000; /* Ensures it stays above other content */
  text-decoration: none;
  padding: 20px;
  text-align: center;
}

.whatsapp-float-ai h3{
font-style: italic;
}

.whatsapp-icon-ai {
  width: 5rem;  /* Adjust size as needed */
  height: 5rem;
  border-radius: 50%; /* Makes it circular */
  cursor: pointer;
  transition: transform 0.2s ease-in-out; /* Smooth animation on hover */
}

.whatsapp-icon-ai:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}




/* contact us page code */

.text{
padding-bottom: 3rem;
margin-top: 3rem;
padding-top: 1rem;
align-items: center;
}
.form_contact{
text-align: center;
padding-top: 4rem;
padding-left: 40rem;

}
.contact_text{
  text-align: center;
  padding-bottom: 1.5rem;
  /* font-size: 1.2rem; */
}



.contact_detail{
background-color: rgb(236, 231, 231);
padding-top: 1rem;
padding-bottom: 1rem;
padding-right: 2rem;
/* margin-left: 10rem;
margin-top: 1rem;
margin-right:3rem ; */ 
margin:1rem 4rem auto 4rem ;
border-radius: 20px;
padding-left: 2rem;
}
@media(max-width:1250px){
  .contact_detail{
    margin:1rem 1rem auto 1rem ;
  }
  }
.contact_list_item{
padding-top: 0.8rem;
font-size:1.2rem ;
}
.submit_btn{
margin-top: 2rem;
margin-bottom: 10rem;

}
.contact_form{
  margin-left: 4rem;
  margin-right: 4rem;
}
.asterisk_required{
  text-align: left;
  padding-top: 2rem;
}
/* other details container */
.address_details{
  text-align: center;
  margin-bottom: 3rem;
}
.address_details_heading{
  margin-bottom: 3rem;
}
.addredd_detail_items{
  margin-bottom: 2rem;
}




/* contact us success page code */

.contact_success{
  text-align: center;
  padding-top: 4rem;
}


/* saltify ai page code  */

     /* Centered Container */
     .ai_detail {
      max-width: 800px;
      margin: 40px auto;
      padding-left: 4rem;
      padding: 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.8);
      border: 2px solid #3e8e41;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    
  
  }

  .ai_detail:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(48, 81, 38, 0.2);
  }

  /* Decorative Elements */


  .ai_detail::before {
      top: -40px;
      left: -40px;
  }

  .ai_detail::after { 
      bottom: -40px;
      right: -40px;
  }

  .ai_detail:hover::before,
  .ai_detail:hover::after {
      transform: scale(1.3);
      opacity: 0.7;
  }

  /* Header */
  .ai_detail h1 {
      font-size: 2.8rem;    
      color: #2d6a4f;
      text-align: center;
      margin-bottom: 15px;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #2d6a4f, #40916c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeInUp 1.2s ease;
  }

  /* Paragraph */
  .ai_detail p {
      font-size: 1.2rem;
      color: #3b5a3a;
      text-align: center;
      line-height: 1.6;
      margin-bottom: 30px;
      animation: slideIn 1s ease;
  }

  /* Intro Section */
  .intro-text {
      font-size: 1.1rem;
      color: #34495e;
      text-align: center;
      margin-top: 20px;
      background: rgba(48, 81, 38, 0.1);
      padding: 20px;
      border-radius: 10px;
      animation: fadeInUp 1.5s ease;
  }

  /* Input Form */
  .ai_form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      padding-top: 20px;
      animation: fadeIn 1.5s ease;
  }

  .ai_form .form-control {
      width: 100%;
      font-size: 1rem;
      padding: 12px 15px;
      border: 2px solid #3e8e41;
      border-radius: 30px;
      background: #f1f8fc;
      box-shadow: inset 0 4px 8px rgba(48, 81, 38, 0.15);
      outline: none;
      color: #305126;
      transition: all 0.3s ease-in-out;
  }

  form .form-control:focus {
      background: #f4f7f2;
      box-shadow: 0 0 12px rgba(48, 81, 38, 0.4);
      transform: scale(1.02);
  }

  /* Submit Button */
  button.submit_btn_ai {
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      background: linear-gradient(to right, #3e8e41, #4a6b44);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 8px rgba(48, 81, 38, 0.3);
  }

  button.submit_btn_ai:hover {
      background: linear-gradient(to left, #3e8e41, #4a6b44);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 12px rgba(48, 81, 38, 0.5);
  }

  /* Output Section */
  #output {
      margin-top: 30px;
      font-size: 1.1rem;
      color: #305126;
      text-align: center;
  }

  #output p {
      background: #f0f9f1;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #305126;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      color: #305126;
      transition: transform 0.3s ease-in-out;
  }

  #output p:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  }

  /* Loader */
  #loader {
      display: none;
      text-align: center;
      margin-top: 20px;
  }

  #loader img {
      width: 50px;
      height: 50px;
  }

  /* Animations */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .ai_detail h1 {
          font-size: 2rem;
      }

      .ai_detail p {
          font-size: 1rem;
      }

      form .form-control {
          font-size: 0.9rem;
      }

      button.submit_btn_ai {
          font-size: 0.9rem;
      }
  }










