@import url('https://fonts.googleapis.com/css2?family=Faustina:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap');
:root {

    --primary-red: #EE3147;
    --primary-blue: #0F5896;
    --primary-green: #74C15C;
  /*    --header-gradient: linear-gradient(*/
  /*  90deg,*/
  /*  rgba(238, 49, 71, 1) 12%,*/
  /*  rgba(15, 88, 150, 1) 50%,*/
  /*  rgba(116, 193, 92, 1) 100%*/
  /*);*/
    --header-gradient: linear-gradient(
      90deg,
      rgba(238, 49, 71, 0.25) 12%,   /* 25% opacity */
      rgba(15, 88, 150, 0.25) 50%,
      rgba(116, 193, 92, 0.25) 100%
  );
    --gradient-red-blue: linear-gradient(135deg, var(--primary-red), var(--primary-blue));

    --gradient-blue-green: linear-gradient(180deg, var(--primary-blue), var(--primary-green));

    --gradient-green-red: linear-gradient(45deg, var(--primary-green) 0%, var(--primary-red) 100%);

    --gradient-tricolor: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-blue) 50%, var(--primary-green) 100%);
    --padding-horizontal: 5rem;
    --header-height: 62px;
    --pointer: url('../assets/pointinghand.svg') 4 4, auto;
     --fs-16: 1rem;      /* 16px */
     --fs-24: 1.5rem;    /* 24px */
     --fs-32: 2rem;      /* 32px */
     --fs-40: 2.5rem;    /* 40px */
     --fs-48: 3rem;      /* 48px */
     --font-fira:"Fira Sans", sans-serif;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanBoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanLightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanSemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanThin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/CenturyGothicPaneuropeanThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 2;
}

body {
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  font-family: "Fira Sans", Arial, sans-serif;
  cursor: url('../assets/cursor.svg') 4 4, auto;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader img {
  width: 220px;
  height: auto;
}

.vivere-button {
  background-color: white;
  color: var(--primary-red);
  padding: 10px 20px;
  border: none;
  cursor: var(--pointer);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--primary-red);
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  width: fit-content;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.vivere-button:hover {
  color: white;
  text-decoration: none;
}

.vivere-button-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  background-color: var(--primary-red);
  border-radius: 999px;
  transition: transform 0.5s ease-in-out, scale 0.3s ease-in-out;
  scale: 1;
  z-index: 0;
}

.vivere-button-text {
  position: relative;
  z-index: 1;
  color: var(--primary-red);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.vivere-button:hover .vivere-button-slider {
  transform: translateX(0);
  scale: 1.2;
}

.vivere-button:hover .vivere-button-text {
  color: white;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-red-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
 
  padding: 8rem 4rem;
  padding-left: 7.3rem;
  position: relative;
  overflow: visible;
  margin-top: var(--header-height);
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-family: "Faustina", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Centered hero variant — used on the MRI category page */
.hero--center {
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  background-position: center;
}

.hero--center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 44, 0.78), rgba(7, 19, 38, 0.82));
  z-index: 0;
}

.hero--center .hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 28px rgba(0, 0, 0, 0.45);
}

.hero--center h1 {
  font-family: var(--font-fira);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.hero--center .tagline {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0;
}

.hero-card {
  width: 300px;
  background: #fff;
  border-radius: 1rem;
  /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);*/
  /*box-shadow: 0 8px 24px rgba(15, 88, 150, 0.2);*/
  overflow: visible;
 box-shadow: 0 4px 12px -2px #0F5896;




  padding: 1rem;
  position: absolute;
  right: 8%;
  top: 82%;
  transform: translateY(-50%);
  overflow: hidden;
  text-align: center;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.draw {
    transition: color 0.25s;

  &::before,
  &::after {
    border: 2px solid transparent;
    width: 0;
    height: 0;
  }

  
  &::before {
    top: 0;
    left: 0;
  }

  &::after {
    bottom: 0;
    right: 0;
  }
  

  &:hover::before,
  &:hover::after {
    width: 100%;
    height: 100%;
  }

  &:hover::before {
    border-top-color: var(--header-gradient); 
    border-right-color:var(--header-gradient);
    transition:
      width 0.25s ease-out, 
      height 0.25s ease-out 0.25s; 
  }

  &:hover::after {
    border-bottom-color: var(--header-gradient); 
    border-left-color: var(--header-gradient);
    transition:
      border-color 0s ease-out 0.5s, 
      width 0.25s ease-out 0.5s,
      height 0.25s ease-out 0.75s;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    height: 50vh;
    
    justify-content: center;
  }

  .hero-content {
    max-width: 70%;
    margin-bottom: 1.5rem;
  }

  .hero-card {
    position: absolute;
    right: 7%;
    bottom: -50%;
    transform: translateY(-20%);
    margin: 0 auto;
    width: 40%;
    height: 160px;
    max-width: 320px;
    
  }

  .hero-card img {
    width: 100%;
    height: 100%;
    display: block;
  }
}

/* Base floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 30px;             /* default: left corner */
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none !important;
  z-index: 9999;
  transition: all 0.4s ease;
}

/* WhatsApp icon */
.whatsapp-icon {
  background-color: white;
  color: #25d366;
  font-size: 30px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: none; /*hide  on desktop and mobile */
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* Text bubble (hidden by default) */
.whatsapp-text {
  background-color: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  margin-left: 10px;      /* text appears to right of icon (default) */
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;   /* prevents blocking clicks */
  position: relative;
  text-decoration: none !important;
}

/* Arrow (default left side of text bubble) */
.whatsapp-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #25d366;
}

/* Show text bubble on hover */
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

/* ===== When shifted to right side ===== */
.whatsapp-float.shift-right {
  left: auto;
  right: 30px;
  flex-direction: row-reverse; /* flip order */
}

.whatsapp-float.shift-right .whatsapp-text {
  margin-left: 0;
  margin-right: 10px; /* text now appears left of icon */
  transform: translateX(10px); /* adjust entry animation */
}

.whatsapp-float.shift-right:hover .whatsapp-text {
  transform: translateX(0);
}

/* Flip arrow to other side */
.whatsapp-float.shift-right .whatsapp-text::before {
  left: auto;
  right: -4px;
  border-right: none;
  border-left: 6px solid #25d366;
}




/* NORMAL STATE — simple light border */
.gradient-shadow {
  border: 1px solid #086bfffa;   /* light visible border */
  border-radius: 20px;         /* adjust shape as you like */
  padding: 20px;
  transition: all 0.3s ease;
  background: #fff;            /* normal white background */
}

.hover11 {
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 3px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #72B63E, #0F5896) border-box;
  transition: all 0.3s ease;
}
.hover11:hover {
  transform: translateY(-5px);

  /* Gradient shadow look */
  box-shadow:
    0 8px 20px rgba(238, 49, 71, 0.35),
    0 8px 30px rgba(15, 88, 150, 0.35);
}
.vivere-card2:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 20px rgba(238, 49, 71, 0.35),
    0 8px 30px rgba(15, 88, 150, 0.35);
}
/* HOVER STATE — gradient border highlight */
.gradient-shadow:hover {
background: linear-gradient(#ffffff, #ffffff) padding-box,
              var(--header-gradient) border-box;

  border: 3px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.gradient-shadow-border {
  position: relative;
  z-index: 1; /* Ensure it's above the ::after */
  border-radius: 20px; /* Adjust as needed */
  overflow: hidden;
  
}

.gradient-shadow-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 200%;
  width: 200%;
  /*background-image: conic-gradient(   rgba(238, 49, 71, 0.25), rgba(15, 88, 150, 0.25), rgba(116, 193, 92, 0.25),rgba(238, 49, 71, 0.25));*/
  background-image: conic-gradient(#EE3147, #0F5896, #74C15C,#EE3147);

  z-index: -10;
  animation: rotateBorder 2s linear infinite;
  transform: translate(-25%, -25%);
  border-radius: 50%;
  filter: blur(10px); /* Optional: for glow effect */
}

@keyframes rotateBorder {
  from {
    transform: translate(-25%, -25%) rotate(0deg);
  }
  to {
    transform: translate(-25%, -25%) rotate(360deg);
  }
}




@media (min-width: 768px) and (max-width: 1200px) {
  .container{
      width: 100% !important;
     
  }
 
}


/* ===== Mobile styles ===== */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
  }

  .whatsapp-text {
    display: none; /* hide text bubble on mobile */
  }

  .whatsapp-icon {
    font-size: 28px;
    height: 56px;
    width: 56px;
    margin: 0;
  }
}






.fertivue-section {
  font-family: "Fira Sans", sans-serif;
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff7fb, #fffdf3);
}

/* ================= HEADER ================= */
.fertivue-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #EE3147, #0F5896) border-box;
  padding: 14px 28px;
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 10px 25px rgba(234,95,139,0.25);
}

.fertivue-header p {
  margin: 0;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: .3px;
}

.fertivue-header .imgg {
  height: 42px;
}

/* ================= GRID ================= */
.fertivue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1150px;
  margin: auto;
}

/* ================= CARD ================= */
.fert-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #EE3147, #0F5896);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.fert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(234,95,139,.08), rgba(243,204,108,.08));
  opacity: 0;
  transition: .3s;
}

.fert-card:hover::before {
  opacity: 1;
}

.fert-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 32px rgba(234,95,139,0.25);
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #EE3147, #0F5896);
}

.fert-card .icon {
  font-size: 26px;
  min-width: 38px;
  text-align: center;
  color: white;
}

.fert-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}

/* ================= FOOTER ================= */
.fertivue-footer {
  margin-top: 60px;
  text-align: center;
}

.fertivue-footer p {
  margin-top: 12px;
  font-weight: 600;
  color: #ea5f8b;
  letter-spacing: .4px;
}

.fertivue-footer .imgg {
  height: 46px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .fertivue-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* icon */
.icon {
  min-width: 40px;
  height: 40px;
  background: #b73b5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


/* ================= FOOTER ================= */
.fertivue-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
  font-weight: 500;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .fertivue-grid {
    grid-template-columns: 1fr;
  }

  .fertivue-header,
  .fertivue-footer {
    flex-direction: column;
    text-align: center;
  }
}





.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-bottom:20px;
}

.custom-table thead {
  background: #154f85;
  color: #fff;
}

.custom-table th,
.custom-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.custom-table tbody tr:nth-child(even) {
  background: #f5f6f8;
}

.custom-table th {
  font-weight: 600;
}

.custom-table td:first-child {
  text-align: center;
  width: 70px;
}

.global {
  text-align: center;
  color:#0F5896;
  font-size: 32px;      /* adjust as needed */
  font-weight: 700;
  margin: 40px;
}
.tagline-icon {
  width: 18px;     /* icon size */
  height: 18px;
  object-fit: contain;
}

.map-container {
  position: relative;
 
  margin: auto;
}

.world-map {
  width: 100%;
  display: block;
}





/* Mobile tweaks */
@media (max-width: 768px) {
  .marker {
    width: 10px;
    height: 10px;
  }

  #tooltip {
    font-size: 12px;
    padding: 5px 8px;
  }
  .imgg{
    width: 6% !important;
    height: 18% !important;
    margin-top:5px;
}
.badge {
        position: absolute !important;
        top: 115% !important;
        left: 10% !important;
        width: 70px !important;
        height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
  .map-container {
    padding: 0 5px;
  }
  
.marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  /* background: #ffffff; */
  padding: 6px 12px;
  border-radius: 20px;
  color: #111;
  font-size: 8px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  /* border: 2px solid #0f5896; */
  z-index: 5;
}

/* .marker.red {
  border: 2px solid #c0392b;
} */

.marker img {
  width: 22px;
  height: auto;
  border-radius: 3px;
}

.marker span {
  text-shadow: none;
}
}
.map-container {
  position: relative;
}

.marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  color: #0f5896;
  font-size: 10px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  /* border: 2px solid #0f5896; */
  z-index: 5;
}
.marker {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: none;
}

.pulse {
  box-shadow: 0 0 0 0 rgba(0,50,125,0.4);
  animation: pulse 1.5s ease-in-out 1;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

.pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -moz-box-shadow: 0 0 0 0 rgba(0,46,164,0.4);
    box-shadow: 0 0 0 0 rgba(0,46,164,0.4);
  }
  50% {
    transform: scale(1.05);
    -moz-box-shadow: 0 0 0 40px rgba(255,0,0,0);
    box-shadow: 0 0 0 40px rgba(255,0,0, 0);
  }
  100% {
    transform: scale(1);
    -moz-box-shadow: 0 0 0 0 rgba(255,0,0, 0);
    box-shadow: 0 0 0 0 rgba(255,0,0, 0);
  }
}

/* .marker.red {
  border: 2px solid #c0392b;
} */

.marker img {
  width: 15px;
  height: auto;
  border-radius: 3px;
}

.marker span {
  text-shadow: none;
}


@media (max-width: 768px) {
/*   
  .marker img {
    width: 16px;
  } */
  
.marker {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 2px;
        transform: translate(-50%, -50%);
        background: #ffffff;
        padding: 6px 3px;
        border-radius: 8px;
        color: black;
        font-size: 5px;
        font-weight: 600;
        font-family: Arial, sans-serif;
        white-space: nowrap;
        /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); */
        /* border: 2px solid #0f5896; */
        z-index: 5;
    }

/* .marker.red {
  border: 2px solid #c0392b;
} */

.marker img {
  width: 5px;
  height: auto;
  border-radius: 3px;
}

.marker span {
  text-shadow: none;
}
.global {
    text-align: center;
    color: #0F5896;
    font-size: 15px;
    font-weight: 700;
    margin: 10px;
}
}
.map-container svg {
    width: 100%;
    height: auto;
}

.country {
    fill: #dcdcdc;
    stroke: #ffffff;
    stroke-width: 0.6;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Default countries */
.country.active-blue {
    fill: #4da3ff;
}

.country.active-red {
    fill: #ff5a5a;
}

/* Hover */
.country:hover {
    fill: #ffd166;
}

/* Tooltip */
#tooltip {
    position: fixed;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    pointer-events: none;
    display: none;
    z-index: 999;
}





.fertivue-hero {
  max-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,#c2185b 0%,#1e3a8a 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

/* container */
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== LEFT ===== */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 20px;
  opacity: .95;
  margin-bottom: 25px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-benefits li {
  margin: 10px 0;
  font-size: 18px;
  position: relative;
  padding-left: 28px;
}

.hero-benefits li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* ===== BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.hero-content {
    max-width: 100%;
}
.btn {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn.primary {
  background: #f59e0b;
  color: #000;
}

.btn.primary:hover {
  background: #ffb020;
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #1e3a8a;
}

.hero-trust {
  font-size: 14px;
  opacity: .8;
}

/* ===== RIGHT IMAGE ===== */
.hero-image {
  position: relative;
  text-align: center;
}

.product-box {
  width: 420px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

/* glowing ring */
.glow {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(30px);
  z-index: 1;
}

/* floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ===== MOBILE ===== */
@media(max-width: 900px){

  .hero-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title{
    font-size: 44px;
  }

  .product-box{
    width: 260px;
    margin-top: 40px;
  }

  .hero-buttons{
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hidden{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

/* SECTION BG */
.clinical-section{
  background:#fff;
  padding:50px 100px;
  font-family:'Poppins',sans-serif;
}

.section-title{
  text-align:center;
  font-size:40px;
  font-weight:700;
  color:#1e3a8a;
  margin-bottom:60px;
}

/* GRID */
.clinical-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 0.8fr 1fr;
  gap:40px;
  align-items:center;
}

/* COLUMN */
.clinical-column h3{
  text-align:center;
  margin-bottom:30px;
  font-size:22px;
  font-weight:700;
}

.problems h3{ color:#b91c1c; }
.solutions h3{ color:#15803d; }

/* ITEMS */
.item{
  display:flex;
  align-items:center;
  gap:15px;
  background:white;
  padding:16px 18px;
  border-radius:12px;
  margin:15px 0;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  transition:.3s;
}

.item:hover{
  transform:translateY(-5px);
}

/* ICONS */
.icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fee2e2;
  color:#b91c1c;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.icon.success{
  background:#dcfce7;
  color:#15803d;
}

/* CENTER IMAGE */
.clinical-image{
  text-align:center;
}

.clinical-image img{
  width:100%;
  max-width:280px;
  animation:pulse 3s infinite ease-in-out;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

/* MOBILE */
@media(max-width:900px){

  .clinical-grid{
    grid-template-columns:1fr;
  }

  .clinical-image{
    order:-1;
    margin-bottom:20px;
  }

  .section-title{
    font-size:28px;
  }
}

/* SECTION BG */
.mechanism-section{
  padding:50px 100px;
  background:linear-gradient(180deg,#ffffff,#eef2ff);
  font-family:'Poppins',sans-serif;
}

.mechanism-container{
  max-width:1200px;
  margin:auto;
}

/* TOP GRID */
.mechanism-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:70px;
}

/* QUOTE */
.quote-box{
  background:#f8fafc;
  padding:30px;
  border-left:6px solid #c2185b;
  border-radius:12px;
  font-size:18px;
  line-height:1.6;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
}

/* STATS */
.stats{
  display:flex;
  gap:40px;
  margin:30px 0;
}

.stat h3{
  font-size:48px;
  color:#c2185b;
  margin:0;
}

.stat span{
  font-size:14px;
  color:#444;
}

/* PRODUCT */
.mechanism-product{
  text-align:center;
}

.mechanism-product img{
  width:250px;
  animation:float 5s ease-in-out infinite;
}

/* STEPS */
.steps{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.step{
  text-align:center;
  max-width:140px;
}

.circle{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#c2185b,#1e3a8a);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:bold;
  margin:auto;
  margin-bottom:12px;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.arrow{
  font-size:26px;
  color:#999;
}

/* MOBILE */
@media(max-width:900px){

  .mechanism-top{
    grid-template-columns:1fr;
    text-align:center;
  }

  .stats{
    justify-content:center;
  }

  .arrow{
    display:none;
  }
}

/* SECTION BG */
.advantages-section{
  padding:50px 100px;
  background:#ffffff;
  font-family:'Poppins',sans-serif;
}

.advantages-container{
  max-width:1200px;
  margin:auto;
}

/* GRID */
.advantages-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:50px;
}

/* CARD BASE */
.adv-card{
  padding:30px 20px;
  border-radius:16px;
  color:white;
  text-align:center;
  min-height:100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:.35s;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.adv-card h4{
  font-size:16px;
  font-weight:600;
  margin-top:12px;
}

.icon{
  font-size:32px;
}

/* GRADIENT COLORS */
.c1{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c2{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c3{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c4{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c5{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c6{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c7{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }
.c8{ background: linear-gradient(135deg, #c2185b, #1e3a8a); }

/* HOVER EFFECT */
.adv-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top, rgba(255,255,255,.4), transparent 60%);
  opacity:0;
  transition:.4s;
}

.adv-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 35px rgba(0,0,0,.18);
}

.adv-card:hover:before{
  opacity:1;
}

/* MOBILE */
@media(max-width:1000px){
  .advantages-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .advantages-grid{
    grid-template-columns:1fr;
  }
}

/* =========================
   MOBILE HERO (MAX 600px)
   ========================= */

@media (max-width:600px){

  .fertivue-hero{
    padding: 100px 18px 40px;
    max-height: 103vh;
    min-height: auto;
    text-align:center;
  }

  .hero-container{
    grid-template-columns:1fr;
    gap:20px;
  }
  .hero-content{
    margin-bottom:0%;
  }
  .section-title{
    font-size:28px !important;
  }
  .clinical-section {
    background: #fff;
    padding: 50px 50px;
    font-family: 'Poppins', sans-serif;
}
.mechanism-section {
    padding: 50px 50px;
    background: linear-gradient(180deg, #ffffff, #eef2ff);
    font-family: 'Poppins', sans-serif;
}
.advantages-section {
    padding: 50px 50px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}
.adv-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 12px;
}
  /* TITLE */
  .hero-title{
    font-size:34px;
    letter-spacing:1px;
    margin-bottom:6px;
  }

  .hero-subtitle{
    font-size:15px;
    line-height:1.4;
    margin-bottom:18px;
  }

  /* BENEFITS */
  .hero-benefits{
    margin-bottom:18px;
  }

  .hero-benefits li{
    font-size:15px;
    padding-left:0;
    text-align:left;
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:center;
  }

  .hero-benefits li:before{
    position:static;
    font-size:16px;
  }

  /* BUTTONS STACK */
  .hero-buttons{
    flex-direction:column;
    gap:12px;
    width:100%;
  }

  .btn{
    width:100%;
    padding:14px;
    font-size:15px;
  }

  .btn.primary{
    border-radius:10px;
  }

  .btn.secondary{
    border-radius:10px;
  }

  .hero-trust{
    font-size:13px;
    margin-top:12px;
  }

  /* PRODUCT IMAGE */
  .hero-image{
    order:2;
    /* margin-top:25px; */
  }

  .product-box{
    width:210px;
    margin:auto;
    animation:none; /* remove float on mobile */
  }

  .glow{
    width:260px;
    height:260px;
    filter:blur(20px);
  }

}

