:root {
  --primary: #674dad;
  --secondary: #14b8a6;
  --light: #f0fdfa;
  --white: #ffffff;
  --pink: #d55191; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

section {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.top-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 15px;
  color: var(--primary);
}

.top-info i,
.top-info svg {
  font-size: 18px;
}

.book-btn {
  background: #674dad;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.book-btn:hover {
  background: var(--pink);
}

/* =========================
   NAVBAR MAIN (Middle Align)
========================= */
.main-nav {
  width: 100%;
  height: 50px;
  background: #6d4bb8;
  display: flex;
  justify-content: center; /* లింక్స్ అన్నీ పర్ఫెక్ట్ గా మధ్యలోకి రావడానికి */
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center; /* కంటైనర్ లోపల కూడా సెంటర్ చేస్తుంది */
  align-items: center;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px; /* లింక్స్ మధ్య గ్యాప్ కొద్దిగా తగ్గించాను */
  height: 100%;
}

/* =========================
   NAV LINKS & HOVER PINK BAR
========================= */
nav a,
.drop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; /* నావ్‌బార్ హైట్‌కి మ్యాచ్ చేసాను */
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 5px;
  cursor: pointer;
  position: relative; 
  transition: 0.3s;
}

nav a:hover,
.drop-btn:hover {
  color: #ffd4f1;
}

/* మెయిన్ నావ్ లింక్స్ కి కింద వచ్చే పింక్ బార్ */
nav a::after,
.drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; 
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 3px; 
  background-color: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease; 
}

nav a:hover::after,
.drop-btn::after.active,
.dropdown:hover .drop-btn::after {
  width: 80%; 
}

/* =========================
   DROPDOWN (Spaces Reduced)
========================= */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* డ్రాప్‌డౌన్ సెంటర్ అవ్వడానికి */
  width: 260px; /* వెడల్పు తగ్గించాను */
  background: #5b3fa3;
  border-radius: 10px;
  padding: 8px; /* ప్యాడింగ్ తగ్గించాను */
  display: none;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* 🔥 నార్మల్ డ్రాప్‌డౌన్ లింక్స్ స్పేసింగ్ తగ్గించబడింది */
.dropdown-content > a {
  display: block;
  color: #fff;
  padding: 8px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* లింక్స్ మధ్య గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4; /* లైన్ హైట్ తగ్గించాను */
  transition: 0.3s;
}

.dropdown-content > a:hover {
  background: var(--pink);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   SUB DROPDOWN
========================= */
.sub-dropdown {
  position: static;
}

.sub-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  background: none;
  border: none;
  padding: 10px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.sub-btn:hover {
  background: var(--pink);
}

.sub-content {
  position: absolute;
  left: 98%;
  top: 0;
  width: 350px;
  max-height: 450px;
  overflow-y: auto;
  background: #7a57ca;
  border-radius: 10px;
  padding: 12px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.sub-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s;
}

.sub-dropdown:hover .sub-content {
  display: block;
}

/* SCROLLBAR */
.sub-content::-webkit-scrollbar {
  width: 4px;
}

.sub-content::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.sub-content::-webkit-scrollbar-track {
  background: #8f6be0;
}

.sub-content a:hover {
  background: var(--pink);
}

/* MENU BUTTON */
.menu-btn {
  display: none;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px) {

  .top-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-info {
    gap: 15px;
    font-size: 13px;
  }

  .main-nav {
  position: relative;
}

.menu-btn {
  display: block;
  position: absolute;
  top: -5px;
  right: 20px;   /* left remove చేసి right పెట్టండి */
  left: auto;
  transform: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

  /* MOBILE MENU */
  nav {
    width: 100%;
    background: #6d4bb8;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 20px;
  }

  nav.show {
    display: flex;
  }

  nav a,
  .drop-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 20px;
    height: auto;
    font-size: 17px;
    color: #fff;
  }

  nav a::after,
  .drop-btn::after {
    display: none;
  }

  /* DROPDOWN */
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    display: none;
    background: #5b3fa3;
  }

  /* CLICK chesthe maatrame open */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* SUB MENU */
  .sub-dropdown {
    width: 100%;
  }

  .sub-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    justify-content: space-between;
  }

  .sub-content {
    position: static;
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    display: none;
    background: #7a57ca;
    border-radius: 8px;
  }

  /* CLICK chesthe maatrame sub menu open */
  .sub-dropdown.active .sub-content {
    display: block;
  }

  .sub-content a {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 10px;
  }
}






/* ================= FOOTER ================= */

.footer{
  background:#674dad;
  color:#ffffff;
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding-bottom:40px;
}

/* HEADINGS */
.footer-col h4{
  font-weight:600;
  margin-bottom:15px;
}

/* ANIMATION */
.footer-anim{
  opacity:0;
  transform:scale(0.9);
  transition:all 0.6s ease;
}

.footer-anim.show{
  opacity:1;
  transform:scale(1);
}

/* LINKS */
.footer-col a{
  display:block;
  color:white;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:#d55191;
}

/* LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.footer-logo img{
  width:240px;
  height:auto;
  object-fit:contain;
}

/* SOCIAL */
.social span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:white;
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#14b8a6;
  transform:scale(1.15);
}

/* ================= ADDRESS FIX ================= */

.footer-address{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-address p{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0;
  line-height:1.5;
  font-size:14px;
}

/* ICON ALIGN */
.footer-address p i{
  margin-top:3px;
  flex-shrink:0;
}

/* TEXT WRAP CLEAN */
.footer-address p{
  word-break:normal;
}

/* ================= COPYRIGHT ================= */

.copyright{
  background:#4a2f87;
  text-align:center;
  padding:15px;
  font-size:13px;
}

/* ================= FLOATING BUTTONS ================= */

.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:white;
  z-index:9999;
}

/* WhatsApp */
.whatsapp{
  bottom:90px;
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Phone */
.phone{
  bottom:20px;
  background:#25D366;
  animation:float 2.5s infinite;
}

/* Animations */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* LEFT ALIGN EVERYTHING */
  .footer{
    text-align:left;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* LOGO LEFT */
  .footer-logo{
    justify-content:flex-start;
  }

  .footer-logo img{
    width:120px;
  }

  /* SOCIAL LEFT */
  .social-icons{
    justify-content:flex-start;
  }

  /* ADDRESS */
  .footer-address{
    gap:8px;
  }

  .footer-address p{
    font-size:13px;
  }

}
/* HIDE PHONE IN DESKTOP */
.phone{
  display:none;
}

/* MOBILE ONLY SHOW PHONE */
@media(max-width:768px){
  .phone{
    display:flex;
  }
}











/* =========================
   MAIN SLIDER
========================= */

.main-slider{
  width:100%;
  height:98vh;
  position:relative;
  overflow:hidden;
  background:#000;
}

/* =========================
   SLIDES
========================= */

.main-slide{
  position:absolute;
  inset:0;

  opacity:0;

  transform:scale(1.06);

  transition:
  opacity 1.2s ease,
  transform 1.2s ease;
}

.main-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* =========================
   IMAGE
========================= */

.main-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   OVERLAY
========================= */

.main-slide::after{
  content:"";

  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.20)
  );
}

/* =========================
   CONTENT
========================= */

.main-slide-content{
  position:absolute;

  left:3%;
  top:50%;

  transform:translateY(-50%);

  color:#fff;

  max-width:620px;

  z-index:2;

  animation:slideFade 1.2s ease;
}

/* TITLE */

.main-slide-content h1{
  font-size:52px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.2;
}

/* PARAGRAPH */

.main-slide-content p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:22px;
  text-align:justify;
  opacity:0.95;
}

/* =========================
   BUTTON
========================= */

.hero-cta-btn{
  display:inline-block;

  padding:13px 34px;

  background:#674dad;

  color:#fff;

  font-size:15px;
  font-weight:600;

  border-radius:30px;

  text-decoration:none;

  transition:0.35s ease;
}

/* HOVER */

.hero-cta-btn:hover{
  background:#d55191;

  transform:translateY(-3px);

  box-shadow:0 10px 25px rgba(213,81,145,0.35);
}

/* =========================
   TEXT ANIMATION
========================= */

@keyframes slideFade{

  from{
    opacity:0;
    transform:translate(-30px,-50%);
  }

  to{
    opacity:1;
    transform:translate(0,-50%);
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

  .main-slider{
    width:100%;
    height:75vh;
    min-height:75vh;
    overflow:hidden;
  }

  /* SLIDE */

  .main-slide{
    position:absolute;
    inset:0;
  }

  /* IMAGE */

  .main-slide img{
    width:100%;
    height:100%;

    object-fit:cover;

    /* FACE CLEAR */

    object-position:center top;

    display:block;
  }

  /* OVERLAY */

  .main-slide::after{
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.72),
      rgba(0,0,0,0.18)
    );
  }

  /* CONTENT */

  .main-slide-content{

    position:absolute;

    left:5%;
    right:5%;

    top:auto;
    bottom:40px;

    transform:none;

    max-width:100%;

    z-index:2;
  }

  /* TITLE */

  .main-slide-content h1{

    font-size:28px;

    line-height:1.3;

    margin-bottom:10px;
  }

  /* TEXT */

  .main-slide-content p{

    font-size:14px;

    line-height:1.7;

    text-align:left;

    margin-bottom:18px;
  }

  /* BUTTON */

  .hero-cta-btn{

    padding:11px 24px;

    font-size:14px;

    border-radius:25px;
  }

}
  
  
  
  
  
  
  
  
  
  
  
  
  /* ================= ABOUT SECTION PREMIUM ================= */
.about-section {
  padding: 50px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
  overflow: hidden; /* AOS animations side scroll rakunda */
  position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* CONTENT SIDE */
.about-content {
  flex: 0 0 50%;
}

.sub-title {
  color: #674dad;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #d55191;
  margin-bottom: 20px;
  line-height: 1.2;
}


.about-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 16.5px;
  text-align: justify;
}
/* BUTTON STYLE */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 24px; /* Reduced button size */
  background: #674dad;
  color: #ffffff;
  font-size: 13px; /* Smaller text */
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(103, 77, 173, 0.25);
  transition: all 0.4s ease;
  text-decoration: none;
}

.about-btn span {
  font-size: 20px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d55191;
  color: #c8b2b2;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(213, 81, 145, 0.4);
}

.about-btn:hover span {
  transform: translateX(5px);
}

.image-main-wrapper {
  position: relative;
  z-index: 2;
}

.main-abt-img {
  width: 100%;
  height: auto; /* Desktop height */
  object-fit: cover;
  border-radius: 40px 10px 40px 10px; /* Irregular modern radius */
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border: 8px solid #fff;
}
.about-image-side {
  flex: 0 0 57%; /* 🔥 increase from 45% → 55% */
}
/* Decorative background shape */
/* .shape-bg {
  position: absolute;
  top: -30px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: #674dad;
  border-radius: 40px 10px 40px 10px;
  opacity: 0.08;
  z-index: 1;
} */
/* Floating Glass Card */
.floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 18px 22px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.6);

  z-index: 5;
  max-width: 260px;
}

.floating-card i {
  font-size: 35px;
  color: #d55191;
}

.floating-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #674dad;
}

.floating-card p {
  margin: 0;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .about-container {
    display: flex;
    flex-direction: column;
  }

  /* 🔥 ORDER MAIN BLOCKS */
  .about-content {
    order: 1;
  }
 
  .main-abt-img {
    height: auto;          /* 🔥 no cropping */
    max-height: none;      /* full image show */
    border-radius: 20px;   /* optional clean */
  }
  .about-image-side {
    order: 2;
    margin: 20px 0;
  
    width: 100%;
    flex: 100%;
  }
  /* 🔥 CONTENT INTERNAL ORDER */
  .about-content {
    display: flex;
    flex-direction: column;
  }

  .sub-title{
    order : 1;
    font-size: 12px;
  }
  .about-content h2 {
    order: 1; /* heading */
    font-size: 28px;
  }

  .about-content p {
    order: 2; /* text */
    text-align: justify;
    padding: 0 10px;
  }

  .about-btn {
    order: 3; /* button */
    margin: 20px auto 0;
  }

}

@media (max-width: 991px) {

  .floating-card {
    position: static;   /* 🔥 remove absolute */
    margin: 20px auto;  /* center below image */
    
    width: 90%;
    max-width: 320px;

    display: flex;
    justify-content: center;
    text-align: center;

    left: 0;
    bottom: 0;
  }

}






/* ================= HOSPITAL NETWORK ================= */

.hospital-network {
  
  padding: 50px 20px;
  background: #f3f0ff;
  text-align: center;
  overflow: hidden;
}

/* TITLE */
.network-title {
  color: #d55191;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* GRID */
.network-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 950px;
  margin: auto;
}

/* CARD */
.network-card {
  text-align: center;
}

/* 🔥 IMAGE BOX (RECTANGLE LIKE SCREENSHOT) */
.img-box {
  width: 100%;
  height: 380px; /* 🔥 height ekkuva */
  background: #674dad;
  border-radius: 6px;
  overflow: hidden;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ================= TEXT ================= */

/* MAIN TITLE BIG */
.main-title {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
  color: #5a67a0;
  letter-spacing: 0.5px;
}

/* SMALL SUB TEXT */
.sub-title {
  font-size: 12px;
  font-weight: 700;
  color: #5a67a0;
  margin-top: 3px;
}

/* PLACE */
.place {
  color: #d55191;
  font-weight: 900;
  font-size: 18px;
  margin: 6px 0 14px;
}

/* BUTTON */
.know-btn {
  display: inline-block;
  padding: 11px 32px;
  background: #674dad;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.know-btn:hover {
  background: #d55191;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .network-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .img-box {
    height: 250px;
  }

  .main-title {
    font-size: 18px;
  }

  .sub-title {
    font-size: 13px;
  }

  .place {
    font-size: 16px;
  }
}







/* ===== SECTION ===== */
.directors-section {
  padding: 40px 20px;
  background: #f6f7fb;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.directors-title {
  color: #d55191;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.directors-sub {
  color: #674dad;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* ===== GRID ===== */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: auto;
}

/* ===== CARD ===== */
.director-card {
  display: flex;
  align-items: center; /* 🔥 vertical alignment */
  gap: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.25s ease;
}

.director-card:hover {
  transform: translateY(-3px);
}

/* ===== IMAGE ===== */
.director-img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.director-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ===== CONTENT ===== */
.director-content {
  flex: 1;
}

.director-content h3 {
  color: #d55191;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ===== QUALIFICATION ===== */
.qualification {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qualification span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.qualification i {
  color: #d55191;
  font-size: 13px;
  width: 16px;
  text-align: center;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
  .directors-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

  .directors-section {
    padding: 40px 15px;
  }

  .directors-title {
    font-size: 22px;
  }

  .directors-sub {
    font-size: 13px;
  }

  .director-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .director-img {
    width: 110px;
    height: 110px;
  }

  .qualification span {
    justify-content: left;
  }
}










/* SECTION */
.hope-section{
  padding:50px 20px;
  overflow: hidden;
  background-color: #f3f0ff;
}

.hope-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:10px;
  align-items:center;
}

/* ================= LEFT ================= */

.left-stack{
  position:relative;
  width:45%;
  height:420px;
}

/* BABY */
.img-baby{
  position:absolute;
  top:0;
  left:0;
  width:200px;
}
.img-baby img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:16px;
}

/* 🔥 98% BOX (SOFT PINK SHADE) */
.badge-98{
  position:absolute;
  top:20px;
  left:210px;
  background:#fde4ef; /* 🔥 soft pink */
  padding:12px 16px;
  border-radius:12px;
  width:150px;
}
.badge-98 h3{
  color:#d55191;
  font-weight: 800;
  font-size:20px;
}
.badge-98 p{
  font-size:12px;
  font-weight: 700;
  
  color:#d55191;
}

/* SUPPORT */
.support-box{
  position:absolute;
  top:250px;
  left:20px;
  width:180px;
  background:#674dad;
  color:#fff;
  padding:10px;
  border-radius:12px;
}
.support-box h4{
  font-size:13px;
  margin-bottom:4px;
}
.support-box h4 i{
  margin-right:6px;
}
.support-box p{
  font-size:11px;
}

/* DOCTOR */
.img-doctor{
  position:absolute;
  top:120px;
  left:210px;
  width:250px;
}
.img-doctor img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:16px;
}

/* ================= RIGHT ================= */

.right-content{
  width:55%;
}

.right-content h2{
  font-size:32px;
  color:#d55191;
  font-weight:800;
  margin-bottom:15px;
}

.right-content p{
  color:#555;
  margin-bottom:20px;
  line-height:1.6;
}

/* 🔥 BUTTONS */
.btns{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.btn{
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.primary{
  background:#d55191;
  color:#fff;
}
.primary:hover{
  background:#674dad; /* 🔥 hover purple */
}

.secondary{
  border:1px solid #ccc;
  color:#333;
}
.secondary:hover{
  border-color:#674dad;
  color:#674dad;
}

/* IMAGE */
.video-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
}

.video-card img{
  width:100%;
  height:280px;
  object-fit:cover;
object-position: top;
  transition:0.4s;
}
.video-card:hover img{
  transform:scale(1.05);
}

/* 🔥 TITLE TWO LINES */
.overlay-title{
  position:absolute;
  top:20px;
  right:20px;
  color:#fff;
  text-align:right;
  font-weight:800;
  font-size:20px;
  line-height:1.2;
}

/* 🔥 BADGES */
.bottom-badges{
  position:absolute;
  bottom:15px;
  right:15px;
  display:flex;
   flex-direction:column;
  gap:8px;
}

.badge{
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  color:#fff;
  font-weight:600;
}

.badge.pink{
  background:#d55191;
}

.badge.purple{
  background:#674dad;
}

/* ================= MOBILE ================= */

/* ================= MOBILE FIXED ================= */

@media (max-width:768px){

  .hope-section{
    padding:40px 15px;
  }

  .hope-container{
    flex-direction:column;
    gap:30px;
  }

  /* LEFT STACK CLEAN LAYOUT */
  .left-stack{
    width:100%;
    height:auto;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .img-baby,
  .img-doctor,
  .badge-98,
  .support-box{
    position:static; /* 🔥 remove absolute */
    width:100%;
    max-width:260px;
  }

  .img-baby img,
  .img-doctor img{
    width:100%;
    height:auto;
  }

  .badge-98{
    text-align:center;
  }

  .support-box{
    text-align:center;
  }

  /* RIGHT CONTENT */
  .right-content{
    width:100%;
    text-align:center;
  }

  .right-content h2{
    font-size:24px;
  }

  .right-content p{
    font-size:14px;
    text-align: justify;
  }

  /* BUTTONS CENTER */
  .btns{
    justify-content:center;
    flex-wrap:wrap;
  }

  /* VIDEO CARD */
  .video-card img{
    height:200px;
  }

  .overlay-title{
    font-size:16px;
    top:15px;
    right:15px;
  }

  .bottom-badges{
    bottom:10px;
    right:10px;
  }

  .badge{
    font-size:11px;
    padding:5px 10px;
  }
}











.mc-care {
  padding: 50px 20px;
  background: #f7faff;
  overflow: hidden;
}

.mc-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.mc-img-wrap {
  position: relative;
  width: 390px;
}

.mc-img-wrap img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* 🔥 BUBBLE */
.mc-bubble {
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
  border-radius: 60% 40% 50% 70%;
  top: 40px;
  left: -30px;
  z-index: 1;
}

/* RIGHT */
.mc-title {
  font-size: 24px;
  color: #d55191;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.mc-desc {
  color: #666;
  margin-bottom: 20px;
}

/* Tabs */
.mc-tabs {
  display: flex;
  margin-bottom: 15px;
}

.mc-tab {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  background: #e0ecff;
  border-radius: 10px 10px 0 0;
  margin-right: 5px;
}

.mc-tab.active {
  background: #d55191;
  color: white;
}

/* Content */
.mc-content {
  display: none;
  background: #f9c6dc;
  padding: 18px;
  border-radius: 0 12px 12px 12px;
}

.mc-content.active {
  display: block;
}

/* Grid */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Card */
.mc-card {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  transition: 0.25s ease;
}

.mc-card img {
  width: 60px;
  margin-bottom: 8px; 
}

.mc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media(max-width: 900px){

  .mc-container{
    display: flex;
    flex-direction: column;
  }

  /* 🔥 MOVE IMAGE DOWN */
  .mc-left{
    order: 2;
  }

  /* 🔥 CONTENT FIRST */
  .mc-right{
    order: 1;
    display: flex;
    flex-direction: column;
  }

  /* INNER ORDER */
  .mc-title{
    order: 1; /* Heading FIRST */
    text-align: center;
  }

  .mc-desc{
    order: 3; /* Text after image */
    text-align: justify;
    padding: 0 10px;
  }

  .mc-tabs{
    order: 4;
    justify-content: center;
  }

  .mc-content{
    order: 5;
  }

  /* IMAGE CENTER */
  .mc-img-wrap{
    width: 100%;
    max-width: 320px;
    margin: 15px auto;
  }

}












.vector-header{
  width:100%;
  background:#ede8ff;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(103,77,173,0.25);

  margin-top:6px;     /* 🔽 reduced */
  margin-bottom:6px;  /* 🔽 reduced */
}

/* ================= TOP LINES (INSIDE BOX) ================= */
.vector-lines{
  position:absolute;
  top:0;
  left:0;
  width:100%;
}

.vector-lines .line{
  display:block;
  border-radius:50px;
  margin-left:18%;
}

/* TOP DARK LINE */
.vector-lines .l1{
  height:6px;
  width:78%;
  background:#d55191;
  margin-top:10px;
}

/* MIDDLE LINE */
.vector-lines .l2{
  height:5px;
  width:70%;
  background:#8a79e6;
  margin-top:6px;
}

/* BOTTOM ACCENT LINE */
.vector-lines .l3{
  height:5px;
  width:62%;
  background:#674dad;
  margin-top:6px;
}

/* ================= CONTENT ================= */
.vector-content{
  padding:60px 8% 50px 30%;
  position:relative;
  z-index:2;
}


.vector-content h2{
  font-size:30px;
  font-weight:700;
  color:#d55191;
  margin-bottom:2px;
}

.vector-content p{
  font-size:12px;
  color:black;
}

/* ================= DIAGONAL CUT ================= */
.vector-cut{
  position:absolute;
  bottom:0;
  left:0;
  width:28%;
  height:100%;
  background:#674dad;
  clip-path:polygon(0 0,100% 0,70% 100%,0 100%);
}

/* ================= MOBILE VIEW ================= */
@media(max-width:768px){

  /* ================= SECTION ================= */
  .vector-header{
    position:relative;
    overflow:hidden;

    padding:30px 15px 25px;
    border-radius:10px;
    margin:10px 0;

    min-height:130px; /* 🔥 ensures proper height */
  }

  /* ================= TOP LINES ================= */
  .vector-lines .line{
    margin-left:10%;
  }

  .vector-lines .l1{ width:85%; }
  .vector-lines .l2{ width:75%; }
  .vector-lines .l3{ width:65%; }

  /* ================= CONTENT ================= */
  .vector-content{
    position:relative;
    z-index:2;

    padding:45px 15px 20px 18%; /* 🔥 pushes text down nicely */
    text-align:left;
  }

  .vector-content h2{
    font-size:20px;
    line-height:1.3;
    margin-bottom:6px;
    color:#c084fc; /* 🔥 light purple */
  }

  .vector-content p{
    font-size:12.5px;
    line-height:1.6;
    color:#444;
    opacity:0.9;
  }

  /* ================= DIAGONAL CUT ================= */
  .vector-cut{
    position:absolute;
    top:0;
    left:0;

    width:35%;
    height:20%; /* 🔥 full cover fix */

    background:#674dad;

    clip-path:polygon(0 0,100% 0,70% 100%,0 100%);
    z-index:1;
  }

  /* ================= EXTRA CLEAN ================= */
  .vector-header::after{
    height:80px;
    background-size:20px 20px;
  }

  .vector-header::before{
    height:50px;
  }

}


/* ================= SECTION ================= */
.home-services{
  padding:90px 40px;
  background:#f3f0ff;
  overflow: hidden;
}

/* TITLE */
.home-services-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  text-transform:uppercase;
  color:#d55191;
  margin-bottom:40px;
  margin-top:30px;
}

/* CONTAINER */
.site-container{
  max-width:1250px;
  margin:0 auto;
  padding:0 20px;
}

/* GRID */
.home-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* ================= CARD ================= */
.home-service-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid #d7cff0;
  box-shadow:0 12px 30px rgba(103,77,173,0.12);

  display:flex;
  flex-direction:column;
  text-align:center;

  transition:0.35s ease;
}

/* IMAGE */
.home-service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* CONTENT */
.home-service-card h3{
  font-size:18px;
  font-weight:700;
  color:#d55191;
  padding:16px 18px 6px;
}

.home-service-card p{
  font-size:14.8px;
  line-height:1.65;
  color:black;

  padding:0 18px 12px;
}

/* BUTTON */
.home-service-card .know-more{
  margin:0 auto 12px;
  padding:9px 28px;
  background:#d55191;
  color:#fff;
  font-size:14px;
  font-weight:600;
  border-radius:30px;
  transition:0.3s ease;
  text-decoration:none;
}

.home-service-card .know-more:hover{
  background:#674dad;
}

/* HOVER EFFECT */
.home-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(103,77,173,0.22);
}

/* AOS performance boost */
[data-aos]{
  will-change: transform, opacity;
}

/* ================= TABLET ================= */
@media(max-width:1100px){
  .home-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .home-services{
    padding:70px 0;
  }

  .home-services-title{
    font-size:24px;
  }

  .home-services-grid{
    grid-template-columns:1fr;
  }

  .home-service-card img{
    height:180px;
  }
}









/* ================= WHY CHOOSE US SECTION ================= */

.dolphin-why-section {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.dolphin-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADING */
.dolphin-header {
  margin-bottom: 60px; /* 🔥 reduced gap */
}

.dolphin-main-heading {
  font-size: 28px;
  color: #674dad;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

/* GRID */
.dolphin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px; /* 🔥 balanced spacing */
}

/* CARD */
.dolphin-card {
  background-color: #fdf5f8;
  padding: 70px 25px 35px; /* 🔥 top padding increase (important) */
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(213, 81, 145, 0.1);
  min-height: 220px; /* 🔥 equal height fix */
}

/* ICON WRAPPER */
.icon-wrapper {
  position: absolute;
  top: -30px; /* 🔥 adjust overlap */
  left: 50%;
  transform: translateX(-50%);
}

/* ICON BOX */
.icon-box {
  background: #ffffff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f1f1;
}

.icon-box i {
  color: #d55191;
  font-size: 28px;
}

/* CONTENT */
.dolphin-card h3 {
  color: #d55191;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.dolphin-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* HOVER */
.dolphin-card:hover {
  transform: translateY(-6px);
  background-color: #ffffff;
  box-shadow: 0 18px 35px rgba(103, 77, 173, 0.12);
  border-color: #674dad;
}

.dolphin-card:hover h3 {
  color: #674dad;
}
/* TABLET */
@media (max-width: 992px) {
  .dolphin-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 25px;
  }
}

/* MOBILE */
@media (max-width: 650px) {

  .dolphin-why-section {
    padding: 60px 15px;
  }

  .dolphin-main-heading {
    font-size: 22px;
  }

  .dolphin-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .dolphin-card {
    padding: 65px 20px 30px; /* 🔥 maintain space for icon */
    max-width: 380px;
    margin: 0 auto;
  }

  .icon-wrapper {
    top: -28px;
  }

  .icon-box {
    width: 65px;
    height: 65px;
  }

  .icon-box i {
    font-size: 26px;
  }
}













/* --- FACILITY SECTION START --- */
.facility-section {
  padding: 80px 0;
  background: #f8f9ff;
  overflow: hidden; /* Prevents horizontal scroll during animations */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title & Subtitle */
.facility-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #d55191;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.facility-sub {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  font-weight: 400;
}

/* Grid Layout (Desktop: 4 Columns) */
.facility-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* --- THE EXTRAORDINARY CARD --- */
.facility-card {
  position: relative;
  background: rgba(103, 77, 173, 0.08);
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid rgba(103, 77, 173, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  opacity: 0; /* Hidden by default for animation */
}

/* Row 1 & 3: Slide from Left | Row 2: Slide from Right */
.facility-card.left { transform: translateX(-80px); }
.facility-card.right { transform: translateX(80px); }

/* Class added via JS to trigger appearance */
.facility-card.show, .facility-title.show {
  opacity: 1;
  transform: translate(0) !important;
}

/* Hidden Gradient Overlay for Hover */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #674dad 0%, #d55191 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
.facility-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(103, 77, 173, 0.25);
}

.facility-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.icon-circle i {
  font-size: 28px;
  color: #674dad;
  transition: all 0.4s ease;
}

/* Card Title */
.facility-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin: 0;
  transition: all 0.4s ease;
  line-height: 1.4;
}

/* Hover State for Text & Icon */
.facility-card:hover .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-5deg);
}

.facility-card:hover .icon-circle i,
.facility-card:hover h3 {
  color: #ffffff;
}

/* --- RESPONSIVE DESIGN (MOBILE & TABLET) --- */

/* Tablets (Max 1024px) */
@media (max-width: 1024px) {
  .facility-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

/* Mobile Phones (Max 768px) */
@media (max-width: 768px) {
  .facility-section {
    padding: 50px 0;
  }

  .facility-title {
    font-size: 26px;
  }

  .facility-container {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 20px;
  }

  /* Disable extreme side-sliding on mobile to avoid layout breaks */
  .facility-card.left, 
  .facility-card.right {
    transform: translateY(40px); /* Slide UP instead of SIDE */
  }

  .facility-card {
    padding: 30px 15px;
    border-radius: 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 24px;
  }
}

















.journey-section {
  padding: 50px 80px;
  background: #f9f9f9;
  overflow: hidden;
}

/* LAYOUT */
.journey-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.left h2 {
  font-size: 32px;
  color: #d55191;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tag {
  color: #674dad;
  text-transform: uppercase;
  font-weight: 600;
}

.sub {
  margin-bottom: 25px;
  color: #555;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* NUMBER */
.step span {
  background: #d55191;
  color: #fff;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* 🔥 CONTENT */
.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #674dad;
  margin-bottom: 6px;
  white-space: nowrap; /* single line */
}

.step-content p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 240px;  /* 🔥 forces 2 lines */
  color: #555;
}

/* RIGHT */
/* CARD */
/* CARD */
.journey-card {
 background: #674dad; color: #fff; 
 padding: 30px 20px 160px; /* 🔥 extra bottom space for image */
  border-radius: 20px; 
  text-align: center; 
  position: relative;
   overflow: hidden; /* 🔥 keeps image inside clean */
   } /* IMAGE PERFECT POSITION */ 
   .doctr-img { 
    position: absolute; 
    bottom: 0;
     right: 80px; 
    width: 300px; /* 🔥 control size */ 
    height: 200px;
     object-fit: contain; 
    }

/* OPTIONAL: SOFT SHADOW LOOK */
.doctr-img {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* TEXT */
.big-text {
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.small-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 20px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #fff;
  color: #8e2c48;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}


@media (max-width: 768px) {

  /* SECTION */
  .journey-section {
    padding: 40px 20px;
  }

  /* STACK LAYOUT */
  .journey-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* LEFT TEXT CENTER */
  .left {
    text-align: center;
  }

  .left h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .sub {
    font-size: 14px;
  }

  /* STEPS SINGLE COLUMN */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step {
    gap: 12px;
  }

  /* FIX TEXT WRAP */
  .step-content h4 {
    white-space: normal; /* 🔥 allow wrap */
    font-size: 16px;
  }

  .step-content p {
    max-width: 100%; /* 🔥 full width */
    font-size: 13px;
  }

  /* RIGHT CARD */
  .journey-card {
    padding: 25px 15px 40px;
  }

  /* IMAGE FIX */
  .doctr-img {
    position: static;
    width: 180px;
    margin: 20px auto 0;
    display: block;
  }

  /* TEXT */
  .big-text {
    font-size: 16px;
  }

  .small-text {
    font-size: 13px;
  }

  /* BUTTON CENTER */
  .btn {
    display: inline-block;
    margin-top: 10px;
  }

}





















/* Color Variables */
:root {
    --f-purple: #674dad;
    --f-pink: #d55191;
    --f-white: #ffffff;
}

.fertility-banner-section {
    padding: 30px 30px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.f-wrapper {
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 15px;
}

/* 75% Layout */
.f-hero-card {
    flex: 0 0 75%;
    background: var(--f-purple);
    border-radius: 25px;
    overflow: hidden;
    color: var(--f-white);
}

.f-grid-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr; /* Text 60%, Image 40% approx */
    height: 100%;
}

.f-text-area {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Matter vertically center avutundi */
}

.f-top-subtitle { font-size: 13px; opacity: 0.8; margin-bottom: 10px; }
.f-main-heading { font-size: 38px; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
.f-matter p { font-size: 14px; line-height: 1.6; opacity: 0.9; margin-bottom: 15px; text-align: justify; }

/* Buttons */
.f-actions { display: flex; gap: 15px; margin: 25px 0; }
.f-btn {
    padding: 12px 32px;
    border-radius: 50px; /* Capsule Shape */
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    text-align: center;
}
.f-btn-solid { background: var(--f-white); color: var(--f-purple); }
.f-btn-solid:hover { background: var(--f-pink); color: var(--f-white); transform: translateY(-2px); }

.f-btn-border { border: 2px solid var(--f-white); color: var(--f-white); }
.f-btn-border:hover { background: var(--f-white); color: var(--f-purple); transform: translateY(-2px); }

/* Stats Row */
.f-footer-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    margin-top: 10px;
}
.f-stat { font-size: 12px; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.f-stat i { color: #d55191; }

/* Image Area - Precise Equal Start/End */
.f-image-area {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.f-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Matter entha unte image kuda anthe neat ga expand avutundi */
    display: block;
}

/* 25% Sidebar Card */
.f-side-card {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-facility-img {
    flex: 1; /* Sidebar height matches main card */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}
.f-facility-img img { width: 100%; height: 100%; object-fit: cover; }

.f-contact-box-container { display: flex; flex-direction: column; gap: 12px; }

.f-contact-card {
    background: #fff0f6; /* Soft pink bg */
    padding: 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--f-pink);
    font-weight: 700;
    transition: 0.3s;
}
.f-contact-card:hover { background: #fce4ec; transform: scale(1.02); }

.f-icon-wrap {
    width: 35px;
    height: 35px;
    background: var(--f-pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 991px) {

  /* WRAPPER */
  .f-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  /* MAIN CARD FULL WIDTH */
  .f-hero-card {
    flex: 0 0 100%;
  }

  /* STACK GRID */
  .f-grid-layout {
    grid-template-columns: 1fr;
  }

  /* 🔥 IMAGE TOP (CLEAN) */
  .f-image-area {
    order: 1;
    height: 260px;
  }

  /* TEXT BELOW */
  .f-text-area {
    order: 2;
    padding: 25px 20px;
    text-align: center;
  }

  .f-main-heading {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
  }

  .f-matter p {
    font-size: 13px;
    text-align: justify;
  }

  /* BUTTONS */
  .f-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .f-btn {
    width: 100%;
    max-width: 260px;
  }

  /* STATS */
  .f-footer-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .f-stat {
    font-size: 11px;
  }

  /* SIDEBAR FULL WIDTH */
  .f-side-card {
    flex: 0 0 100%;
  }

  /* FACILITY IMAGE */
  .f-facility-img {
    height: 180px;
  }

  /* CONTACT CARDS */
  .f-contact-card {
    padding: 14px;
    font-size: 13px;
  }

}










/* Background pure white and scoped to wrapper */
.abt-main-wrapper {
    background-color: #f3f0ff !important;
    padding: 60px 0;
    margin-bottom: 0px   !important;
    overflow-x: hidden;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 100px;
}

.abt-row.abt-reverse {
    flex-direction: row-reverse;
}

.abt-content, .abt-image {
    flex: 1;
}
.abt-image{
  height:100%;
}
.abt-image img{
  width:100%;
  max-height:700px;   /* 🔥 control height */
  height:auto;        /* 🔥 natural ratio */
  object-fit:cover;
  border-radius:15px;
  display:block;
}
.abt-tagline {
    color: #674dad;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.abt-desc-top {
    color: #674dad;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.abt-heading {
    font-size: 27px;
    color: #d55191;
    font-weight: 700;
    margin-bottom: 25px;
}

.abt-points {
    list-style: none;
    padding: 0;
}

.abt-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #555;
    font-size: 15px;
}

.abt-points li i {
    background: #fdf0f3;
    color: #b33a5d;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.abt-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    border: 2px solid #b33a5d;
    color: #b33a5d;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.abt-btn:hover {
    background: #b33a5d;
    color: #fff;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
    .abt-row, .abt-row.abt-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .abt-points li {
        text-align: left;
    }
    .abt-heading {
        font-size: 26px;
    }
}














































/* ================= GLOBAL ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ================= HIGHLIGHTS ================= */

.highlights-section{
  position:relative;
  padding:80px 0;
  background:url('../img/abt.png') no-repeat center center/cover;
  background-attachment:fixed;
  overflow: hidden;
}

/* OVERLAY */
.highlights-overlay{
  position:absolute;
  inset:0;
  background:rgba(45,12,85,0.85);
  z-index:1;
}

/* CONTENT */
.highlights-section .container{
  position:relative;
  z-index:2;
}

/* TITLE */
.highlights-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:10px;
}

/* SUB */
.highlights-sub{
  text-align:center;
  color:#ddd;
  margin-bottom:60px;
}

/* GRID */
.highlights-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.highlight-card{
  background:#ffffff;
  padding:50px 20px;

  text-align:center;
  position:relative;
  transition:0.4s;
}

/* TOP LINE */
.top-line{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  
  background:linear-gradient(90deg,#674dad,#d55191);
}

/* NUMBER */
.highlight-card h3{
  font-size:34px;
  color:#d55191;
  margin-bottom:10px;
}

/* TEXT */
.highlight-card p{
  color:#674dad;
  font-weight:600;
}

/* HOVER */
.highlight-card:hover{
  transform:translateY(-10px);
  background:#674dad;
}

.highlight-card:hover h3,
.highlight-card:hover p{
  color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:1100px){
  .highlights-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .highlights-section{
    background-attachment:scroll;
  }

  .highlights-container{
    grid-template-columns:1fr;
  }

  .highlight-card{
    padding:40px 20px;
  }
}








/* ================= GALLERY ================= */
.gallery-section {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

/* TITLE */
.gallery-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color:  #d55191;
  margin-bottom: 40px;
}

/* VIEWPORT */
.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

/* IMAGES */
.gallery-track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex-shrink: 0; /* ⭐ IMPORTANT FIX */
}

/* ANIMATION */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= TABLET (MINIMIZE FIX) ================= */
@media (max-width: 1100px) {
  .gallery-track img {
    width: 220px;
    height: 160px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .gallery-section {
    padding: 50px 0;
  }

  .gallery-title {
    font-size: 24px;
  }

  .gallery-track img {
    width: 200px;
    height: 140px;
  }
}












.dph-about-section {
    background-color: #ffffff !important;
    padding: 50px 0;
    overflow: hidden;
}

.dph-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.dph-main-flex {
    display: flex;
    align-items: stretch; /* Makes both sides same height */
    gap: 40px;
}

/* Left Content Side */
.dph-content-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dph-sub-tag {
    color: #674dad;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.dph-heading {
    font-size: 28px;
    color: #d55191;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}

.dph-para {
    font-size: 14px;
    color: black;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Slider Box - Compact */
.dph-slider-box {
    margin-top: 20px;
    position: relative;
    max-width: 420px;
}

.dph-review-card {
    background: #fee9ed;
    padding: 30px 25px 20px;
    border-radius: 12px;
    position: relative;
}

.dph-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #f3cbd3;
}

.dph-review-text {
    font-size: 14px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    min-height: 60px; /* Keeps card size stable */
}

.dph-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dph-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.dph-meta h4 { font-size: 15px; color: #222; margin: 0; }
.dph-meta span { font-size: 12px; color: #b95574; font-weight: 500; }

/* Navigation Buttons */
.dph-nav {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: -15px;
    left: 25px;
}

.dph-btn {
    width: 34px;
    height: 34px;
    background: #b95574;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Right Image Side */
.dph-image-side {
    flex: 1;
}

.dph-img-container {
    height: 100%; /* Same height as text side */
    position: relative;
}

.dph-abt-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important for alignment */
    border-radius: 15px;
}

.dph-google-box {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dph-google-box img { width: 55px; }
.dph-rating p { font-size: 11px; color: #888; margin: 0; }
.dph-rating span { color: #fbbc05; }
.dph-rating strong { font-size: 20px; color: #222; }

/* Responsive */
@media (max-width: 850px) {

  /* STACK LAYOUT */
  .dph-main-flex {
    display: flex;
    flex-direction: column;
  }

  /* 🔥 IMAGE FIRST */
  .dph-image-side {
    order: 1;
    height: 280px;
  }

  /* TEXT BELOW */
  .dph-content-side {
    order: 2;
    text-align: center;
  }

  /* TEXT JUSTIFY */
  .dph-para {
    text-align: justify;
    font-size: 13px;
    line-height: 1.7;
  }

  .dph-heading {
    font-size: 22px;
  }

  /* SLIDER FULL WIDTH */
  .dph-slider-box {
    max-width: 100%;
    margin: 20px auto 0;
  }

  .dph-review-card {
    padding: 20px 15px;
  }

  .dph-review-text {
    font-size: 13px;
    text-align: justify;
  }

  /* USER CENTER */
  .dph-user {
    justify-content: center;
  }

  /* NAV CENTER */
  .dph-nav {
    left: 50%;
    transform: translateX(-50%);
  }

  /* GOOGLE BOX FIX */
  .dph-google-box {
    right: 10px;
    top: 15px;
    padding: 8px 10px;
  }

  .dph-google-box img {
    width: 45px;
  }

}


















.contact-modern{
  padding:50px 20px 60px;
  background:#f4fbfa;
  font-family:Arial, Helvetica, sans-serif;
}

/* BRANCH WRAPPER */
.contact-wrapper{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:40px;
}

/* INFO BOX */
.contact-info-box{
  background:#fff;
  padding:40px;
  border-radius:22px;
  border:1px solid #d7cff0;
  box-shadow:0 18px 45px rgba(103,77,173,.18);
}

.contact-info-box h3{
  font-size:26px;
  color:#d55191;
  font-weight: 700;
}

.info-desc{
  font-size:14px;
  margin-bottom:26px;
}

/* INFO ITEM */
.info-item{
  display:flex;
  gap:16px;
  padding:14px 18px;
  border-radius:14px;
  background:#f3f1fb;
  margin-bottom:14px;
  transition:.3s;
}

.info-item:hover{
  transform:translateY(-4px);
}

.info-item i{
  font-size:20px;
  color:#674dad;
}

.info-item h4{
  color:#d55191;
  font-weight: 700;
  font-size:15px;
  margin-bottom:4px;
}

/* 🔥 LINK COLORS FIXED */
.info-item a{
  color:#674dad;
  text-decoration:none;
  font-weight:500;
}

.info-item a:hover{
  color:#d55191;
}

/* FORM */
.contact-form-box{
  max-width:900px;              /* 🔥 width reduced */
  margin:0 auto 40px;
  background:#fff;
  padding:38px;
  border-radius:22px;
  border:1px solid #d7cff0;
  box-shadow:0 25px 60px rgba(103,77,173,.2);
}

.contact-form-box h3{
  color:#d55191;
  margin-bottom:18px;
}

.form-row{
  display:flex;
  gap:16px;
  margin-bottom:14px;
}

input, select{
  width:100%;
  padding:13px 15px;
  border-radius:12px;
  border:1px solid #d7cff0;
}

/* 🔥 TEXTAREA FIXED */
textarea{
  width:100%;
  height:95px;                 /* 🔥 reduced height */
  padding:13px 15px;
  border-radius:12px;
  border:1px solid #d7cff0;
  resize:none;
  margin-bottom:10px;
}

button{
  width:100%;
  padding:13px;
  background:#d55191;
  color:#fff;
  border:none;
  border-radius:14px;
  font-size:15px;
  cursor:pointer;
}

button:hover{
  background:#674dad;
}

/* MAPS */
.map-wrapper{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.map-card{
  border-radius:22px;
  border:1px solid #d7cff0;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(103,77,173,.18);
}

.map-card iframe{
  width:100%;
  height:300px;
  border:none;
}

/* ANIMATIONS */
.animate-left{opacity:0;transform:translateX(-60px);animation:slideLeft .9s forwards;}
.animate-right{opacity:0;transform:translateX(60px);animation:slideRight .9s forwards;}
.animate-up{opacity:0;transform:translateY(40px);animation:fadeUp .9s forwards;}

@keyframes slideLeft{to{opacity:1;transform:none}}
@keyframes slideRight{to{opacity:1;transform:none}}
@keyframes fadeUp{to{opacity:1;transform:none}}

/* MOBILE */
@media(max-width:900px){
  .contact-wrapper,
  .map-wrapper{
    grid-template-columns:1fr;
  }

  .form-row{
    flex-direction:column;
  }

  .contact-info-box,
  .contact-form-box{
    padding:28px;
  }

  .contact-form-box{
    max-width:100%;
  }

  .map-card iframe{
    height:240px;
  }
}
.address-text{
  color:#674dad;   /* Address heading color */
  font-weight:500;
}
/* ===== MOBILE ONLY : ADDRESS TEXT ===== */
@media (max-width:768px){

  .address-text{
    font-size:14px;
    line-height:1.6;
    color:#674dad;      /* same Address heading color */
    display:block;
    margin-top:2px;
  }

}














:root {
  --brand-blue: #674dad; 
  --brand-pink: #d55191;
  --bg-soft-pink: #fdf2f6;
}

/* SECTION */
.appointment-banner {
  background-color: var(--bg-soft-pink);
  padding: 30px 0;
  width: 100%;
}

.banner-wrapper {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 450px 1fr; /* image small */
  align-items: center;
  gap: 0px; /* 🔥 remove extra space */
}

/* IMAGE LEFT */
.banner-img {
  max-width: 450px;
  margin-left: 100px;
}

.banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-left: -15px; /* 🔥 content image daggara */
  padding-right: 20px;
}

/* TITLE */
.banner-title {
  color: var(--brand-blue); 
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.banner-text {
  color: black; 
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 500px;
}

/* BUTTON */
.btn-book {
  background-color: var(--brand-pink);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-book:hover {
  background-color: #674dad;
  transform: scale(1.05);
  color: #fff;
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .appointment-banner {
    padding: 20px 0;
  }

  .banner-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .banner-img {
    max-width: 220px;
    margin: 0 auto;
  }

  .banner-content {
    margin-left: 0;
    padding-right: 0;
  }

  .banner-title {
    font-size: 17px;
  }

  .banner-text {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .btn-book {
    padding: 9px 20px;
    font-size: 14px;
  }
}

.banner-wrapper {
  width: 100%;
  margin: 0;
  display: flex;              /* 🔥 side by side */
  align-items: center;
  justify-content: center;
  gap: 20px;                  /* 🔥 small space between image & content */
}

/* IMAGE LEFT */
.banner-img {
  max-width: 420px;
  margin-left: 40px;
}

/* CONTENT RIGHT */
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* 🔥 left align */
  justify-content: center;
  text-align: left;           /* 🔥 text left */
  margin-left: 0;
  padding-right: 20px;
  max-width: 700px;
}










:root{
  --faq-blue:#674dad;
  --faq-light:#f4fbfa;
  --faq-white:#ffffff;
  --faq-pink:#d55191;
}

/* SECTION */
.faq-section{
  width:100%;
  padding:35px 15px; /* reduced */
  background:#fff;
}

/* CONTAINER */
.faq-container{
  max-width:1100px;
  margin:auto;
background: #e7e1fa;
  border-radius:20px;
  padding:30px; /* reduced */
  display:grid;
  grid-template-columns:320px 1fr;
  gap:25px; /* reduced */
  align-items:center;
}

/* IMAGE */
.faq-image img{
  width:100%;
  border-radius:16px;
  display:block;
  object-fit:cover;
}

/* CONTENT */
.faq-subtitle{
  font-size:13px;
  color:#7a8793;
  margin-bottom:6px;
  font-weight:500;
}

.faq-title{
  font-size:38px;
  color:var(--faq-blue);
  font-weight:700;
  margin-bottom:18px; /* reduced */
  line-height:1.2;
}

/* FAQ ITEM */
.faq-item{
  background:var(--faq-white);
  border-radius:14px;
  margin-bottom:12px; /* reduced */
  overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

/* QUESTION */
.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:18px 22px; /* reduced */
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:16px;
  font-weight:600;
  color:#1d2a36;
  cursor:pointer;
  text-align:left;
}

.faq-question span{
  font-size:22px;
  color:var(--faq-pink);
  font-weight:700;
}

/* ANSWER */
.faq-answer{
  padding:0 22px 18px;
  display:none;
}

.faq-answer p{
  color:#5d6975;
  font-size:14px;
  line-height:1.6;
  margin:0;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  display:block;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .faq-section{
    padding:20px 10px;
  }

  .faq-container{
    grid-template-columns:1fr;
    padding:18px;
    gap:18px;
  }

  .faq-image img{
    max-height:360px;
  }

  .faq-title{
    font-size:26px;
    margin-bottom:15px;
  }

  .faq-subtitle{
    font-size:11px;
  }

  .faq-question{
    padding:14px;
    font-size:13px;
  }

  .faq-question span{
    font-size:18px;
  }

  .faq-answer{
    padding:0 14px 14px;
  }

  .faq-answer p{
    font-size:12px;
    line-height:1.5;
  }
}








/* SECTION */
.insurance-section {
  padding: 70px 40px;
  background: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

/* TITLE */
.insurance-title {
  
/* Section Title & Subtitle */

  text-align: center;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #d55191;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* GRID LAYOUT */
.insurance-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px 45px;
  align-items: center;
}

/* CARD */
.insurance-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: transform 0.4s ease;
}

/* LOGOS */
.insurance-card img {
  width: 260px;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.insurance-card:hover img {
  transform: scale(1.08);
}

/* =========================
   AOS CUSTOM EFFECTS
========================= */

/* RIGHT ANIMATION */
[data-aos="right-slide"] {
  opacity: 0;
  transform: translateX(80px);
  transition-property: transform, opacity;
}

[data-aos="right-slide"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* LEFT ANIMATION */
[data-aos="left-slide"] {
  opacity: 0;
  transform: translateX(-80px);
  transition-property: transform, opacity;
}

[data-aos="left-slide"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* TABLET */
@media (max-width: 992px) {

  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insurance-card img {
    width: 240px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .insurance-title {
    font-size: 32px;
  }

  .insurance-card {
    height: 120px;
  }

  .insurance-card img {
    width: 220px;
  }
}