: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
========================= */
@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 – CONSTANT */
.footer-col h4{
  font-weight:600;
  margin-bottom:15px;
}

/* ZOOM ANIMATION (CONTENT ONLY) */
.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;
}

/* 🔹 ONLY CHANGE: LOGO SIZE */
.footer-logo img{
  width:240px;           /* increased from 45px */
  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);
}

/* 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 – pulse */
.whatsapp{
  bottom:90px;
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Phone – gentle float */
.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){
  .footer{
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-logo{
    justify-content:center;
  }

  .footer-logo img{
    width:70px;     /* mobile balance */
  }

  .social-icons{
    justify-content:center;
  }
}
/* FOOTER ADDRESS SPACING */
.footer-address{
  margin-bottom:14px;
}

.footer-address p{
  margin-bottom:6px;
  font-size:14px;
}

/* MOBILE TUNING */
@media(max-width:768px){
  .footer-address{
    margin-bottom:18px;
  }
}





/* ================= HERO SLIDER ================= */

.main-slider{
  width:100%;
  height:88vh;
  position:relative;
  overflow:hidden;
  background:#000;
}

.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;
}

.main-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 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.2)
  );
}

/* CONTENT */
.main-slide-content{
  position:absolute;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  max-width:620px;
  z-index:2;
  animation:slideFade 1.2s ease;
}

.main-slide-content h1{
  font-size:52px;
  font-weight:700;
  margin-bottom:12px;
}

.main-slide-content p{
  font-size:18px;
  line-height:1.6;
  text-align: justify;
  margin-bottom:22px;
  opacity:0.95;
}

/* ================= BOOK APPOINTMENT BUTTON ================= */

.hero-cta-btn{
  display:inline-block;
  padding:13px 34px;
  background:#674dad;          /* PURPLE */
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  border-radius:30px;
  text-decoration:none;
  transition:0.35s ease;
}

.hero-cta-btn:hover{
  background:#d55191;          /* PINK */
  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 ================= */

@media(max-width:768px){

  .main-slider{
    height:65vh;
  }

  .main-slide-content{
    left:6%;
    max-width:90%;
  }

  .main-slide-content h1{
    font-size:28px;
  }

  .main-slide-content p{
    font-size:14.5px;
  }

  .hero-cta-btn{
    padding:11px 28px;
    font-size:14px;
  }
}







/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

/* FLEX LAYOUT */
.about-container {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* CONTENT – LEFT nundi ravali */
.about-content {
  flex:1;
  opacity:0;
  transform:translateX(-80px);
  animation:slideLeft 1s ease forwards;
}

/* IMAGE – RIGHT nundi ravali */
.about-image {
  flex:1;
  opacity:0;
  transform:translateX(80px);
  animation:slideRight 1s ease forwards;
}

/* IMAGE STYLE */
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* TEXT */
.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d55191;
  margin-bottom: 14px;
}

.about-content p {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #000;
  text-align: justify;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 30px;
  background:#d55191;
  color:#ffffff;
  font-size:14.5px;
  font-weight:700;
  text-transform:uppercase;
  border-radius:6px;
  transition:0.3s ease;
}

.about-btn:hover {
  background:#674dad;
  transform: translateY(-2px);
}

/* ================= ANIMATIONS ================= */
@keyframes slideLeft {
  from {
    opacity:0;
    transform:translateX(-80px);
  }
  to {
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity:0;
    transform:translateX(80px);
  }
  to {
    opacity:1;
    transform:translateX(0);
  }
}

/* ================= TABLET ================= */
@media(max-width:1100px){

  .about-container{
    gap:40px;
  }

  .about-image img{
    min-height:320px;
  }

  .about-content h2{
    font-size:26px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .about-section{
    padding:60px 0;
  }

  .about-container{
    flex-direction:column;
    gap:35px;
    align-items:center;
  }

  /* animation OFF mobile */
  .about-content,
  .about-image{
    animation:none;
    opacity:1;
    transform:none;
  }

  .about-content{
    text-align:center;
  }

  .about-content p{
    max-width:100%;
    text-align:justify;
  }

  .about-image img{
    height:260px;
    min-height:auto;
  }

  .about-btn{
    margin:20px auto 0;
  }
}







/* ================= OUR SPECIALITIES ================= */

.services-ref{
  padding:80px 20px 100px;
  background:#ede8ff;
  margin-bottom:30px;
  text-align:center;
}

/* HEADING – RIGHT ANIMATION */
.services-title{
  font-size:32px;
  color:#d55191;
  margin-bottom:30px;
  margin-top:-30px;
  font-weight:600;

  opacity:0;
  transform:translateX(60px);
  animation:slideRight .9s forwards;
}

/* TOP IMAGE – TOP ANIMATION */
.services-img{
  max-width:1050px;
  margin:0 auto;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 25px 55px rgba(0,0,0,0.18);

  opacity:0;
  transform:translateY(-60px);
  animation:slideDown .9s forwards .2s;
}

.services-img img{
  width:100%;
  height:460px;
  object-fit:cover;
}

/* CARDS GRID */
.speciality-cards{
  max-width:980px;
  margin:-80px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  position:relative;
  z-index:2;
}

/* CARD */
.speciality-card{
  background:#ffffff;
  padding:28px 22px;
  border-radius:22px;
  border:2px solid #d7cff0;
  box-shadow:0 22px 50px rgba(103,77,173,0.18);
  transition:0.35s ease;
}

.speciality-card:hover{
  transform:translateY(-8px);
}

/* ICON */
.speciality-icon{
  width:52px;
  height:52px;
  margin:-44px auto 14px;
  border-radius:50%;
  background:#674dad;
  display:flex;
  align-items:center;
  justify-content:center;
}

.speciality-icon i{
  font-size:22px;
  color:#ffffff;
}

/* TEXT */
.speciality-card h4{
  font-size:17px;
  color:#d55191;
  margin-bottom:8px;
  font-weight:600;
}

.speciality-card p{
  font-size:13.5px;
  line-height:1.65;
  color:#000;
  margin-bottom:12px;
  text-align:justify;
}

/* BUTTON */
.speciality-btn{
  display:inline-block;
  padding:8px 22px;
  background:#d55191;
  color:#fff;
  border-radius:26px;
  font-size:13px;
  transition:0.3s;
}

.speciality-btn:hover{
  background:#674dad;
}

/* CARD ANIMATIONS (UNCHANGED) */
.speciality-cards .speciality-card:nth-child(1){
  opacity:0;
  transform:translateX(-50px);
  animation:slideLeft .9s forwards .4s;
}

.speciality-cards .speciality-card:nth-child(2){
  opacity:0;
  transform:translateY(35px);
  animation:fadeUp .9s forwards .55s;
}

.speciality-cards .speciality-card:nth-child(3){
  opacity:0;
  transform:translateX(50px);
  animation:slideRight .9s forwards .7s;
}

/* ================= ANIMATIONS ================= */

@keyframes slideLeft{
  from{opacity:0; transform:translateX(-50px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
  from{opacity:0; transform:translateX(60px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(35px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes slideDown{
  from{opacity:0; transform:translateY(-60px);}
  to{opacity:1; transform:translateY(0);}
}

/* MOBILE */
@media(max-width:900px){

  .services-img img{
    height:240px;
  }

  .speciality-cards{
    grid-template-columns:1fr;
    margin-top:-70px;
  }

  .speciality-card p{
    text-align:left;
  }

  /* mobile animation disable (smooth feel) */
  .services-title,
  .services-img,
  .speciality-card{
    animation:none;
    opacity:1;
    transform:none;
  }
}





/* ===== 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;
  }
}







.vector-header{
  width:100%;
  padding:12px 10px; /* reduced */
  background:#f4f4f4;
}

/* MAIN BOX */
.vector-content{
  max-width:1100px;
  margin:auto;
  background:#ffffff;
  border-radius:60px;
  padding:32px 45px; /* reduced */

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px; /* reduced */

  box-shadow:0 6px 18px rgba(0,0,0,0.05);

  animation:zoomInSoft .8s ease forwards;
  opacity:0;
  transform:scale(0.92);
}

/* TEXT */
.vector-text h2{
  font-size:30px; /* reduced */
  font-weight:700;
  color:#d55191;
  margin-bottom:10px;
  line-height:1.1;
  text-transform:uppercase;
  letter-spacing:0.5px; /* reduced */

  animation:zoomInSoft .8s ease forwards .15s;
  opacity:0;
  transform:scale(0.9);
}

.vector-text p{
  font-size:15px; /* reduced */
  color:#666666;
  line-height:1.5;
  max-width:900px;
}

/* ICON */
.vector-icon{
  min-width:90px;
  width:90px;
  height:90px;
  border-radius:50%;
  background:#d55191;

  display:flex;
  align-items:center;
  justify-content:center;
}

.vector-icon i{
  font-size:38px;
  color:#ffffff;
}

/* ANIMATION */
@keyframes zoomInSoft{
  from{
    opacity:0;
    transform:scale(0.92);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .vector-header{
    padding:10px 8px;
  }

  .vector-content{
    flex-direction:column;
    text-align:center;
    border-radius:28px;
    padding:22px 16px;
    gap:14px;

    animation:none;
    opacity:1;
    transform:none;
  }

  .vector-text h2{
    font-size:22px;
    margin-bottom:8px;
    letter-spacing:0;

    animation:none;
    opacity:1;
    transform:none;
  }

  .vector-text p{
    font-size:13px;
    line-height:1.5;
  }

  .vector-icon{
    width:70px;
    height:70px;
    min-width:70px;
  }

  .vector-icon i{
    font-size:28px;
  }
}

/* ================= SECTION ================= */
.home-services{
  padding:50px 0;
  background:white;
}

/* 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;

  opacity:0;
  animation-duration:1s;
  animation-fill-mode:forwards;
  animation-timing-function:cubic-bezier(.4,0,.2,1);
  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;
}

.home-service-card .know-more:hover{
  background:#674dad;
}

/* ================= DESKTOP ANIMATIONS ================= */

/* LEFT cards */
.home-service-card:nth-child(1),
.home-service-card:nth-child(4){
  animation-name:slideFromLeft;
}

/* MIDDLE cards */
.home-service-card:nth-child(2),
.home-service-card:nth-child(5){
  animation-name:slideFromBottom;
}

/* RIGHT cards */
.home-service-card:nth-child(3),
.home-service-card:nth-child(6){
  animation-name:slideFromRight;
}

/* DELAYS (smooth look) */
.home-service-card:nth-child(1){ animation-delay:0s; }
.home-service-card:nth-child(2){ animation-delay:0.15s; }
.home-service-card:nth-child(3){ animation-delay:0.3s; }
.home-service-card:nth-child(4){ animation-delay:0.45s; }
.home-service-card:nth-child(5){ animation-delay:0.6s; }
.home-service-card:nth-child(6){ animation-delay:0.75s; }

/* KEYFRAMES */
@keyframes slideFromLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideFromRight{
  from{
    opacity:0;
    transform:translateX(60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideFromBottom{
  from{
    opacity:0;
    transform:translateY(60px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* HOVER EFFECT */
.home-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(103,77,173,0.22);
}

/* ================= 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;
  }

  /* MOBILE animation bottom */
  .home-service-card{
    animation-name:slideFromBottom !important;
  }

  .home-service-card img{
    height:180px;
  }
}










/* =========================
   PEDIATRIC SURGERY SECTION
========================= */

.surgery-section{
    width:100%;
    padding:20px 6%;
    background:#fff;
    overflow:hidden;
}

/* MAIN CONTAINER */
.surgery-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    background:#fff;

    border-radius:35px;

    padding:50px;

    box-shadow:0 10px 35px rgba(0,0,0,0.06);

    position:relative;
}

/* LEFT */
.surgery-content{
    width:52%;
}

/* BADGE */
.surgery-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:22px;
}

/* TITLE */
.surgery-content h2{
    font-size:50px;
    line-height:1.15;
    color:#674dad;

    margin-bottom:22px;

    font-weight:800;
}

/* DESCRIPTION */
.surgery-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;

    margin-bottom:35px;

    max-width:620px;
}

/* POINTS */
.surgery-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

    margin-bottom:35px;
}

/* SINGLE POINT */
.surgery-point{
    display:flex;
    align-items:center;
    gap:14px;

    background:#faf7ff;

    border:1px solid #efe7ff;

    padding:18px 20px;

    border-radius:18px;

    transition:0.3s;
}

.surgery-point:hover{
    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(103,77,173,0.12);
}

/* ICON */
.surgery-point i{
    width:50px;
    height:50px;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    flex-shrink:0;
}

/* TEXT */
.surgery-point span{
    font-size:16px;
    font-weight:600;
    color:#2a2140;
}

/* BUTTON */
.surgery-btn{
    display:inline-block;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;
    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.3s;
}

.surgery-btn:hover{
    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(103,77,173,0.25);
}

/* RIGHT SIDE */
.surgery-image-area{
    width:52%;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* BACKGROUND SHAPE */
.image-bg{
    position:absolute;

    width:430px;
    height:430px;

    background:linear-gradient(135deg,#674dad,#d55191);

    border-radius:40% 60% 60% 40% / 40% 40% 60% 60%;

    opacity:0.12;
}

/* IMAGE */
.surgery-image-area img{
    width:100%;
    max-width:650px;
    height:520px;

    object-fit:cover;

    border-radius:30px;

    position:relative;
    z-index:2;

    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* FLOAT CARD */
.mini-card{
    position:absolute;

    bottom:25px;
    left:-20px;

    background:#fff;

    border-radius:20px;

    padding:18px 22px;

    display:flex;
    align-items:center;
    gap:15px;

    z-index:5;

    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.mini-card i{
    width:58px;
    height:58px;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.mini-card h4{
    font-size:20px;
    color:#2a2140;

    margin-bottom:4px;
}

.mini-card p{
    font-size:14px;
    color:#666;
}

/* RESPONSIVE */
@media(max-width:991px){

    .surgery-container{
        flex-direction:column;
        padding:30px;
    }

    .surgery-content,
    .surgery-image-area{
        width:100%;
    }

    .surgery-content h2{
        font-size:40px;
    }

    .surgery-points{
        grid-template-columns:1fr;
    }

    .surgery-image-area img{
        height:400px;
    }

    .image-bg{
        width:320px;
        height:320px;
    }

    .mini-card{
        left:10px;
        bottom:10px;
    }
}














/* ================= SECTION ================= */
.our-purpose{
  padding:80px 20px;
  background:linear-gradient(180deg,#f7f3ff,#ffffff);
  text-align:center;
  overflow: hidden;
}

/* ================= HEADING ================= */
.purpose-heading{
  font-size:36px;
  font-weight:700;
  color:#d55191;
  margin-bottom:20px;

  opacity:0;
  transform:scale(.85);
  transition:all .7s ease;
}

.purpose-heading span{
  color:#674dad;
}

/* SHOW STATE (triggered by JS) */
.purpose-heading.show{
  opacity:1;
  transform:scale(1);
}

/* INTRO TEXT */
.purpose-intro{
  max-width:760px;
  margin:0 auto 50px;
  font-size:16px;
  line-height:1.7;
  color:black;
}

/* ================= PANELS WRAP ================= */
.purpose-panels{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

/* ================= PANEL BASE ================= */
.purpose-panel{
  width:420px;
  padding:45px 40px;
  border-radius:30px;
  position:relative;
  background:#ffffff;
  box-shadow:0 30px 70px rgba(103,77,173,0.18);
  text-align:left;

  opacity:0;
  transition:all .8s ease;
}

/* LEFT CARD START POSITION */
.mission{
  border-top:6px solid #d55191;
  transform:translateX(-80px);
}

/* RIGHT CARD START POSITION */
.vision{
  border-top:6px solid #674dad;
  transform:translateX(80px);
}

/* SHOW STATE */
.purpose-panel.show{
  opacity:1;
  transform:translateX(0);
}

/* TAG */
.panel-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:14px;
  color:#ffffff;
  padding:6px 14px;
  border-radius:30px;
}

.mission .panel-tag{ background:#d55191; }
.vision .panel-tag{ background:#d55191; }

/* ICON */
.purpose-panel .icon{
  font-size:32px;
  margin-bottom:12px;
  color:#d55191;
}

/* HEADINGS */
.purpose-panel h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:14px;
  color:#674dad;
}

/* TEXT */
.purpose-panel p{
  font-size:15.5px;
  line-height:1.8;
  color:#000;
  text-align:justify;
}

/* GLOW EFFECT */
.purpose-panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  background:radial-gradient(circle at top right,
    rgba(213,81,145,0.18),
    transparent 60%);
  opacity:.8;
  pointer-events:none;
}

/* HOVER */
.purpose-panel:hover{
  transform:translateY(-8px);
  box-shadow:0 40px 90px rgba(103,77,173,0.25);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .purpose-heading{
    font-size:28px;
  }

  .purpose-intro{
    font-size:15px;
    margin-bottom:40px;
  }

  .purpose-panel{
    width:100%;
    max-width:380px;
    padding:38px 26px;
    transform:translateY(50px);
  }

  .purpose-panel.show{
    transform:translateY(0);
  }
}











/* ================= 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;
  }
}




/* ================= WHY CHOOSE US ================= */

.premium-why-section{
    width:100%;
    padding:65px 5%;
    background:#f8f6fc;
    overflow:hidden;
}

/* WRAPPER */
.premium-why-wrapper{
    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

/* LEFT */
.premium-why-content{
    width:100%;
}

/* TAG */
.premium-tag{
    display:inline-block;

    background:rgb(213, 81, 145,0.10);

    color:#d55191;

    padding:10px 20px;

    border-radius:40px;

    font-size:13px;
    font-weight:700;

    margin-bottom:18px;
}

/* TITLE */
.premium-why-content h2{
    font-size:35px;
    line-height:1.18;

    color:#2d1b69;

    margin-bottom:18px;

    font-weight:800;
}

/* TEXT */
.premium-why-content p{
    font-size:16px;
    line-height:1.9;

    color:#555;
    text-align: justify;

    margin-bottom:28px;

    max-width:560px;
}

/* HIGHLIGHTS */
.premium-highlights{
    display:flex;
    flex-direction:column;

    gap:14px;

    margin-bottom:30px;
}

/* LINE */
.highlight-line{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;

    padding:16px 18px;

    border-radius:16px;

    border-left:4px solid #d55191;

    box-shadow:0 6px 18px rgba(103,77,173,0.08);

    transition:.3s;
}

.highlight-line:hover{
    transform:translateX(5px);
}

/* ICON */
.highlight-line i{
    color:#d55191;
    font-size:18px;
}

/* TEXT */
.highlight-line span{
    color:#2d1b69;

    font-size:15px;
    font-weight:600;

    line-height:1.6;
}

/* BUTTON */
.premium-btn{
    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.premium-btn:hover{
    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(103,77,173,0.18);
}

/* RIGHT */
.premium-why-image{
    position:relative;
}

/* IMAGE */
.premium-why-image img{
    width:100%;
    height:560px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}

/* FLOAT BOX */
.floating-box{
    position:absolute;

    background:#fff;

    padding:16px 18px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:14px;

    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

/* TOP */
.top-box{
    top:5px;
    left:-25px;
}

/* BOTTOM */
.bottom-box{
    bottom:25px;
    right:-25px;
}

/* ICON */
.floating-box i{
    width:52px;
    height:52px;

    background:linear-gradient(135deg,#674dad,#d55191);

    color:#fff;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

/* TEXT */
.floating-box h4{
    font-size:17px;
    color:#2d1b69;

    margin-bottom:4px;
}

.floating-box p{
    font-size:13px;
    color:#666;
text-align: justify;
    line-height:1.5;
}

/* MOBILE */
@media(max-width:991px){

    .premium-why-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .premium-why-content h2{
        font-size:36px;
    }

    .premium-why-image img{
        height:380px;
    }

    .floating-box{
        position:relative;
        top:0;
        left:0;
        right:0;
        bottom:0;

        margin-top:16px;
    }
}




.facility-section {
  padding: 40px 0;
  overflow: hidden;
  background: #ede9f7;
}

.facility-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color:#d55191;
  margin-bottom: 8px;

  opacity:0;
  transform:scale(.85);
  transition:all .7s ease;
}

.facility-title.show{
  opacity:1;
  transform:scale(1);
}

.facility-sub {
  text-align: center;
  font-size: 15px;
  color: #000;
  margin-bottom: 55px;
}

.facility-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.facility-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 25px;
  text-align: center;
  border: 1px solid rgba(15,118,110,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.5s ease;

  opacity:0;
}

/* LEFT START */
.facility-card.left{
  transform:translateX(-70px);
}

/* RIGHT START */
.facility-card.right{
  transform:translateX(70px);
}

/* SHOW */
.facility-card.show{
  opacity:1;
  transform:translateX(0);
}

.facility-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px #d55191;
}

.icon-circle{
  width:64px;
  height:64px;
  margin:0 auto 18px;
  border-radius:50%;
  background:rgba(15,118,110,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-circle i{
  font-size:28px;
  color:#674dad;
}

.facility-card h3{
  font-size:15.5px;
  font-weight:700;
  text-transform:uppercase;
  color:#674dad;
}

/* TABLET */
@media(max-width:1100px){
  .facility-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:768px){

  .facility-container{
    grid-template-columns:1fr;
  }

  .facility-card.left,
  .facility-card.right{
    transform:translateY(50px);
  }

  .facility-card.show{
    transform:translateY(0);
  }
}














/* ================= GALLERY ================= */
.gallery-section {
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
}

/* TITLE */
.gallery-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  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;
  }
}












 .contact-modern {
  padding: 50px 20px 50px;
  background: #f4fbfa;
  overflow: hidden;
  font-family:Arial, Helvetica, sans-serif;
}

/* WRAPPER */
.contact-wrapper {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 35px;
  margin-bottom: 30px;
}

/* LEFT INFO BOX */
.contact-info-box {
  background: #ffffff;
  padding: 42px;
  border-radius: 22px;
 box-shadow: 0 20px 50px rgba(103, 77, 173, 0.18);
}

.contact-info-box h3 {
  font-size: 28px;
  color: #d55191;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-desc {
  font-size: 14px;
  color: #674dad;
  margin-bottom: 30px;
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f3f1fb;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(103, 77, 173, 0.18);
}

.info-item i {
  font-size: 22px;
  color: #674dad;
  margin-top: 4px;
}

.info-item h4 {
  color: #d55191;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}

.info-item p,
.info-item a {
  font-size: 14px;
  color: #674dad;
  text-decoration: none;
}

/* RIGHT FORM */
.contact-form-box {
  background: linear-gradient(180deg, #ffffff, #f3f1fb);
  padding: 42px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(13, 95, 89, 0.15);
}

.contact-form-box h3 {
  font-size: 28px;
  color: #d55191;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dfeeee;
  font-size: 14px;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

.contact-form-box button {
  margin-top: 10px;
  padding: 14px;
  width: 100%;
  background: #d55191;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-box button i {
  margin-right: 6px;
}

.contact-form-box button:hover {
  background: #674dad;
  transform: translateY(-2px);
}

/* MAP */
.map-card {
  max-width: 1150px;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13,95,89,0.18);
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ANIMATIONS */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideLeft 0.9s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight 0.9s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 32px;
  }

  .map-card iframe {
    height: 260px;
  }
}
.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{
  --faq-blue:#674dad;
  --faq-light:#f4fbfa;
  --faq-white:#ffffff;
  --faq-pink:#d55191;
}

/* SECTION */
.faq-section{
  width:100%;
  padding:35px 15px; /* reduced */
  background:#fff;
  overflow: hidden;
}

/* 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;
  }
}