*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#0f9bc6;
  --secondary:#f5a021;
  --dark:#39465f;
  --text:#4b5563;
  --border:#e8edf3;
  --light:#f7f8fa;
  --white:#ffffff;
  --pink:#fff4f8;
}

body{
  font-family:"DM Sans", serif;
  overflow-x:hidden;
}

/* TOPBAR */
.topbar{
  width:100%;
  background:var(--dark);
  color:#fff;
  font-family:'Poppins',sans-serif;
  font-size:13px;
}

.topbar-inner{
  max-width:1360px;
  margin:auto;
  padding:8px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.topbar span,
.topbar a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:500;
      font-family: math;
}

.topbar i{
  color:var(--secondary);
}

/* HEADER */
.fert-header{
  width:100%;
  height:90px;
  padding:0 30px;
  background:#fff;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 8px 30px rgba(15,40,60,.06);
}

.fert-logo{
  width:205px;
  height:84px;
  display:flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
}

.fert-logo img{
  width:200px;
  max-height:78px;
  object-fit:contain;
  display:block;
}

/* NAV */
.fert-nav{
  display:flex;
  align-items:center;
  gap:2px;
}

.fert-nav > a,
.nav-trigger{
  height:90px;
  padding:0 11px;
  border:none;
  background:transparent;
  color: var(--text);
 font-family: math;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-transform:capitalize;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:5px;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}

.fert-nav > a:hover,
.nav-trigger:hover,
.nav-item:hover .nav-trigger{
  color:var(--primary);
}

.nav-item{
  position:relative;
}

.nav-trigger i{
  font-size:14px;
  transition:.25s ease;
}

.nav-item:hover .nav-trigger i{
  transform:rotate(180deg);
}

/* ABOUT DROPDOWN */
.nav-dropdown{
  position:absolute;
  top:100%;
  left:50%;
  width:255px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
  transform:translateX(-50%) translateY(14px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  padding:8px;
  z-index:1200;
}

.nav-item:hover .nav-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.nav-dropdown a{
  display:block;
  padding:12px 14px;
  color:var(--text);
  font-family: math;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  border-bottom:1px solid #eef1f5;
  transition:.25s ease;
}

.nav-dropdown a:last-child{
  border-bottom:none;
}

.nav-dropdown a:hover{
      background: #0f9bc6;
    color: white;
  padding-left:18px;
}

/* SERVICES DROPDOWN */
.service-item{
  position:relative;
}

.service-dropdown{
  position:absolute;
  top:100%;
  left:50%;
  width:278px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
  padding:8px;
  transform:translateX(-50%) translateY(14px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:1200;
}

.service-item:hover .service-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.service-category{
  position:relative;
}

.service-category > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 15px;
  color: var(--text);
  font-family: math;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration:none;
  border-bottom:1px solid rgba(128, 128, 128, 0.534);
  transition:.25s ease;
}

.service-category:last-child > a{
  border-bottom:none;
}

.service-category > a span{
  display:flex;
  align-items:center;
}

.service-category > a > i{
  font-size:15px;
  color:#9ca3af;
  transition:.25s ease;
}

.service-category:hover > a{
  background:#0f9bc6;
  color:white;
  padding-left:20px;
}

.service-category:hover > a > i{
  color:var(--primary);
  transform:translateX(3px);
}

/* SIDE SUBMENU (desktop) */
.service-submenu{
  position:absolute;
  top:0;
  left:calc(95% + 10px);
  width:295px;
  max-height:390px;
  overflow-y:auto;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
  padding:8px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateX(12px);
  transition:.25s ease;
  z-index:1300;
}

.service-category:hover .service-submenu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(0);
}

.service-submenu a{
  display:block;
  padding:12px 14px;
  color:var(--text);
  font-family: math;
  font-size:15px;
  font-weight:500;
  line-height:1.25;
  text-decoration:none;
  border-bottom:1px solid rgba(128, 128, 128, 0.534);
  transition:.25s ease;
}

.service-submenu a:last-child{
  border-bottom:none;
}

.service-submenu a:hover{
  background:#0f9bc6;
  color:white;
  padding-left:20px;
}

.service-submenu::-webkit-scrollbar{
  width:4px;
}

.service-submenu::-webkit-scrollbar-thumb{
  background:#d9dee7;
  border-radius:20px;
}

/* RIGHT */
.fert-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.fert-call{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.fert-call-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.fert-call-icon i{
  color:#fff;
  font-size:17px;
}

.fert-call-label{
  font-family: math;
  font-size:17px;
  font-weight:700;
  color:var(--dark);
  line-height:1;
}

.fert-call-num{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  color:var(--primary);
  font-weight:600;
  margin-top:5px;
  line-height:1;
}

.menu-btn,
.mobile-menu-btn{
  width:44px;
  height:44px;
  border:none;
  background:var(--primary);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  flex-shrink:0;
  transition:.25s ease;
}

.menu-btn:hover,
.mobile-menu-btn:hover{
  background:var(--secondary);
}

.menu-btn span,
.mobile-menu-btn span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:10px;
}

.mobile-menu-btn{
  display:none;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0);
  pointer-events:none;
  transition:.35s ease;
  z-index:998;
}

.overlay.visible{
  background:rgba(0,0,0,.55);
  pointer-events:auto;
}

/* SIDE PANEL */
.side-panel{
  position:fixed;
  top:0;
  right:-390px;
  width:370px;
  height:100vh;
  background:#fff;
  z-index:1000;
  transition:.4s ease;
  overflow-y:auto;
  box-shadow:-20px 0 60px rgba(0,0,0,.18);
}

.side-panel.open{
  right:0;
}

.panel-close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border:none;
  background:var(--primary);
  color:#fff;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.panel-inner{
  padding:36px 28px;
}

.panel-logo img{
  width:195px;
  margin-bottom:24px;
}

.panel-tagline{
  font-size:14px;
  line-height:1.8;
  color:var(--text);
  margin-bottom:24px;
}

.panel-section{
  margin-bottom:24px;
}

.panel-section h4{
  font-family:'Outfit',sans-serif;
  color:var(--dark);
  margin-bottom:10px;
  font-size:17px;
  font-weight:700;
}

.panel-section p,
.panel-section a{
  font-size:14px;
  color:var(--text);
  line-height:1.7;
  text-decoration:none;
  display:block;
  margin-bottom:8px;
}

.panel-section a i{
  color:var(--primary);
}

/* MOBILE NAV */
.mobile-nav{
  position:fixed;
  top:0;
  left:-330px;
  width:320px;
  height:100vh;
  background:#fff;
  z-index:1000;
  transition:.4s ease;
  overflow-y:auto;
  box-shadow:20px 0 60px rgba(0,0,0,.16);
}

.mobile-nav.open{
  left:0;
}

.mobile-nav-header{
  height:88px;
  padding:14px 18px;
  border-bottom:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mobile-nav-header img{
  width:165px;
}

.mobile-nav-close{
  width:38px;
  height:38px;
  border:none;
  background:var(--primary);
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mob-nav-link{
  width:100%;
  min-height:52px;
  padding:0 20px;
  border:none;
  border-bottom:1px solid var(--border);
  background:#fff;
  color:var(--dark);
  font-family: math;
  font-size:16px;
  font-weight:500;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.mob-nav-link.open-drop{
  color:var(--primary);
  background:#eef8fb;
}

.mob-nav-link.open-drop i{
  transform:rotate(180deg);
}

.mob-dropdown{
  display:none;
  background:#f7f8fa;
  padding:6px 0;
}

.mob-dropdown.open{
  display:block;
}

.mob-dropdown strong{
  display:block;
  padding:13px 20px 6px;
  color:var(--primary);
  font-family: math;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.mob-dropdown a{
  display:block;
  padding:12px 26px;
  font-family: math;
  color:var(--text);
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  border-bottom:1px solid #e8edf3;
}

.mob-footer{
  padding:18px;
}

.mob-footer a{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--primary);
  text-decoration:none;
  font-family: math;
  font-size:15px;
  font-weight:600;
}

/* MOBILE SERVICE CATEGORY MENU */
.mob-service-categories{
  display:none;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.mob-service-categories.open{
  display:block;
}

.mob-service-cat-btn{
  width:100%;
  min-height:52px;
  padding:0 20px;
  border:none;
  border-bottom:1px solid rgba(128,128,128,.28);
  background:#fff;
  color:var(--text);
  font-family: math;
  font-size:13px;
  font-weight:500;
  line-height:1.25;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  transition:.25s ease;
}

.mob-service-cat-btn:hover{
  background:#0f9bc6;
  color:#fff;
  padding-left:26px;
}

.mob-service-cat-btn i{
  font-size:15px;
}

/* MOBILE SUB PANEL */
.mob-sub-panel{
  position:fixed;
  top:0;
  left:-330px;
  width:320px;
  height:100vh;
  background:#fff;
  z-index:1002;
  overflow-y:auto;
  transition:.35s ease;
  box-shadow:20px 0 60px rgba(0,0,0,.16);
}

.mob-sub-panel.open{
  left:0;
}

.mob-sub-header{
  height:78px;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:14px;
  border-bottom:1px solid var(--border);
  background:#fff;
  position:sticky;
  top:0;
  z-index:5;
}

.mob-back-btn{
  width:40px;
  height:40px;
  border:none;
  border-radius:10px;
  background:#0f9bc6;
  color:#fff;
  display:flex;
  font-family: math;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mob-sub-header h3{
  font-family: math;
  font-size:18px;
  font-weight:600;
  line-height:1.25;
  color:var(--dark);
  margin:0;
}

.mob-sub-list{
  padding:8px 0 35px;
}

.mob-sub-list a{
  display:block;
  padding:12px 22px;
  color:var(--text);
  font-family: math;
  font-size:15px;
  font-weight:500;
  line-height:1.25;
  text-decoration:none;
  border-bottom:1px solid rgba(128,128,128,.28);
  transition:.25s ease;
}

.mob-sub-list a:hover{
  background:#0f9bc6;
  color:#fff;
  padding-left:28px;
}

/* RESPONSIVE */
@media(max-width:1240px){
  .fert-logo{width:185px;}
  .fert-logo img{width:180px;}

  .fert-nav > a,
  .nav-trigger{
    padding:0 8px;
    font-size:13px;
  }
}

@media(max-width:1100px){
  .fert-nav{display:none;}
  .service-dropdown{display:none;}
  .menu-btn{display:none;}
  .mobile-menu-btn{display:flex;}

  .fert-header{
    height:82px;
    padding:0 18px;
  }

  .fert-logo{
    width:190px;
    height:78px;
  }

  .fert-logo img{
    width:185px;
    max-height:74px;
  }
}

@media(max-width:768px){
  .topbar-left{display:none;}

  .topbar-inner{
    justify-content:center;
    padding:8px 14px;
  }
}

@media(max-width:520px){
  .topbar{display:none;}

  .fert-header{height:76px;}

  .fert-logo{width:145px;}

  .fert-logo img{width:140px;}

  .fert-call-label,
  .fert-call-num{
    display:none;
  }

  .fert-call-icon{
    width:40px;
    height:40px;
  }

  .mobile-nav{
    width:295px;
    left:-305px;
  }

  .mobile-nav-header img{
    width:145px;
  }

  .side-panel{
    width:300px;
    right:-320px;
  }

  .mob-sub-panel{
    width:295px;
    left:-305px;
  }
}















/* =========================================
   HERO SECTION 
========================================= */
  .hero-slider {
  width: 100%;
  overflow: hidden;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100%;
  height: auto; /* 80vh hatao */
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: auto; /* image apni natural height le */
  display: block;
}




/* =====================================
 ABOUT SECTION 
===================================== */
.shobha-about-section{
  width:100%;
  background:#fff4f8;
  padding:70px 16px 90px;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.shobha-about-container{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT IMAGES */
.shobha-about-images{
  position:relative;
  min-height:580px;
}

.shobha-main-img,
.shobha-small-img{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  background:#fff;
  isolation:isolate;
  transition:transform .45s ease, box-shadow .45s ease;
}

.shobha-main-img{
  width:420px;
  height:560px;
  border:10px solid #ca0958;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(202,9,88,.16);
}

.shobha-small-img{
  position:absolute;
  width:360px;
  height:260px;
  left:190px;
  bottom:10px;
  border:10px solid #ca0958;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(202,9,88,.16);
}

.shobha-main-img img,
.shobha-small-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .85s cubic-bezier(.22,.61,.36,1), filter .85s ease;
}

.shobha-main-img img{
  object-position:top center;
}

.shobha-small-img img{
  object-position:center;
}

.shobha-main-img::before,
.shobha-small-img::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.18);
  opacity:0;
  z-index:2;
  transition:.3s ease;
  pointer-events:none;
}

.shobha-main-img::after,
.shobha-small-img::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-90%;
  width:45%;
  height:180%;
  background:rgba(255,255,255,.45);
  transform:skewX(-22deg);
  z-index:3;
  transition:left .7s ease;
  pointer-events:none;
}

.shobha-main-img:hover::before,
.shobha-small-img:hover::before{
  opacity:1;
}

.shobha-main-img:hover::after,
.shobha-small-img:hover::after{
  left:130%;
}

.shobha-main-img:hover img,
.shobha-small-img:hover img{
  transform:scale(1.04);
}

.shobha-about-images::after{
  content:"";
  position:absolute;
  top:0;
  right:-35px;
  width:14px;
  height:210px;
  background:#ca0958;
  border-radius:20px;
}

/* RIGHT CONTENT */
.shobha-about-content{
  max-width:610px;
  padding-top:10px;
}

.shobha-about-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#ca0958;
  padding:8px 22px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:2.5px;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(202,9,88,.12);
}

.shobha-about-badge i{
  width:8px;
  height:8px;
  background:#ca0958;
  border-radius:50%;
  display:block;
}

.shobha-about-content h2{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:56px;
  line-height:1.05;
  font-weight:500;
  color:#1f2937;
  margin:0 0 16px;
}

.shobha-about-content h4 {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #111827;
    margin: 0 0 14px;
    font-family: math;
}

.shobha-about-content p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 30px;
    font-family: math;
}

.shobha-about-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}

.shobha-feature-box{
  display:flex;
  align-items:center;
  gap:16px;
}

.shobha-feature-icon{
  width:66px;
  height:66px;
  background:#ca0958;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  outline:1px dashed rgba(202,9,88,.5);
  outline-offset:5px;
  flex-shrink:0;
  box-shadow:0 10px 24px rgba(202,9,88,.22);
}

.shobha-feature-box h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:24px;
  font-weight:500;
  line-height:1.15;
  color:#1f2937;
  margin:0;
}

.shobha-about-list{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}

.shobha-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #454b58;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-family: math;
}


.shobha-about-list li i{
  width:18px;
  height:18px;
  min-width:18px;
  background:#ca0958;
  color:#fff;
  border-radius:50%;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:3px;
}

.shobha-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ca0958;
    color: #fff;
    padding: 8px 8px 8px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 12px 28px rgba(202, 9, 88, .24);
    transition: .3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

.shobha-about-btn:hover{
  background:#d4537e;
  transform:translateY(-2px);
}

.shobha-about-btn span{
  width:42px;
  height:42px;
  background:#fff;
  color:#ca0958;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(-35deg);
  transition:.3s ease;
}

.shobha-about-btn:hover span{
  transform:rotate(0deg);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .shobha-about-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .shobha-about-content{
    max-width:100%;
  }

  .shobha-about-images{
    width:100%;
    max-width:560px;
    min-height:560px;
    margin:0 auto;
  }

  .shobha-main-img{
    width:380px;
    height:520px;
  }

  .shobha-small-img{
    width:310px;
    height:230px;
    left:210px;
    bottom:15px;
  }

  .shobha-about-images::after{
    display:none;
  }
}

@media(max-width:768px){
  .shobha-about-section{
    padding:50px 14px 70px;
  }

  .shobha-about-container{
    gap:35px;
  }

  .shobha-about-images{
    max-width:420px;
    min-height:auto;
    display:grid;
    gap:16px;
  }

  .shobha-main-img{
    width:100%;
    height:460px;
    border-width:7px;
    border-radius:20px;
  }

  .shobha-small-img{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    height:230px;
    border-width:7px;
    border-radius:18px;
  }

  .shobha-about-content h2{
    font-size:40px;
  }

  .shobha-about-features{
    grid-template-columns:1fr;
    gap:22px;
  }
}

@media(max-width:480px){
  .shobha-about-section{
    padding:42px 12px 60px;
  }

  .shobha-about-images{
    max-width:330px;
    gap:14px;
  }

  .shobha-main-img{
    height:390px;
    border-width:6px;
    border-radius:18px;
  }

  .shobha-small-img{
    height:190px;
    border-width:6px;
    border-radius:16px;
  }

  .shobha-about-badge{
    font-size:11px;
    letter-spacing:2px;
    padding:7px 16px;
  }

  .shobha-about-content h2{
    font-size:34px;
  }

  .shobha-about-content h4{
    font-size:14px;
  }

  .shobha-about-content p,
  .shobha-about-list li{
    font-size:15px;
  }

  .shobha-feature-icon{
    width:58px;
    height:58px;
    font-size:23px;
  }

  .shobha-feature-box h3{
    font-size:22px;
  }

  .shobha-about-btn{
    font-size:14px;
    padding:7px 7px 7px 20px;
  }

  .shobha-about-btn span{
    width:38px;
    height:38px;
  }
}






/* ===============================================
   SERVICE SECTION 
=============================================== */
    .service-area {
      background: #FFF4F8;
      padding: 90px 15px;
      overflow: hidden;
    }
 
    /* ───── HEADING ───── */
    .service-heading {
      text-align: center;
      margin-bottom: 60px;
    }
 
    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(232,93,158,0.20);
      padding: 9px 20px;
      border-radius: 40px;
      color: #ca0958;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 22px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(232,93,158,0.10);
    }
 
    .service-badge span {
      width: 8px;
      height: 8px;
      background: #ca0958;
      border-radius: 50%;
    }
 
    .service-heading h2 {
      font-size: 45px;
      line-height: 1.08;
      font-weight: 500;
      color: #1F2937;
         font-family: "Cormorant Garamond", Georgia, serif;
    }
 
    /* ───── SLIDER WRAP ───── */
    .service-slider-wrap {
      max-width: 1320px;
      width: 100%;
      margin: auto;
      position: relative;
    }
 
    .serviceSwiper {
      width: 100%;
      overflow: hidden;
    }
 
    .swiper-slide {
      height: auto;
    }
 
    /* ───── CARD ───── */
    .service-card {
      background: #ffffff;
      border-radius: 28px;
      overflow: hidden;
      padding: 55px 25px 0;
      text-align: center;
      height: 100%;
      transition: .4s ease;
      box-shadow: 0 15px 40px rgba(232,93,158,0.10);
      border: 1px solid rgba(232,93,158,0.08);
    }
 
    .service-card:hover {
      box-shadow: 0 25px 50px rgba(232,93,158,0.18);
    }
 
    /* ───── ICON — KEY FIX ───── */
    .service-icon {
      margin-bottom: 25px;
    }
 
    .service-icon svg {
      width: 65px;
      height: 65px;
      color: #ca0958;          /* default icon color */
      transition: color .4s ease;
    }
 
    /* All paths/groups inside SVG inherit currentColor */
    .service-icon svg path,
    .service-icon svg g {
      fill: currentColor;
      transition: fill .4s ease;
    }
 
    .service-card:hover .service-icon svg {
      color: #1a1a2e;           /* hover icon color */
    }
 
    /* ───── CARD TEXT ───── */
    .service-card h3 {
      font-size: 22px;
      font-family: "Cormorant Garamond", serif;
      font-weight: 500;
      margin-bottom: 15px;
      color: #1F2937;
      transition: color .4s ease;
    }
 
    .service-card:hover h3 {
      color: #ca0958;
    }
 
   .service-card p {
    line-height: 1.9;
    max-width: 360px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    font-family: math;
}
 
    /* ───── IMAGE BLOCK ───── */
    .service-image {
      position: relative;
      margin-top: 50px;
    }
 
    .service-image img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      border-radius: 25px;
      display: block;
    }
 
    .service-btn {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -28px;
      background: #ffffff;
      color: #1F2937;
      text-decoration: none;
      width: 220px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 0 0 30px 30px;
      font-family: Georgia, 'Times New Roman', serif;
      z-index: 5;
      box-shadow: 0 10px 25px rgba(232,93,158,0.15);
    }
 
    .service-btn span {
      color: #ca0958;
      font-size: 22px;
    }
 
    .service-btn::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 0;
      width: 18px;
      height: 18px;
      background: #ffffff;
      border-top-right-radius: 18px;
    }
 
    .service-btn::after {
      content: "";
      position: absolute;
      right: -18px;
      top: 0;
      width: 18px;
      height: 18px;
      background: #ffffff;
      border-top-left-radius: 18px;
    }
 
    /* ───── ARROWS ───── */
    .service-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ffffff;
      color: #ca0958;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(232,93,158,0.18);
      transition: .3s ease;
      user-select: none;
    }
 
    .service-arrow:hover {
      background: #ca0958;
      color: #fff;
    }
 
    .service-prev { left: -22px; }
    .service-next { right: -22px; }
 
    /* ───── RESPONSIVE ───── */
    @media (max-width: 1100px) {
      .service-heading h2 { font-size: 48px; }
      .service-arrow { display: none; }
    }
 
    @media (max-width: 768px) {
      .service-area { padding: 65px 14px; }
      .service-heading h2 { font-size: 40px; }
      .service-card { padding: 45px 20px 0; }
      .service-card h3 { font-size: 24px; }
      .service-card p { font-size: 15px; }
    }
 
    @media (max-width: 480px) {
      .service-heading h2 { font-size: 32px; }
      .service-badge { font-size: 14px; letter-spacing: 1.5px; }
      .service-image img { height: 240px; }
      .service-btn { width: 190px; font-size: 14px; }
    }













/* ==================================================
  ORTHOPEDIC DOCTOR ABOUT
================================================== */
.ortho-profile-section{
  width:100%;
  padding:70px 0;
  background:#fff;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.ortho-profile-container{
  width:min(1250px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  align-items:center;
  gap:65px;
}

.ortho-profile-content{
  max-width:560px;
}

.ortho-profile-badge{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:8px 22px;
  border-radius:30px;
  background:#f4f8fb;
  color:#1e45b4;
  font-size:13px;
  font-weight:700;
  letter-spacing:2.5px;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(30,69,180,.12);
}

.ortho-profile-badge i{
  width:8px;
  height:8px;
  background:#1e45b4;
  border-radius:50%;
  display:inline-block;
}

.ortho-profile-content h2{
  margin:0 0 20px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:56px;
  line-height:1.05;
  font-weight:500;
  color:#1f2937;
}

.ortho-profile-content h4{
  font-size:18px;
  line-height:1.6;
  font-weight:500;
  color:#111827;
  margin:0 0 12px;
  font-family:'Poppins',sans-serif;
}

.ortho-profile-content p{
  color:#6b7280;
  font-size:17px;
  line-height:1.8;
  margin:0 0 30px;
}

.ortho-profile-features{
  display:flex;
  align-items:center;
  gap:50px;
  margin-bottom:28px;
}

.ortho-profile-feature{
  display:flex;
  align-items:center;
  gap:15px;
}

.ortho-profile-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#1e45b4;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  position:relative;
  box-shadow:0 12px 26px rgba(30,69,180,.22);
}

.ortho-profile-icon::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border:1px dashed #1e45b4;
}

.ortho-profile-feature h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:24px;
  font-weight:500;
  line-height:1.15;
  color:#111827;
  margin:0;
}

.ortho-profile-list{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}

.ortho-profile-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#454b58;
  margin-bottom:15px;
  font-size:17px;
  line-height:1.6;
}

.ortho-profile-list li i{
  min-width:18px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#1e45b4;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  margin-top:4px;
}

.ortho-profile-btn{
  display:inline-flex;
  align-items:center;
  gap:20px;
  background:#1e45b4;
  color:#fff;
  padding:7px 7px 7px 28px;
  border-radius:40px;
  text-decoration:none;
  font-size:17px;
  font-weight:500;
  box-shadow:0 14px 30px rgba(30,69,180,.35);
  transition:.35s ease;
}

.ortho-profile-btn:hover{
  transform:translateY(-3px);
}

.ortho-profile-btn span{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fff;
  color:#1e45b4;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transform:rotate(-35deg);
  transition:.35s ease;
}

.ortho-profile-btn:hover span{
  transform:rotate(0deg);
}

.ortho-profile-media{
  display:flex;
  align-items:center;
  gap:30px;
}

.ortho-profile-line{
  width:14px;
  height:260px;
  background:#1e45b4;
  border-radius:30px;
}

.ortho-profile-image-box{
  flex:1;
  background:#1e45b4;
  padding:12px;
  border-radius:30px;
  box-shadow:0 25px 60px rgba(30,69,180,.18);
}

.ortho-profile-main-img{
  height:650px;
  border-radius:24px;
  overflow:hidden;
  background:#f4f8fb;
  position:relative;
}

.ortho-profile-main-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
  transition:transform .8s ease;
}

.ortho-profile-main-img:hover img{
  transform:scale(1.04);
}

/* TABLET */
@media(max-width:991px){

  .ortho-profile-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .ortho-profile-content{
    max-width:100%;
  }

  .ortho-profile-content h2{
    font-size:44px;
  }

  .ortho-profile-main-img{
    height:600px;
  }

  .ortho-profile-line{
    height:180px;
  }
}

/* MOBILE */
@media(max-width:576px){

  .ortho-profile-section{
    padding:50px 0;
  }

  .ortho-profile-badge{
    font-size:11px;
    letter-spacing:1.5px;
    padding:7px 14px;
  }

  .ortho-profile-content h2{
    font-size:38px;
  }

  .ortho-profile-content h4{
    font-size:16px;
  }

  .ortho-profile-content p{
    font-size:15px;
  }

  .ortho-profile-features{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .ortho-profile-media{
    display:block;
  }

  .ortho-profile-line{
    display:none;
  }

  .ortho-profile-main-img{
    height:480px;
  }

  .ortho-profile-btn{
    width:100%;
    justify-content:space-between;
  }
}

    /* ==================================================
  ORTHOPADIC SERVICE
================================================== */
.ortho-services{
  padding:90px 0;
  background:#f7f8fa;
  overflow:hidden;
}

.ortho-services-inner{
  max-width:1320px;
  margin:auto;
  padding:0 20px;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 55px;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(15,155,198,.10);
  color:#0f9bc6;
  font-size:14px;
  font-weight:700;
  margin-bottom:20px;
}

.section-badge span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#0f9bc6;
}

.section-heading h2{
    font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
    color: #1F2937;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.orthoSwiper{
  width:100%;
  overflow:hidden;
  padding:5px 2px 18px;
}

.orthoSwiper .swiper-slide{
  height:auto;
}

.ortho-card{
  height:100%;
  background:#fff;
  padding:14px;
  border-radius:20px;
  border:1px solid #e8edf3;
  display:flex;
  flex-direction:column;
  transition:.35s ease;
  box-shadow:0 10px 30px rgba(15,155,198,.08);
}

.ortho-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(15,155,198,.14);
}

.ortho-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
  display:block;
}

.ortho-content{
  min-height:86px;
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}

.ortho-content h3{
      line-height: 1.15;
    color: #1f2937;
    margin: 0;
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.ortho-content a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#0f9bc6;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  flex-shrink:0;
  transition:.35s ease;
}

.ortho-content a i{
  font-size:17px;
  transform:rotate(45deg);
  transition:.35s ease;
}

.ortho-card:hover .ortho-content a{
  background:#f5a021;
  transform:rotate(45deg);
}

.ortho-services .swiper-button-next,
.ortho-services .swiper-button-prev{
  width:48px;
  height:48px;
  background:#0f9bc6;
  border-radius:50%;
  color:#fff !important;
  box-shadow:0 10px 25px rgba(15,155,198,.25);
}

.ortho-services .swiper-button-next:hover,
.ortho-services .swiper-button-prev:hover{
  background:#f5a021;
}

.ortho-services .swiper-button-next:after,
.ortho-services .swiper-button-prev:after{
  font-size:16px !important;
  font-weight:700;
}

@media(max-width:768px){
  .ortho-services{
    padding:60px 0;
  }

  .section-heading{
    margin-bottom:38px;
  }

  .section-heading h2{
    font-size:36px;
  }

  .ortho-card img{
    height:240px;
  }

  .ortho-content h3{
    font-size:22px;
  }
}


/* ===================================
  WHY CHOOSE 
=================================== */
.rk-choose-section,
.rk-choose-section *{
  box-sizing:border-box;
}

.rk-choose-section{
  width:100%;
  background:#FFF4F8;
  padding:48px 16px;
  font-family:"Poppins", Arial, sans-serif;
}

.rk-choose-container{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:92px;
  align-items:center;
}

.rk-choose-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#ca0958;
  padding:8px 18px;
  border-radius:30px;
  font-size:16px;
  font-weight:600;
  letter-spacing:3px;
  margin-bottom:18px;
  box-shadow:0 8px 22px rgba(232,93,158,.10);
}

.rk-choose-badge i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ca0958;
}

.rk-choose-left h2{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:52px;
  line-height:1.12;
  font-weight:500;
  color:#1F2937;
  max-width:560px;
  margin:0 0 45px;
}

.rk-choose-desc{
  max-width:630px;
  font-size:17px;
  color:#6B7280;
  line-height:1.8;
  margin:0 0 28px;
}

.rk-choose-list{
  max-width:595px;
}

.rk-choose-item{
  border-bottom:1px solid rgba(232,93,158,.18);
  padding:17px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.rk-choose-item h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:22px;
  line-height:1.3;
  font-weight:500;
  color:#1F2937;
  margin:0;
}

.rk-choose-item span{
  color:#ca0958;
  font-size:28px;
  line-height:1;
  flex-shrink:0;
}

.rk-choose-item.active{
  padding-bottom:28px;
}

.rk-choose-item.active p{
  max-width:520px;
  margin:20px 0 0;
  padding-left:30px;
  color:#6B7280;
  font-size:17px;
  line-height:1.8;
}

.rk-choose-right{
  position:relative;
  height:594px;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 22px 55px rgba(232,93,158,.16);
}

.rk-choose-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.rk-choose-right::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(232,93,158,0) 38%,
    rgba(232,93,158,.55) 78%,
    rgba(180,46,105,.88) 100%
  );
  z-index:1;
}

.rk-choose-img-content{
  position:absolute;
  left:50px;
  right:40px;
  bottom:52px;
  z-index:2;
  color:#fff;
}

.rk-choose-img-content h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:28px;
  line-height:1.3;
  font-weight:500;
  margin:0 0 22px;
  color:#fff;
}

.rk-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 34px;
}

.rk-feature-grid p{
  font-size:16px;
  font-weight:700;
  color:#fff;
  margin:0;
}

@media(max-width:1050px){
  .rk-choose-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .rk-choose-left h2{
    font-size:44px;
  }
}

@media(max-width:768px){
  .rk-choose-left h2{
    font-size:36px;
  }

  .rk-choose-right{
    height:480px;
  }

  .rk-choose-img-content{
    left:25px;
    right:25px;
    bottom:32px;
  }

  .rk-feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
}

@media(max-width:480px){
  .rk-choose-section{
    padding:35px 14px;
  }

  .rk-choose-badge{
    font-size:14px;
    letter-spacing:2px;
  }

  .rk-choose-left h2{
    font-size:31px;
  }

  .rk-choose-desc,
  .rk-choose-item.active p{
    font-size:15px;
  }

  .rk-choose-item h3{
    font-size:19px;
  }

  .rk-choose-right{
    height:430px;
  }

  .rk-choose-img-content h3{
    font-size:22px;
  }

  .rk-feature-grid p{
    font-size:14px;
  }
}





/* ===================================
  STATUS COUNTER 
=================================== */
.stats-section{
  width:100%;
  background:#f7f8fa;
  padding:85px 0 75px;
}

.stats-container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  background:#fff;
  border-radius:26px;
  padding:45px 20px;
  box-shadow:0 18px 50px rgba(15,155,198,.08);
}

.stats-box{
  text-align:center;
  position:relative;
  padding:0 28px;
  transition:.35s ease;
}

.stats-box:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:10px;
  width:1px;
  height:84px;
  background:rgba(15,155,198,.16);
}

.stats-box h2{
  font-family:math;
  font-size:64px;
  line-height:1;
  font-weight:600;
  color:#0f9bc6;
  margin-bottom:14px;
}

.stats-box p {
    font-family: math;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
}

.stats-box:hover{
  transform:translateY(-6px);
}

.stats-box:hover h2{
  color:#f5a021;
}

/* RESPONSIVE */
@media(max-width:900px){
  .stats-container{
    grid-template-columns:repeat(2,1fr);
    gap:40px 0;
  }

  .stats-box:nth-child(2)::after{
    display:none;
  }
}

@media(max-width:520px){
  .stats-section{
    padding:55px 12px;
  }

  .stats-container{
    width:100%;
    grid-template-columns:1fr;
    gap:32px;
    padding:38px 18px;
  }

  .stats-box{
    padding:0;
  }

  .stats-box::after{
    display:none;
  }

  .stats-box h2{
    font-size:50px;
  }

  .stats-box p{
    font-size:15px;
  }
}




















/* ===========================================
   REVIEW SECTION  
=========================================== */
.ivf-testimonial{
  position:relative;
  padding:80px 0;
  overflow:hidden;
  background:#fff;
}

.testi-bg-grid{
  position:absolute;
  left:0;
  top:0;
  width:45%;
  height:100%;
  background-image:
    linear-gradient(rgba(15,155,198,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,155,198,.08) 1px, transparent 1px);
  background-size:52px 52px;
  opacity:.8;
}

.testi-container{
  width:92%;
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}

.testi-left{
  position:relative;
}

.testi-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 20px;
  border:1px solid rgba(15,155,198,.18);
  border-radius:30px;
  color:#0f9bc6;
  font-size:14px;
  font-weight:600;
  letter-spacing:3px;
  margin-bottom:18px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,155,198,.10);
}

.testi-badge i{
  width:8px;
  height:8px;
  background:#0f9bc6;
  border-radius:50%;
}

.testi-slider{
  position:relative;
  min-height:430px;
}

.testi-slide{
  display:none;
  animation:fadeTesti .5s ease;
}

.testi-slide.active{
  display:block;
}

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

.testi-slide h2 {
    margin-bottom: 35px;
    font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
    color: #1F2937;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.quote-icon{
  font-size:100px;
  line-height:.6;
  color:#0f9bc6;
  font-family:serif;
  margin-bottom:20px;
  opacity:.85;
}

.testi-slide p {
    max-width: 650px;
    font-family: math;
    font-size: 22px;
    line-height: 1.8;
    color: #6B7280;
    font-weight: 400;
    margin-bottom: 30px;
}

.testi-line{
  width:100%;
  height:1px;
  background:rgba(15,155,198,.16);
  margin:10px 0 30px;
}

.testi-user{
  display:flex;
  align-items:center;
  gap:16px;
}

.testi-user img{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #eef8fb;
  box-shadow:0 8px 18px rgba(15,155,198,.16);
}

.testi-user h4{
  font-size:22px;
  font-weight:600;
  color:#1F2937;
  margin:0 0 5px;
}

.testi-user span{
  font-size:17px;
  color:#6B7280;
}

.testi-arrows{
  display:flex;
  gap:12px;
  margin-top:25px;
}

.testi-arrows button{
  width:42px;
  height:42px;
  border:1px solid rgba(15,155,198,.18);
  background:#fff;
  border-radius:12px;
  font-size:20px;
  color:#0f9bc6;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 8px 20px rgba(15,155,198,.10);
}

.testi-arrows button:hover{
  background:#0f9bc6;
  color:#fff;
  transform:translateY(-2px);
}

.testi-right{
  display:grid;
  grid-template-columns:1fr 95px;
  gap:28px;
  align-items:center;
}

.testi-image{
  width:100%;
  height:635px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(15,155,198,.16);
}

.testi-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.rating-box{
  height:635px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.rating-box p{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:16px;
  line-height:1.5;
  color:#1F2937;
  margin-bottom:38px;
  font-weight:600;
}

.rating-line{
  width:76px;
  height:1px;
  background:rgba(15,155,198,.18);
  margin-bottom:35px;
}

.rating-box h3{
  font-size:78px;
  font-weight:600;
  color:#0f9bc6;
  line-height:1;
  margin:0 0 10px;
  font-family:"Cormorant Garamond",serif;
}

.stars{
  color:#f5a021;
  font-size:22px;
  letter-spacing:3px;
  line-height:1;
}

/* Tablet */
@media(max-width:1100px){

  .testi-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .testi-right{
    grid-template-columns:1fr;
  }

  .rating-box{
    height:auto;
    padding:20px 0 0;
  }

  .rating-box p{
    writing-mode:horizontal-tb;
    transform:none;
    margin-bottom:18px;
    text-align:center;
  }

  .rating-line{
    margin-bottom:18px;
  }

  .rating-box h3{
    font-size:55px;
  }

}

@media(max-width:768px){

  .ivf-testimonial{
    padding:55px 0;
  }

  .testi-bg-grid{
    width:100%;
  }

  .testi-slide h2{
    font-size:36px;
  }

  .testi-slide p{
    font-size:18px;
    line-height:1.7;
  }

  .quote-icon{
    font-size:80px;
  }

  .testi-slider{
    min-height:auto;
  }

  .testi-image{
    height:420px;
  }

}

@media(max-width:480px){

  .testi-slide h2{
    font-size:31px;
  }

  .testi-badge{
    font-size:12px;
    letter-spacing:2px;
  }

  .testi-image{
    height:340px;
    border-radius:18px;
  }

  .testi-user h4{
    font-size:19px;
  }

  .testi-user span{
    font-size:15px;
  }

  .rating-box h3{
    font-size:46px;
  }

  .stars{
    font-size:18px;
  }

}


























/* ===========================================
  GALLERY SECTION 
========================================== */
.fh-gallery{
    padding:100px 20px;
    background:#fff;
}

.gallery-title{
    text-align:center;
    margin-bottom:50px;
}

.gallery-title span{
    color:#1E45B4;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-title h2{
        font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
    color: #1F2937;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gallery-wrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-card{
    overflow:hidden;
    border-radius:2px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .gallery-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .gallery-wrapper{
        grid-template-columns:1fr;
    }

    .gallery-title h2{
        font-size:32px;
    }

    .gallery-card img{
        height:240px;
    }

}


/* ================================================
   BLOG SECTION
================================================ */

.blog-section{
  width:100%;
  background:#f7f8fa;
  padding:90px 16px;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.blog-container{
  max-width:1320px;
  margin:0 auto;
}

.blog-heading{
  text-align:center;
  margin-bottom:55px;
}

.blog-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#0f9bc6;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:18px;
  border:1px solid rgba(15,155,198,.15);
  box-shadow:0 8px 20px rgba(15,155,198,.08);
}

.blog-badge span{
  width:8px;
  height:8px;
  background:#0f9bc6;
  border-radius:50%;
}

.blog-heading h2 {
    margin: 0;
    font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
    color: #1F2937;
    font-family: "Cormorant Garamond", Georgia, serif;
}

/* GRID */

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */

.blog-card{
  background:#fff;
  overflow:hidden;
  border:1px solid #e8edf3;
  box-shadow:0 12px 35px rgba(15,155,198,.08);
  transition:.35s ease;
}

.blog-card:hover{
  box-shadow:0 20px 45px rgba(15,155,198,.15);
}

.blog-img{
  width:100%;
  height:250px;
  overflow:hidden;
}

.blog-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s ease;
}

.blog-card:hover .blog-img img{
  transform:scale(1.08);
}

/* CONTENT */

.blog-content{
  padding:28px;
}

.blog-content h3 {
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    color: #111827;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #545c6c;
    margin-bottom: 24px;
    font-family: math;
}

/* BUTTON */
.blog-btn{
  position:relative;
  display:inline-block;
  text-decoration:none;
  color:#1f2937;
  font-size:15px;
  font-weight:500;
  font-family:Georgia, 'Times New Roman', serif;
  letter-spacing:.5px;
  padding-bottom:10px;
}

.blog-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:40px;
  height:1px;
  background:#1f2937;
  transition:width .4s ease;
}

.blog-btn:hover::after{
  width:100%;
}
/* TABLET */

@media(max-width:991px){

  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .blog-heading h2{
    font-size:42px;
  }

}

/* MOBILE */

@media(max-width:768px){

  .blog-section{
    padding:70px 14px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-heading{
    margin-bottom:40px;
  }

  .blog-heading h2{
    font-size:34px;
  }

  .blog-img{
    height:220px;
  }

  .blog-content{
    padding:22px;
  }

  .blog-content h3{
    font-size:22px;
  }

}

/* SMALL MOBILE */

@media(max-width:480px){

  .blog-badge{
    font-size:12px;
    padding:8px 16px;
  }

  .blog-heading h2{
    font-size:30px;
  }

  .blog-content h3{
    font-size:20px;
  }

  .blog-content p{
    font-size:14px;
  }

}


/* ===================================================
  FAQ SECTION 
=================================================== */
.faq-section{
    padding:100px 20px;
    background:#FFF4F8;
}

.faq-container{
    max-width:1100px;
    margin:auto;
}

.faq-heading{
    text-align:center;
    margin-bottom:60px;
}

.faq-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    padding:10px 22px;
    border-radius:50px;
    color:#ca0958;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    border:1px solid rgba(232,93,158,.15);
    margin-bottom:18px;
}

.faq-badge i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ca0958;
}

.faq-heading h2{
    font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 45px;
    line-height: 1.13;
    font-weight: 500;
    color: #1F2937;
}

.faq-heading p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    line-height:1.8;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(232,93,158,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:26px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:22px;
    font-family:"Cormorant Garamond", serif;
    color:#1F2937;
    text-align:left;
}

.faq-question span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#FFF4F8;
    color:#ca0958;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 30px 25px;
    color:#6B7280;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question span{
    background:#ca0958;
    color:#fff;
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq-heading h2{
        font-size:40px;
    }

    .faq-question{
        font-size:19px;
        padding:22px;
    }
}

@media(max-width:480px){

    .faq-heading h2{
        font-size:32px;
    }

    .faq-question{
        font-size:17px;
    }
}




/* ================================================
 FOOTER SECTION 
================================================ */

.contact-strip{
  width:100%;
  padding:75px 5%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center;
  gap:30px;
  background:#f7f8fa;
  font-family:'Poppins',sans-serif;
}

.contact-box{
  position:relative;
  padding:0 25px;
}

.contact-box + .contact-box{
  border-left:1px solid rgba(15,155,198,.18);
}

.contact-box h3 {
    color: #1c242e;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}

.contact-box p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 6px;
    font-family: math;
}

/* FOOTER */
.fertily-footer{
  background:#39465f;
  padding:80px 0 0;
  font-family:'Poppins',sans-serif;
}

.footer-container{
  max-width:1320px;
  margin:auto;
  padding:0 20px 65px;
  display:grid;
  grid-template-columns:1.35fr .8fr .9fr 1.1fr;
  gap:45px;
}

.footer-logo img{
  width:220px;
  max-width:100%;
  height:auto;
  display:block;
  margin-bottom:24px;
  background:#fff;
  padding:8px 12px;
  border-radius:14px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 26px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.footer-col p,
.contact-text{
  color:rgba(255,255,255,.82);
  line-height:1.9;
      font-size: 17px;
    font-family: math;
}

.footer-col ul{
  padding:0;
  margin:0;
  list-style:none;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 18px;
    transition: .3s ease;
    font-family: math;
}

.footer-col ul li a:hover{
  color:#f5a021;
  padding-left:7px;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:28px;
  flex-wrap:wrap;
}

.footer-social a{
  width:42px;
  height:42px;
  background:rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  border-radius:50%;
  text-decoration:none;
  transition:.35s ease;
}

.footer-social a:hover{
  background:#0f9bc6;
  transform:translateY(-4px);
}

.footer-contact{
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-top:18px;
}

.footer-contact span{
  color:#f5a021;
  font-size:18px;
  flex-shrink:0;
  margin-top:3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.6;
    font-family: math;
}

.footer-contact a:hover{
  color:#f5a021;
}

.footer-bottom{
  text-align:center;
  padding:20px 15px;
  border-top:1px solid rgba(255,255,255,.12);
  background:#39465f;
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.85);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-strip{
    grid-template-columns:1fr;
    padding:55px 8%;
    gap:0;
  }

  .contact-box{
    padding:30px 0;
  }

  .contact-box + .contact-box{
    border-left:none;
    border-top:1px solid rgba(15,155,198,.18);
  }

  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:38px;
    padding:0 24px 55px;
  }
}

@media(max-width:560px){
  .contact-strip{
    padding:42px 6%;
  }

  .contact-box h3{
    font-size:22px;
  }

  .contact-box p{
    font-size:15px;
  }

  .fertily-footer{
    padding:55px 0 0;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:34px;
    padding:0 20px 45px;
  }

  .footer-logo img{
    width:190px;
  }

  .footer-col h3{
    font-size:20px;
    margin-bottom:18px;
  }
}

/* ===== FAQ Accordion Update ===== */
.faq-item h3,
.faq-item h4{
  cursor:pointer;
  position:relative;
  padding-right:34px;
}
.faq-item h3::after,
.faq-item h4::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:var(--theme-color, #d10b63);
  font-size:24px;
  line-height:1;
}
.faq-item.active h3::after,
.faq-item.active h4::after{
  content:"−";
}
.faq-item p{
  display:none;
}
.faq-item.active p{
  display:block;
}
.faq-item:first-of-type p{
  display:none;
}


/* ===== Header Phone Update ===== */
.topbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.fert-call{
  cursor:pointer;
}
@media(max-width:575px){
  .topbar-right{
    gap:8px;
  }
}


/* ===== FAQ accordion final fix ===== */
.faq-item h3,
.faq-item h4{
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 !important;
}
.faq-item h3::after,
.faq-item h4::after{
  content:"+";
  margin-left:15px;
  font-size:22px;
  line-height:1;
  color:var(--service-color, #d10b63);
  font-family:Arial, sans-serif;
  font-weight:400;
  flex-shrink:0;
}
.faq-item.active h3::after,
.faq-item.active h4::after,
.faq-item.open h3::after,
.faq-item.open h4::after{
  content:"−";
}
.faq-item > p{
  display:none !important;
  padding:0 18px 16px !important;
  margin:0 !important;
}
.faq-item.active > p,
.faq-item.open > p{
  display:block !important;
}


/* FAQ accordion fix */
.faq-item > p{display:none;}
.faq-item.active > p,
.faq-item.open > p{display:block;}
.faq-item h3,
.faq-item h4{cursor:pointer;}
.faq-item h3::after,
.faq-item h4::after{
  content:"+";
  float:right;
  font-family:Arial, sans-serif;
  color:var(--service-color, #d10b63);
  font-weight:600;
}
.faq-item.active h3::after,
.faq-item.open h3::after,
.faq-item.active h4::after,
.faq-item.open h4::after{content:"−";}
