.product-sec{
    padding: 40px 0px;

}
.product-grid{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap:20px;

}

.medical-card{
    width: 300px;
    height: 100px;
    
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0px 0px 8px ;
    overflow:hidden;
    transition:all 0.3s ease;
    border-radius:10px;
    
    

}
.medical-card:before{
    content:"";
    position:absolute;
    background-color:#fa0d33;
    width:100%;
    height:100%;
    z-index:1;
    transform:translate(-95%,100%);
    transition:all 0.2s ease;
    opacity:1;
    
}
.medical-card:hover:before{
     transform:translate(-95%,0%)
}

.medical-card img{
    position: absolute;
    object-fit:cover;
    height: 100%;
    width:100%;
    z-index: -1;
    opacity: 0.8;
}
.medical-card h1{
    text-transform:uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
    /* border:1px solid; */
    z-index:2;
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
}



/* single product Hepbrown */
.why-hepbrown {
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background-color: white;
      position: relative;
  height:400px;
    }
.main-circle{
  content:"";
  position:absolute;
  border-bottom:3px solid #FE7743;
  border-radius:50%;
  width:900px;
  height:300px;
  left:50%;
  top:50%;
  transform:translate(-50% ,-50%);
}

    .why-hepbrown h2 {
      font-size: 3rem;
      margin-bottom: 0.3rem;
      font-weight:900;
      font-family:arial;
      filter: drop-shadow(0px 0px 0px);
    }

    .why-hepbrown h2 .highlight {
      color: #bb3535; 
      font-weight: bold;
      display: block;
    }

    .why-hepbrown h2 .subtle {
      color: #8b8b8b;
      font-weight: bold;
    }

    .why-hepbrown p {
      max-width: 600px;
      margin: 10px auto;
      color: #FE7743;
      line-height: 1.6;
      font-size: 1rem;
    }

    /* Circles */


    /* Responsive */
    @media (max-width: 600px) {
      .why-hepbrown h2 {
        font-size: 2rem;
      }
      .why-hepbrown p {
        font-size: 0.95rem;
      }
      .main-circle{
  content:"";
  position:absolute;
  border-bottom:3px solid #FE7743;
  border-radius:50%;
  width:500px;
  height:300px;
  left:50%;
  top:50%;
  transform:translate(-50% ,-50%);
}
    }


    .product-detail {
  padding: 40px 20px;


}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  background-color: #ffffff; /* deep red */
  color: rgb(59, 59, 59);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0px 0px 10px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card i {
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
  color: #FE7743;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.product-card p {
  font-size: 0.95rem;
  margin: 0;
}
/* single product Hepbrown */

.product-indication{
    max-width:1200px ;
    margin: 0 auto;
    padding: 20px 20px 0px 20px;
}

.product-indication .indication{
    width: 100%;
    min-height: 230px;
    background-color: #FE7743;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
}

.product-indication .indication .indication-detail{
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.product-indication .indication .indication-detail h1{
    text-transform: uppercase;
    /* color: #bb3535; */
    color: white;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.3rem;
}
.product-indication .indication .indication-detail ul{
    list-style: disc;
    color: rgb(255, 255, 255);
    font-size: 20px;
    padding: 0px 0px 0px 20px;
}
/* .product-indication .indication .indication-detail ul li{

} */



.product-indication .indication .indi-img img{
    width: 300px;
    position: relative;
    /* right: -200px; */
}
.product-indication .indication .indi-img{
    position: relative;
    display: grid;
    place-items: center;
    margin: 10px;
    /* width: 400px;
    height: 400px; */
}

/* .product-indication .indication .indi-img::before{
    content: ""; 
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid #bb3535;

    border-radius: 50%;
    top:0;
    z-index: 1;
}
.product-indication .indication .indi-img::after{
    content: ""; 
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #bb3535;
    border-radius: 50%;
    top:180px;
    z-index: 1;
    left: -25px;
} */

@media (max-width: 730px){
.product-indication .indication{

    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column-reverse;
}
.product-indication .indication .indi-img{
    position: relative;
    display: grid;
    place-items: center;
    margin: 10px;
    width: 400px;
    height: 400px;
    top: -50px;
}
.product-indication .indication .indi-img::after{
    
    
    top:375px;
    z-index: 1;
    
    left: 180px;
}
.product-indication .indication .indication-detail{
    margin-top: -30px;
}

}

.benefits-section {
  background: #fcfcfc;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bene-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.benefits-section .title {
  font-size: 28px;
  color: #d94b1a;
  margin-bottom: 30px;
  position: relative;
}

.benefits-section .title::after{
content: '';
height: 5px;
width: 50px;
position: absolute;
bottom: 0;
left: 0;
background-color: #d94b1a;
transition: all 0.2s ease;
}
.benefits-section:hover .title::after{

width: 200px;
}




.benefits-section .title span {
  color: #333;
  font-weight: 500;
}

.benefits-section .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-section .benefits-list li {
  background: #fff;
  border-left: 5px solid #d94b1a;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.315);
  border-radius: 6px;
}

.checkmark {
  color: #d94b1a;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}


@media (max-width: 600px) {
  .title {
    font-size: 22px;
  }

  .benefits-list li {
    font-size: 14px;
    padding: 12px 15px;
  }
}





.mega-menu-item.active > a {
    color: #e76f3b !important;
    font-weight: 700;
}

.mega-submenu li.active > a {
    color: #e76f3b !important;
    font-weight: 700;
}



/* ROOT VARIABLES */
:root{
  --mn-green:#d94b1a;
  --mn-orange:#e76f3b;
  --mn-text:#222;
  --mn-muted:#6b6b6b;
  --mn-bg:#f9fafb;
  --mn-card:#ffffff;
  --mn-radius:14px;
  --mn-shadow:0 8px 20px rgba(0,0,0,0.06);
  font-family: Inter, sans-serif;
}

/* WRAPPER */
.mn-section{max-width:1200px;margin:30px auto;padding:15px;}

/* HERO / TOP SECTION */
.mn-hero{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:20px;
  align-items:center;
}

.mn-hero-card{
  background:#fff;
  border-radius:var(--mn-radius);
  box-shadow:var(--mn-shadow);
  padding:20px;
}

.mn-product-title{
  display:flex;
  align-items:center;
  gap:15px;
}

.mn-logo-box {
    /* width: 90px; */
    height: 90px;
    background: linear-gradient(#e8f5ee, #ffffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mn-green);
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #d9efe2;
    text-align: center;
    padding: 10px;
}

.mn-hero-title{
  margin:0;
  font-size:26px;
  color:var(--mn-green);
}

.mn-tagline{font-size:15px;color:var(--mn-muted);margin-top:4px;}

.mn-hero-img{
  background:white;
  box-shadow:var(--mn-shadow);
  border-radius:var(--mn-radius);
  padding:10px;
}
.mn-hero-img img{width:100%;border-radius:10px;}

/* THREE USECASES */
.mn-usecases{display:flex;gap:12px;margin-top:15px;}
.mn-usecase{
  flex:1;
  background:#fff;
  box-shadow:var(--mn-shadow);
  padding:12px;
  border-radius:12px;
  border-left:6px solid var(--mn-green);
}
.mn-usecase h4{margin:0;font-size:18px;color:var(--mn-green);}
.mn-usecase p{margin:5px 0 0;font-size:14px;color:var(--mn-muted);}

/* TWO COLUMN GRID */
.mn-grid{display:grid;grid-template-columns:1fr 360px;gap:18px;margin-top:25px;}
.mn-card{
  background:white;
  padding:18px;
  border-radius:12px;
  box-shadow:var(--mn-shadow);
}

/* INGREDIENT CARDS */
.mn-ing-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px;}
.mn-ing{
  flex:1;
  min-width:200px;
  border:1px dashed #d5e9da;
  padding:12px;
  border-radius:10px;
}
.mn-ing h5{margin:0 0 6px;color:var(--mn-green);}

/* TABS */
.mn-tabs{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap;}
.mn-tab{
  background:white;
  padding:8px 14px;
  border:1px solid #ddd;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
}
.mn-tab.mn-active{
  background:var(--mn-green);
  color:white;
  border-color:var(--mn-green);
}

.mn-tab-content{margin-top:10px;}
.mn-tab-content.hidden{display:none;}

/* INDICATION LIST */
.mn-ind ul{padding-left:18px;margin:8px 0;color:var(--mn-muted);font-size:15px;}
.mn-ind li{margin-bottom:4px;}

/* SIMPLE RESPONSIVE */
@media(max-width:900px){
  .mn-hero, .mn-grid{grid-template-columns:1fr;}
  .mn-usecases{flex-direction:column;}
}
