  /* Container and Grid */
  
#dips_heading {
  text-align: center;
  
  font-size: 25px;
  color:black;
  margin-top: 2px;
}
/* Content container */


#fruitpulp_heading {
  text-align: center;
  
  font-size: 25px;
  color:black;
  margin-top: 2px;
}

.swiper {
  width: 100%;
  max-width: 1400px;
  margin: 10px auto 10vh auto;
  padding: 12px;
 
  box-sizing: border-box;
  padding-bottom: 50px;
  position: relative;
}

.swiper-wrapper {
  box-sizing: border-box;
}

/* Each slide */
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border-radius: 16px;
  cursor: pointer;
  height: auto;
  padding: 10px;
  transition: transform 0.4s ease-in-out;
}

/* Hover effect */
.swiper-slide:hover {
  transform: scale(1.05);
}

.swiper-slide.active-slide {
  transform: scale(1.2);
  z-index: 2;
}

/* Profile wrapper */
.profile-pic {
  width: 100%;
  aspect-ratio: 4 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

/* Image inside */
.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Use cover for full fill, or 'contain' if you prefer */
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

/* Slide title */
.swiper-slide h1 {
  padding: 11px;
  text-align: center;
  font-size: 14px;
  color: black;
  transition: color 0.3s ease-in;
}

.swiper-slide h1:hover {
  color: rgb(146, 21, 21);
}

/* Overlay on image */
.profile-pic .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 0 0 16px 16px;
}

.profile-pic:hover .overlay {
  opacity: 1;
  transform: translateY(0%);
}
.crad_overlay_heading {
  color:white;
  font-weight: bold;
  font-size: 18px;
 text-align: center;
  padding: 15px;
  border-radius: 11px;
 
}
.profile-pic .overlay h1 {
  color: white;
  font-size: 14px;
  background: #c95a5a;
  padding: 9px;
  border-radius: 11px;
  transition: background 0.3s;
}

.profile-pic .overlay h1:hover {
  background: #e64a19;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  background: none;
}
.swiper-button-next,
.swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
  /* background-color: rgba(255, 255, 255, 0.363); */
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px !important;
}

/* Pagination active */
.swiper-pagination-bullet-active {
  background: #466af3;
}

/* RESPONSIVE STYLES */

@media (max-width: 1024px) {
  .swiper {
    padding: 8px;
    margin-bottom: 8vh;
  }

  .profile-pic {
    aspect-ratio: 4 / 4;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .swiper {
    padding: 6px;
  }

  .swiper-slide {
    padding: 6px;
  }

  .profile-pic {
    width: 90%;
    aspect-ratio: 3 / 3;
    margin: 0 auto;
  }

  .profile-pic img {
    object-fit: cover;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    padding: 4px;
  }

  .profile-pic {
    width: 95%;
    aspect-ratio: 4 / 4;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 24px;
    height: 24px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 13px;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 20px;
}

/* Swiper container */
.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Slide styling */
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.swiper-slide:hover {
  transform: scale(1.05);
}

/* Active content container */
.active-content {
  display: none;
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.active-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Image styling */
.active-content .content-image {
  flex: 1 1 300px;
  max-width: 100%;
  text-align: center;
}

.active-content .content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Table styling */
.active-content .content-table {
  flex: 2 1 400px;
  overflow-x: auto;
}

.active-content .content-table table {
  width: 100%;
  border-collapse: collapse;
}

.active-content .content-table th,
.active-content .content-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.active-content .content-table th {
  background-color: #f2f2f2;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .active-content {
    flex-direction: column;
    align-items: center;
  }

  .active-content .content-image,
  .active-content .content-table {
    flex: 1 1 100%;
  }
}



/*================home card section end ===*/
/* General Styles */

.discover__grid {
  margin-top: -6rem;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 22px;
}

.discover__card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  width: 1400px;

  border-radius: 12px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.308);
  flex-wrap: wrap;
}

.image-wrapper {
  flex: 1;
  min-width: 300px;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.discover__card__content {
  flex: 1;
  padding: 1rem;
}
.view-details-btn{
  border: 2px solid red;

  margin:12px auto 0 auto;
}
.view-details-btn:hover{
  
 background-color: #cc000095;
  border: none;
}

.discover__card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.discover__card__content p {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.discover__card:nth-child(2),
.discover__card:nth-child(4) {
  flex-direction: row-reverse;
  text-align: left;
}

.discover__card:nth-child(2) .discover__card__content,
.discover__card:nth-child(4) .discover__card__content {
  text-align: left;
}

@media (max-width: 768px) {
  .discover__card {
    flex-direction: column;
    text-align: center;
  }

  .discover__card:nth-child(2),
  .discover__card:nth-child(4) {
    flex-direction: column;
  }

  .discover__card__content p {
    text-align: justify;
    max-width: 100%;
  }

  .image-wrapper {
    width: 100%;
    min-height: 300px;
  }
  .discover__card__content p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: var(--text-light);
 
}
}



  /* Container for the content section */
/* Content container */
.content-section {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
  position: relative;
}

/* Main heading inside content-section */
.main-heading {
  color: black;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
}

/* Wrapper layout */
.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom:32px;
  margin-top: -25px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 32px;
}

/* Image styling */
.image-section img {
  max-width: 470px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Table wrapper */
.table-section {
  width: 420px;
  max-width: 100%;
}

/* Table styling */
#content-table {
  width: 100%;
 
  border: 2px solid white;
  border-radius: 16px;
  overflow: hidden;
  background-clip: padding-box;
  border-spacing: 0;
}

/* Force border-radius to work */
.table-section {
  overflow: hidden;
  border-radius: 16px;
}

/* Table Headings */
.Nutrient_heading {
  color: black;
  text-align: center;
  margin: 12px 0;
  font-size:17px;
}

/* Table header */
#content-table tr.table-mainheading {
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
}

/* Still keep individual th styles */
#content-table th {
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white !important;
 
}
/* Table cells */
#content-table td {
  color: black;
  padding:6px;
  text-align: center;

  border-left: 2px solid white;
}
.fruitjuice_conent_table td{/* td height for fruit_juices table only */
   padding:10px !important;
}

/* Remove left border for first column */
#content-table th:first-child {
  border-left: none;
 
}
#content-table td:first-child {
  border-left: none;
}

/* Remove border from entire row (if added elsewhere) */
#content-table tr {
  border: none;
}

/* Close button  #a0522d */
.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
 background: none;
  color:black;
  font-size:30px;
  border: none;
  width: 30px;
  height:37px;
  border-radius: 30%;
  cursor: pointer;
  font-weight:300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #cc0000;
  color:white;
}



 /* for temporary launching section only */

    .launching_soon{
      height: 80vh;
      display:flex;
      justify-content: center;
      align-items: center;

    }

    .launching_soon img{
      max-height: 70vh;
      width: 35vw;
      object-position: center;
      /* object-fit: contain; */



    }


