/* =========================
   MEDICAL SERVICE DETAILS
========================= */

.msd-banner{
  width:100%;
  background:#efebf5;
  padding:110px 20px 90px;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.msd-container{
  max-width:1350px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* LEFT */

.msd-content{
  flex:1;
  max-width:620px;
}

.msd-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.msd-breadcrumb a,
.msd-breadcrumb span{
  font-size:18px;
  color:#6b7280;
  text-decoration:none;
  font-weight:500;
}

.msd-breadcrumb a i{
  font-size:15px;
  margin-right:6px;
}

.msd-sep{
  color:#9ca3af;
}

.msd-active{
  color:#00b894 !important;
  font-weight:600;
}

.msd-content h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:28px;
  font-weight:700;

  background:linear-gradient(90deg,#0099cc,#1ecb63);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.msd-content p{
  font-size:18px;
  line-height:1.8;
  color:#6b7280;
  max-width:580px;
  font-weight:400;
}

/* RIGHT IMAGE */

.msd-image{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.msd-image img{
  width:100%;
  max-width:660px;
  border-radius:22px;
  display:block;
  object-fit:cover;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.08);

  transition:0.5s ease;
}

.msd-image img:hover{
  transform:scale(1.02);
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .msd-container{
    gap:40px;
  }

  .msd-content h1{
    font-size:60px;
  }

  .msd-content p{
    font-size:20px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .msd-banner{
    padding:90px 20px 60px;
  }

  .msd-container{
    flex-direction:column-reverse;
    gap:35px;
  }

  .msd-content{
    max-width:100%;
  }

  .msd-breadcrumb{
    gap:10px;
    margin-bottom:20px;
  }

  .msd-breadcrumb a,
  .msd-breadcrumb span{
    font-size:14px;
  }

  .msd-content h1{
    font-size:44px;
    margin-bottom:18px;
  }

  .msd-content p{
    font-size:15px;
    line-height:1.7;
  }

  .msd-image{
    width:100%;
    justify-content:center;
  }

  .msd-image img{
    width:100%;
    max-width:100%;
    border-radius:18px;
  }

}

/*sec2*/

/* =========================
   ABOUT SERVICE SECTION
========================= */

.ms-about-sec{
  width:100%;
  padding:90px 20px;
  background:#f7f7f7;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.ms-about-wrap{
  max-width:1350px;
  margin:auto;

  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:60px;
}

/* LEFT SIDE */

.ms-about-left{
  flex:1;
  min-width:0;
}

.ms-service-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 20px;
  border-radius:50px;

  background:linear-gradient(90deg,#2d7df6,#14c3d8);

  color:#fff;
  font-size:16px;
  font-weight:600;

  margin-bottom:28px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.ms-service-badge i{
  font-size:16px;
}

.ms-about-left h2{
  font-size:38px;
  line-height:1.1;
  font-weight:700;
  color:#111827;

  margin-bottom:30px;
}

.ms-about-left p{
  font-size:19px;
  line-height:1.9;
  color:#64748b;

  margin-bottom:26px;

  max-width:900px;
}

/* RIGHT CARD */

.ms-contact-card{
  width:420px;
  flex-shrink:0;

  background:#ffffff;

  border:1px solid #e5e7eb;

  border-radius:24px;

  padding:42px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  transition:0.4s ease;
}

.ms-contact-card:hover{
  transform:translateY(-5px);
}

.ms-contact-card h3{
  font-size:22px;
  color:#111827;
  font-weight:700;

  margin-bottom:16px;
}

.ms-contact-text{
  font-size:18px;
  line-height:1.7;
  color:#64748b;

  margin-bottom:30px;
}

.ms-phone-box{
  width:100%;

  display:flex;
  align-items:center;
  gap:18px;

  background:#edf3f1;

  padding:22px 24px;

  border-radius:18px;

  margin-bottom:26px;
}

.ms-phone-box i{
  color:#10b981;
  font-size:22px;
}

.ms-phone-box span{
  font-size:20px;
  font-weight:500;
  color:#1f2937;
}

.ms-contact-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  text-decoration:none;

  background:linear-gradient(90deg,#1098c4,#22c55e);

  color:#fff;

  padding:20px;

  border-radius:16px;

  font-size:19px;
  font-weight:600;

  transition:0.4s ease;
}

.ms-contact-btn:hover{
  transform:translateY(-3px);
  opacity:0.95;
}

.ms-contact-btn i{
  transition:0.4s ease;
}

.ms-contact-btn:hover i{
  transform:translateX(4px);
}

/* =========================
   LARGE TABLET
========================= */

@media(max-width:1100px){

  .ms-about-wrap{
    gap:40px;
  }

  .ms-about-left h2{
    font-size:48px;
  }

  .ms-contact-card{
    width:380px;
    padding:34px;
  }

  .ms-contact-card h3{
    font-size:34px;
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:900px){

  .ms-about-wrap{
    flex-direction:column;
  }

  .ms-contact-card{
    width:100%;
  }

  .ms-about-left h2{
    font-size:44px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .ms-about-sec{
    padding:65px 18px;
  }

  .ms-about-wrap{
    gap:30px;
  }

  .ms-service-badge{
    font-size:14px;
    padding:10px 18px;
  }

  .ms-about-left h2{
    font-size:34px;
    margin-bottom:20px;
  }

  .ms-about-left p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:22px;
  }

  .ms-contact-card{
    padding:24px;
    border-radius:20px;
  }

  .ms-contact-card h3{
    font-size:30px;
    margin-bottom:10px;
  }

  .ms-contact-text{
    font-size:16px;
    margin-bottom:22px;
  }

  .ms-phone-box{
    padding:18px;
    gap:14px;
  }

  .ms-phone-box span{
    font-size:17px;
  }

  .ms-contact-btn{
    padding:17px;
    font-size:17px;
  }

}

/* =========================
   STATS SECTION
========================= */

.ms-stats-sec{
  width:100%;
  padding:90px 20px;
  background:#f5f5f5;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.ms-stats-wrap{
  max-width:1350px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */

.ms-stat-card{
  position:relative;

  background:#ffffff;
  border-radius:26px;

  padding:48px 30px;

  text-align:center;

  border:1px solid #e5e7eb;

  overflow:hidden;

  transition:
  transform .45s ease,
  box-shadow .45s ease,
  border-color .45s ease;

  animation:cardFadeUp 1s ease forwards;

  opacity:0;
}

/* DELAY */

.ms-stat-card:nth-child(1){
  animation-delay:.1s;
}

.ms-stat-card:nth-child(2){
  animation-delay:.3s;
}

.ms-stat-card:nth-child(3){
  animation-delay:.5s;
}

/* HOVER */

.ms-stat-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  box-shadow:
  0 25px 50px rgba(0,0,0,0.10);

  border-color:#22c55e;
}

/* GLOW EFFECT */

.ms-glow{
  position:absolute;
  width:220px;
  height:220px;

  background:
  radial-gradient(circle,
  rgba(34,197,94,0.16),
  transparent 70%);

  top:-120px;
  right:-100px;

  transition:.6s ease;
}

.ms-stat-card:hover .ms-glow{
  transform:scale(1.3) rotate(15deg);
}

/* NUMBER */

.ms-stat-card h2{
  display:inline-block;

  font-size:42px;
  line-height:1;

  font-weight:700;

  background:linear-gradient(90deg,#1e88e5,#22c55e);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:12px;

  transition:.4s ease;
}

.ms-stat-card:hover h2{
  transform:scale(1.08);
}

/* SMALL TEXT */

.ms-stat-card span{
  font-size:24px;
  font-weight:700;

  background:linear-gradient(90deg,#1e88e5,#22c55e);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* DESCRIPTION */

.ms-stat-card p{
  margin-top:10px;

  font-size:18px;
  line-height:1.6;

  color:#64748b;
  font-weight:500;
}

/* ENTRY ANIMATION */

@keyframes cardFadeUp{

  from{
    opacity:0;
    transform:
    translateY(50px)
    scale(.95);
  }

  to{
    opacity:1;
    transform:
    translateY(0)
    scale(1);
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .ms-stats-wrap{
    grid-template-columns:1fr;
  }

  .ms-stat-card{
    padding:42px 24px;
  }

  .ms-stat-card h2{
    font-size:60px;
  }

  .ms-stat-card span{
    font-size:36px;
  }

  .ms-stat-card p{
    font-size:20px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .ms-stats-sec{
    padding:65px 18px;
  }

  .ms-stats-wrap{
    gap:20px;
  }

  .ms-stat-card{
    border-radius:22px;
    padding:36px 20px;
  }

  .ms-stat-card h2{
    font-size:48px;
  }

  .ms-stat-card span{
    font-size:28px;
  }

  .ms-stat-card p{
    font-size:17px;
    line-height:1.5;
  }

}

/* =========================
   PROCESS SECTION
========================= */

.ms-process-sec{
  width:100%;
  padding:90px 20px;
  background:#ffffff;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.ms-process-wrap{
  max-width:1350px;
  margin:auto;

  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
}

/* TITLES */

.ms-offer-side h2,
.ms-steps-side h2{
  font-size:30px;
  line-height:1.1;
  color:#111827;
  margin-bottom:40px;
  font-weight:700;
}

/* =========================
   OFFER CARDS
========================= */

.ms-offer-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.ms-offer-card{
  display:flex;
  align-items:center;
  gap:18px;

  background:#ffffff;

  border:1px solid #dbe3ea;

  padding:26px 28px;

  border-radius:22px;

  transition:
  transform .45s ease,
  box-shadow .45s ease,
  border-color .45s ease,
  background .45s ease;

  cursor:pointer;

  position:relative;
  overflow:hidden;
}

/* LEFT GLOW */

.ms-offer-card::before{
  content:"";

  position:absolute;
  left:-100%;
  top:0;

  width:100%;
  height:100%;

  background:
  linear-gradient(
  90deg,
  transparent,
  rgba(34,197,94,0.08),
  transparent
  );

  transition:.7s ease;
}

.ms-offer-card:hover::before{
  left:100%;
}

/* HOVER */

.ms-offer-card:hover{
  transform:
  translateY(-6px)
  scale(1.01);

  box-shadow:
  0 18px 40px rgba(0,0,0,0.08);

  border-color:#22c55e;

  background:#ffffff;
}

.ms-offer-card i{
  font-size:28px;
  color:#10b981;

  transition:.4s ease;
}

.ms-offer-card:hover i{
  transform:scale(1.2) rotate(8deg);
}

.ms-offer-card span{
  font-size:18px;
  color:#0f172a;
  font-weight:500;
  line-height:1.5;
}

/* =========================
   STEPS
========================= */

.ms-steps-wrap{
  position:relative;
}

/* STEP ITEM */

.ms-step-item{
  display:flex;
  align-items:flex-start;
  gap:22px;

  position:relative;

  padding-bottom:42px;

  opacity:0;
  transform:translateY(70px);

  animation:stepUp .9s ease forwards;
}

/* DELAY */

.ms-step-item:nth-child(1){
  animation-delay:.2s;
}

.ms-step-item:nth-child(2){
  animation-delay:.6s;
}

.ms-step-item:nth-child(3){
  animation-delay:1s;
}

.ms-step-item:nth-child(4){
  animation-delay:1.4s;
}

/* VERTICAL LINE */

.ms-step-item::after{
  content:"";

  position:absolute;

  left:18px;
  top:52px;

  width:2px;
  height:calc(100% - 10px);

  background:#a7f3d0;
}

.ms-step-item:last-child::after{
  display:none;
}

/* NUMBER */

.ms-step-number{
  min-width:52px;
  width:52px;
  height:52px;

  border-radius:50%;

  background:
  linear-gradient(135deg,#3b82f6,#06b6d4);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;

  font-size:24px;
  font-weight:700;

  box-shadow:
  0 12px 30px rgba(59,130,246,0.25);

  transition:.45s ease;

  position:relative;
  z-index:2;
}

.ms-step-item:hover .ms-step-number{
  transform:
  scale(1.12)
  rotate(8deg);
}

/* CONTENT */

.ms-step-content h3{
  font-size:25px;
  color:#1f2937;
  margin-bottom:10px;
  font-weight:700;

  transition:.4s ease;
}

.ms-step-item:hover h3{
  color:#0ea5e9;
}

.ms-step-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
}

/* =========================
   STEP ENTRY ANIMATION
========================= */

@keyframes stepUp{

  from{
    opacity:0;
    transform:
    translateY(70px);
  }

  to{
    opacity:1;
    transform:
    translateY(0);
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .ms-process-wrap{
    grid-template-columns:1fr;
    gap:60px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .ms-process-sec{
    padding:65px 18px;
  }

  .ms-process-wrap{
    gap:45px;
  }

  .ms-offer-side h2,
  .ms-steps-side h2{
    font-size:20px;
    margin-bottom:28px;
  }

  .ms-offer-card{
    padding:20px 18px;
    border-radius:18px;
    gap:14px;
  }

  .ms-offer-card i{
    font-size:22px;
  }

  .ms-offer-card span{
    font-size:15px;
    line-height:1.5;
  }

  .ms-step-item{
    gap:16px;
    padding-bottom:34px;
  }

  .ms-step-number{
    min-width:42px;
    width:42px;
    height:42px;
    font-size:15px;
  }

  .ms-step-item::after{
    left:20px;
    top:45px;
  }

  .ms-step-content h3{
    font-size:18px;
    margin-bottom:6px;
  }

  .ms-step-content p{
    font-size:16px;
    line-height:1.7;
  }

}

/* =========================
   OTHER SERVICES
========================= */

.os-services-sec{
  width:100%;
  padding:80px 20px;
  background:#f7f7f7;
  font-family:'Poppins',sans-serif;
}

.os-services-head{
  max-width:1350px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:34px;
}

.os-services-head h2{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin:0;
}

.os-view-all{
  display:flex;
  align-items:center;
  gap:10px;

  text-decoration:none;

  color:#10b981;
  font-size:16px;
  font-weight:500;

  transition:.35s ease;
}

.os-view-all:hover{
  gap:14px;
}

.os-view-all i{
  font-size:14px;
}

/* GRID */

.os-services-grid{
  max-width:1350px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

/* CARD */

.os-service-card{
  background:#fff;

  border:1px solid #dbe3ea;

  border-radius:22px;

  overflow:hidden;

  transition:
  transform .45s ease,
  box-shadow .45s ease,
  border-color .45s ease;

  cursor:pointer;
}

.os-service-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);

  border-color:#22c55e;
}

/* IMAGE */

.os-service-img{
  position:relative;
  overflow:hidden;
}

.os-service-img img{
  width:100%;
  height:325px;
  object-fit:cover;
  display:block;

  transition:transform .7s ease;
}

.os-service-card:hover .os-service-img img{
  transform:scale(1.08);
}

/* ICON */

.os-service-icon{
  position:absolute;

  top:20px;
  right:20px;

  width:46px;
  height:46px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:18px;

  backdrop-filter:blur(10px);

  transition:.4s ease;
}

.os-service-card:hover .os-service-icon{
  transform:rotate(10deg) scale(1.08);
}

.os-orange{
  background:linear-gradient(135deg,#ff5f2e,#ff8f1f);
}

.os-purple{
  background:linear-gradient(135deg,#7c4dff,#a855f7);
}

.os-yellow{
  background:linear-gradient(135deg,#ffb100,#ff8c1a);
}

/* CONTENT */

.os-service-content{
  padding:26px 28px 28px;
}

.os-service-content h3{
  font-size:18px;
  line-height:1.4;
  color:#111827;
  font-weight:600;

  margin-bottom:12px;
}

.os-service-content p{
  font-size:16px;
  line-height:1.7;
  color:#64748b;

  margin:0;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .os-services-grid{
    grid-template-columns:1fr 1fr;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .os-services-sec{
    padding:65px 18px;
  }

  .os-services-head{
    margin-bottom:26px;
  }

  .os-services-head h2{
    font-size:34px;
  }

  .os-view-all{
    font-size:14px;
  }

  .os-services-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .os-service-img img{
    height:260px;
  }

  .os-service-content{
    padding:22px;
  }

  .os-service-content h3{
    font-size:17px;
  }

  .os-service-content p{
    font-size:15px;
    line-height:1.6;
  }

}