*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
html, body{
overflow-x:hidden;
width:100%;
}
/* NAVBAR */


/* NAVBAR */
#navbar{
position:fixed;
top:40px; /* only initial */
left:0;
width:100%;
z-index:1000;
background:white;
transition:top 0.3s ease;
}

.navbar-scrolled{
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* CONTAINER */
.nav-container{
width:100%;
max-width:1200px;
margin:0 auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 16px;
}

/* LOGO */

.logo img{
height:60px;
display:block;
}
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}
/* NAV LINKS */

.nav-links{
display:flex;
list-style:none;
gap:40px;
align-items:center;
}

.nav-links a{
text-decoration:none;
font-weight:700;
position:relative;
transition:0.3s;
color:#0282a5;
text-transform:uppercase;
}

/* HOVER */

.nav-links a:hover{
color:#ff4d4f;
}

.nav-links > li > a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#ff4d4f;
transition:0.3s;
}

.nav-links > li > a:hover::after{
width:100%;
}



/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}




@media (max-width:768px){



/* NAV CONTAINER */

.nav-container{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
}

/* LOGO */

.logo img{
height:45px;
}

/* MENU ICON */

.menu-toggle{
display:block;
font-size:26px;
cursor:pointer;
}

/* NAV LINKS */

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:flex-start;
gap:18px;
padding:20px;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* ACTIVE MENU */

.nav-links.active{
display:flex;
}

/* NAV LINK STYLE */

.nav-links a{
color:black !important;
font-size:16px;
width:100%;
}

/* DROPDOWN */
}


/* ===== TOP BAR ===== */

.top-bar{
position:fixed;
top:0;
left:0;
width:100%;
height:40px; /* FIXED HEIGHT */
background:#0282a5;
color:#ffffff;
z-index:1001;

display:flex;
align-items:center;

transition:transform 0.3s ease;
}
.top-container{
width:100%;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;

height:100%; /* IMPORTANT */
padding:0 16px; /* REMOVE vertical padding */
}

.top-left span{
margin-right:20px;
display:inline-flex;
align-items:center;
gap:6px;
}

.top-right a{
color:white;
margin-left:15px;
transition:0.3s;
}

.top-right a:hover{
color:  #ff4d4f;;
}
.nav-cta{
background: #ff4d4f;;
color:#fff;
padding:10px 22px;
border-radius:4px;
font-size:13px;
font-weight:700;
text-decoration:none;
transition:0.3s;
}

.nav-cta:hover{
background:#0282a5;
transform:translateY(-2px);
}

@media (max-width:768px){

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

/* keep CTA visible */
.nav-cta{
display:inline-block;
font-size:12px;
padding:8px 14px;
}

/* reduce logo size */
.logo img{
height:45px;
}

}

@media (max-width:768px){

#navbar{
top:40px; /* match EXACT topbar height */
}
.top-bar{
height:40px; /* slightly small */
font-size:11px;
}

/* LEFT SIDE (PHONE + EMAIL) */
.top-left{
display:flex;
align-items:center;
gap:8px;
overflow:hidden;
}

/* hide email for clean look */
.top-left span:nth-child(2){
display:none;
}

/* RIGHT SIDE ICONS */
.top-right{
display:flex;
align-items:center;
gap:8px;
}

.top-right a{
margin:0;
font-size:12px;
}

}


















:root {
  --primary: #ff4d4f;
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100vh;
  position: relative;
}

/* IMAGE PERFECT FIT */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

/* ZOOM EFFECT */
.hero-slide.active img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.hero-slide::before {
  content: "";
  position: absolute;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    transparent
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 55%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.6s ease;
}

.hero-content p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.6s ease 0.2s;
}

.hero-btn {
  display: inline-block;
  padding: 15px 32px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.6s ease 0.4s;
}

.hero-btn:hover {
  background: #0282a5;
  color: white;
}

/* ACTIVE TEXT ANIMATION */
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-btn {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE RESPONSIVE */
@media (max-width:768px){

.hero {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
}

.hero-slide img {
  height: 100vh;
  object-fit: cover;
}

/* MOBILE OVERLAY */
.hero-slide::before {
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2)
  );
}

.hero-content {
  top: 60%;
  left: 6%;
  width: 88%;
}

.hero-content h1 {
  font-size: 35px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero-btn {
  font-size: 15px;
  padding: 14px 28px;
}

}



/* Core Section Styles */
:root {
  --hospital-red: #ff4d4f;
  --hospital-gold: #0282a5;
  --bg-light: #fdfdfd; 
  --text-dark: #222;
  --text-muted: #666;
}

.premiu-about-section {
  padding: 40px 20px;
  background:white ! important;
  overflow: hidden;
}

.p-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
   text-align: justify;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Image side ki konchem ekkuva space */
  gap: 60px;
  align-items: flex-start; /* Matter & Pic okate level lo start avthayi */
}

/* --- LEFT SIDE: 2-IMAGE DYNAMIC GRID --- */
.about-visuals-grid {
  position: relative;
  display: flex;
  flex-direction: column; /* Stacked look for precise control */
}

/* 1. Primary Photo (Top Left) */
.primary-photo-box {
  position: relative;
  width: 75%; 
  z-index: 2;
  /* Matter start ayye line ki match chesthundi */
  margin-top: 10px; 
}

.primary-photo {
  width: 100%;
  height: 350px; /* Fixed height for neatness */
  object-fit: cover; /* Image cut avvakunda neat ga untundi */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: block;
}

/* Experience Bubble */
.experience-bubble {
  position: absolute;
  top: 20px;
  left: -30px;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-left: 4px solid #0282a5;
  z-index: 10;
}

.experience-bubble strong { font-size: 28px; color: #0282a5; display: block; line-height: 1; }
.experience-bubble span { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* 2. Secondary Photo (Starts where 1st ends) */
.secondary-photo-box {
  position: absolute;
  width: 55%; 
  /* 1st photo bottom lo start ayye logic */
  top: 200px; 
  right: 0;
  z-index: 3;
}

.secondary-photo {
  width: 100%;
  height: 280px; /* Precise height */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 6px solid white; /* Overlap depth */
}

/* Background Shape for Creative Look */
.creative-bg-shape {
  position: absolute;
  top: -20px;
  left: -40px;
  width: 80%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  border-radius: 30px;
  z-index: 1;
}

/* --- RIGHT SIDE: CONTENT --- */
.about-premium-content {
  padding-top: 10px; /* Primary photo margin-top tho sync chesa */
}

.section-top-title {
  color: var(--hospital-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.about-premium-content h2 {
  font-size: 40px;
  color: #0282a5;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-premium-content h2 span { color: var(--hospital-red); }

.doctor-specialization {
  color: #ff4d4f;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.doctor-bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.specialized-points {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.specialized-points li {
  display: flex;
  gap: 12px;
}

.p-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #0282a5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.p-text h5 { font-size: 15px; color: var(--text-dark); margin: 0; margin-bottom: 10px;}
.p-text p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary-about {
  padding: 14px 30px;
  background: var(--hospital-red);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-secondary-about {
  padding: 14px 30px;
  border: 1px solid #ddd;
  color: var(--text-dark);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary-about:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(230, 29, 36, 0.2); }

/* --- RESPONSIVE --- */
/* ===== TABLET ===== */
@media (max-width: 991px) {

  .p-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: justify;
    padding: 0 15px;
  }

  .about-visuals-grid {
    position: relative;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }

  /* PRIMARY IMAGE */
  .primary-photo-box {
    width: 80%;
    margin: 0 auto;
  }

  .primary-photo {
    height: 300px;
  }

  /* SECONDARY IMAGE */
  .secondary-photo-box {
    position: relative; /* 🔥 remove absolute for tablet */
    width: 70%;
    top: -60px; /* overlap effect */
    margin: 0 auto;
  }

  .secondary-photo {
    height: 240px;
  }

  /* EXPERIENCE BOX */
  .experience-bubble {
    left: 10px;
    top: 10px;
  }

  /* CONTENT */
  .about-premium-content {
    text-align: center;
    padding-top: 0;
  }

  .specialized-points {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* ===== MOBILE ===== */
@media (max-width: 600px) {

  .premium-about-section {
    padding: 30px 15px;
  }

  .p-about-container {
    padding: 0;
    gap: 30px;
  }

  /* STACK IMAGES CLEAN */
  .about-visuals-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .primary-photo-box,
  .secondary-photo-box {
    position: relative;
    width: 100%;
    top: 0;
    margin: 0;
  }

  .primary-photo {
    height: 240px;
    border-radius: 16px;
  }

  .secondary-photo {
    height: 200px;
    border-radius: 16px;
    margin-top: -40px; /* slight overlap */
  }

  /* EXPERIENCE BADGE */
  .experience-bubble {
    top: 10px;
    left: 10px;
    padding: 10px 14px;
  }

  .experience-bubble strong {
    font-size: 22px;
  }

  .experience-bubble span {
    font-size: 11px;
  }

  /* TEXT */
  .about-premium-content h2 {
    font-size: 28px;
  }

  .doctor-specialization {
    font-size: 16px;
  }

  .doctor-bio {
    font-size: 14px;
    text-align: justify;
  }

  /* POINTS */
  .specialized-points {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .p-text h5 {
    font-size: 14px;
  }

  .p-text p {
    font-size: 12px;
  }

  /* BUTTONS */
  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary-about,
  .btn-secondary-about {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}











/* --- UI Variables --- */
:root {
  --h-blue: #0282a5;
  --h-red: #ff4d4f;
  --text-main: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --bg-soft: #f8fafc;
}

.premium-about-section {
  padding: 40px 20px;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
}

.doc-container {
  max-width: 1140px;
  margin: 0 auto;
}

.premium-doc-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--white);
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 40px 100px rgba(2, 130, 165, 0.08);
  border: 1px solid rgba(2, 130, 165, 0.05);
  flex-wrap: wrap;
}

/* --- Content Styling --- */
.doc-content-area {
  flex: 1.3;
  min-width: 320px;
}

.premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 79, 0.1);
  color: var(--h-red);
  padding: 8px 20px;
  border-radius: 100px; /* Perfect Pill Shape */
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.doc-name-title {
  font-size: 42px;
  
  font-weight: 800;
  color: var(--h-blue);
  line-height: 1.1;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}

/* Stylish Side Accent Line */
.doc-name-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 6px;
  background: var(--h-blue);
  border-radius: 10px;
}

.doc-name-title span {
  color: var(--h-red);
}

.doc-meta-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.meta-capsule {
  background: var(--bg-soft);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
}

.meta-capsule i {
  color: var(--h-blue);
}

.doc-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 35px;
  text-align: justify;
}

.doc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.feature-item i {
  color: var(--h-red);
}

/* --- Image Styling --- */
.doc-image-area {
  flex: 1;
  position: relative;
  min-width: 320px;
}

.image-inner {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 5px var(--h-blue); /* Offset Background Effect */
}

.main-doc-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.premium-doc-card:hover .main-doc-img {
  transform: scale(1.05);
}

.floating-experience {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  border: 1px solid #f1f5f9;
}

.exp-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--h-blue);
}

.exp-text {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

/* --- Button --- */
.btn-premium-book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--h-red);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s all ease;
  box-shadow: 0 10px 25px rgba(255, 77, 79, 0.2);
}

.btn-premium-book:hover {
  background: var(--h-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(2, 130, 165, 0.25);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .premium-doc-card {
    padding: 30px;
    gap: 40px;
  }
  .doc-name-title { font-size: 40px; }
}

@media (max-width: 768px) {
  .doc-image-area { order: -1; } /* Image comes first on mobile */
  .doc-name-title { font-size: 32px; }
  .doc-features-grid { grid-template-columns: 1fr; }
  .image-inner { box-shadow: 15px 15px 0px var(--h-blue); }
}
























:root {
  --vm-red: #ff4d4f;
  --dark: #0282a5;
}

/* SECTION */
.arrow-banner {
  position: relative;
  height: 180px;
  background:#0282a5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* TEXT */
.arrow-content {
  color: white;
  text-align: center;
  z-index: 2;
}

.arrow-content h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.arrow-content p {
  font-size: 16px;
  color: white;
  font-weight: 600;
  opacity: 0.8;
}

/* ================= LEFT ARROWS ================= */

/* MAIN LEFT */
.arrow-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 100%;

  background: linear-gradient(135deg, #ff4d4f, #ff4d4f);

  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* SECOND LEFT LAYER */
.arrow-banner .arrow-content::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  width: 140px;
  height: 100%;

  background: linear-gradient(135deg, #ff4d4f, #ff4d4f);

  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.6;
}

/* ================= RIGHT ARROWS ================= */

/* MAIN RIGHT */
.arrow-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 100%;

  background: linear-gradient(135deg, #ff4d4d, #ff4d4d);

  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* SECOND RIGHT */
.arrow-banner .arrow-content::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  width: 140px;
  height: 100%;

  background: linear-gradient(135deg, #ff4d4f, transparent);

  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  opacity: 0.6;
}
@media (max-width:768px){

.arrow-banner {
  height: 140px;
}

.arrow-content h2 {
  font-size: 20px;
}

.arrow-content p {
  font-size: 12px;
}

/* Reduce arrows */
.arrow-banner::before,
.arrow-banner::after {
  width: 100px;
}

}








/* SECTION & CONTAINER */
.services-modern-section {
  padding: 50px 50px;
  background-color: #f1f5f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING VARIATION DESIGN */
.main-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.sub-tag {
  color: var(--hospital-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.title {
  font-size: 42px;
  color: #f99d26;
  font-weight: 800;
 
}

.title span { 
    color: var(--hospital-red);
  
}

.header-variation {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}

.bar {
  height: 5px;
  border-radius: 10px;
}
.bar.red { width: 40px; background: var(--hospital-red); }
.bar.blue { width: 15px; background: #f99d26; }

/* GRID SYSTEM FOR EQUAL HEIGHT */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

/* CARD STYLING */
.service-card-item {
  background: #ffffff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column; /* This helps in keeping content organized */
  transition: all 0.4s ease;
}

.service-card-item:hover {
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  height: 280px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--hospital-red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* CONTENT SPACING */
.card-content {
  padding: 40px;
  flex-grow: 1; /* Makes all cards fill the same height */
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 22px;
  color: #0282a5;
  margin-bottom: 20px;
  font-weight: 800;
}

.description {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

/* POINTS LIST (No Boxes, Clean Icons) */
.points-list {
  margin-top: auto; /* Pushes points to the bottom so they align in both cards */
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
}

.point-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.point-row i {
  color: #0282a5;
  font-size: 18px;
  margin-top: 3px;
}

.point-row span {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

/* MOBILE RESPONSIVE */
/* ================= MOBILE FIX ================= */
@media (max-width:768px){

/* SECTION */
.services-modern-section {
  padding: 40px 15px; /* 🔥 side padding reduce */
}

/* HEADER */
.main-header-center {
  margin-bottom: 30px; /* 🔥 gap reduce */
}

.sub-tag {
  font-size: 12px;
  letter-spacing: 1px;
}

.title {
  font-size: 28px; /* 🔥 balanced size */
  line-height: 1.2;
}

/* GRID */
.services-cards-grid {
  grid-template-columns: 1fr;
  gap: 20px; /* 🔥 less gap */
}

/* CARD */
.service-card-item {
  border-radius: 20px; /* 🔥 smaller radius */
}

/* IMAGE */
.card-image {
  height: 200px;
}

.img-badge {
  font-size: 11px;
  padding: 5px 12px;
}

/* CONTENT */
.card-content {
  padding: 20px; /* 🔥 reduced */
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.description {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left; /* 🔥 better readability */
}

/* POINTS */
.points-list {
  padding-top: 15px;
  gap: 10px;
}

.point-row {
  gap: 10px;
}

.point-row i {
  font-size: 16px;
}

.point-row span {
  font-size: 13px;
  line-height: 1.3;
}

}

















/* CARD CONTENT */
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 center horizontally */
  text-align: center;
}

/* BUTTON */
.read-more-btn{
  display: inline-block;
  margin-top: 30px;


  background: linear-gradient(135deg, #ff4d4f, #d9468f);
  color: #fff;

  padding: 10px 26px;
  border-radius: 30px; /* 🔥 pill shape */

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* HOVER */
.read-more-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,77,79,0.3);
}

/* MOBILE */
@media(max-width:768px){

  .read-more-btn{
    padding: 11px 22px;
    font-size: 13px;
  }

}









/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7f9;
}

/* ===============================
   SECTION
================================= */
.subservice-section {
    padding: 50px 20px 100px;
}

/* ===============================
   HEADER
================================= */
.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 34px;
    font-weight: 700;
    color: #0282a5;
    margin-bottom: 10px;
}

.category-sub {
    font-size: 16px;
    color: #6b7280;
}

/* ===============================
   GRID LAYOUT
================================= */
.subservice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   CARD
================================= */
.sub-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
   
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}





.su-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
   
}

.su-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===============================
   IMAGE
================================= */
.sub-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ===============================
   TEXT
================================= */
.sub-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0282a5;
    margin-bottom: 10px;
}

.sub-card-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ===============================
   BUTTON
================================= */
.sub-card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4d4d;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.sub-card-btn:hover {
    background: #0282a5;
}

/* ===============================
   TABLET RESPONSIVE
================================= */
@media (max-width: 992px) {

    .subservice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title {
        font-size: 28px;
    }
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 600px) {

    .subservice-section {
        padding: 40px 15px;
    }

    .subservice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sub-card {
        padding: 15px;
    }

    .su-card {
        padding: 15px;
    }

    .sub-card-img {
        height: 160px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-sub {
        font-size: 14px;
    }
}













/* ================= ROOT ================= */
:root {
  --vm-red: #ff4d4f;
  --vm-yellow: #0282a5;
}

/* ================= SECTION ================= */
.timeline-section {
  padding: 60px 5%;
   
  background-image: 
    linear-gradient(rgba(2, 130, 166, 0.85), rgba(2, 130, 166, 0.85)),
    url('../images/hero1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

/* ================= TITLE ================= */
.timeline-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= CONTAINER ================= */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 10px rgba(230,29,36,0.4);
  transform: translateX(-50%);
}

/* ================= ROW ================= */
.timeline-row {
  position: relative;
  padding: 20px 0;
  width: 100%;
}

/* ================= CARD ================= */
.timeline-card {
  width: 42%;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-left: 5px solid var(--vm-red);
  cursor: pointer;
}

/* RIGHT CARD */
.timeline-card.right {
  margin-left: auto;
  text-align: left;
  border-left: none;
  border-right: 5px solid  #ff4d4f;
}

/* LEFT CARD */
.timeline-card.left {
  margin-right: auto;
  text-align: right;
}

/* ================= HOVER ================= */
.timeline-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(230,29,36,0.25);
}

/* ================= ICON ================= */
.icon {
  font-size: 18px;
  color: #fff;
  background: #0282a5;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.4s;
}

/* ICON HOVER */
.timeline-card:hover .icon {
  transform: rotateY(360deg) scale(1.15);
  background: linear-gradient(135deg, var(--vm-red), #0282a5);
  box-shadow: 0 5px 15px rgba(230,29,36,0.4);
}

/* ================= TEXT ================= */
.timeline-card h3 {
  color: #0282a5;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
}

.timeline-card p {
  color: #444;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* HOVER TEXT */
.timeline-card:hover h3 {
  color: var(--vm-red);
}

/* ================= NUMBER ================= */
.timeline-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--vm-red);
  border: 3px solid var(--vm-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 10;
  transition: 0.3s;
}

/* NUMBER HOVER */
.timeline-row:hover .timeline-number {
  background: var(--vm-red);
  color: #fff;
  box-shadow: 0 0 20px rgba(230,29,36,0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width:768px){

.timeline::before {
  left: 25px;
}

/* NUMBER */
.timeline-number {
  left: 25px;
  top: 30px;
  width: 38px;
  height: 38px;
  font-size: 14px;
}

/* CARD */
.timeline-card {
  width: calc(100% - 65px);
  margin-left: 65px !important;
  padding: 18px;
  border-right: none !important;
  border-left: 4px solid var(--vm-red) !important;
  text-align: left !important;
}

/* SMALL TEXT */
.timeline-card h3 {
  font-size: 16px;
}

.timeline-card p {
  font-size: 13px;
}

}





/* ===== ROOT COLORS ===== */
:root {
  --vm-blue: #0282a6;
  --vm-blue-dark: #005f78;
  --vm-red: #e63946;
  --vm-red-dark: #b71c1c;
  --vm-light: #f8fbff;
  --text-main: #2d3436;
}

/* ===== SECTION ===== */
.vision-mission-section {
  padding: 40px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif; /* Recommended font */
}

.main-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.main-header-center .title {
  color: var(--vm-blue);
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 10px;
}

/* ===== GRID ===== */
.vm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* ===== CARD BASE ===== */
.vm-card {
  position: relative;
  background: var(--vm-light);
  padding: 50px 40px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e1e8ed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* ===== WATER FILL HOVER EFFECT ===== */
.vm-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card.vision::before {
  background: linear-gradient(180deg, var(--vm-blue), var(--vm-blue-dark));
}

.vm-card.mission::before {
  background: linear-gradient(180deg, var(--vm-red), var(--vm-red-dark));
}

.vm-card:hover::before {
  height: 100%;
}

.vm-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(2, 130, 166, 0.2);
}

.vm-card.mission:hover {
  box-shadow: 0 25px 50px rgba(230, 57, 70, 0.2);
}

/* ===== ICON STYLE ===== */
.vm-icon-circle {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.vision .vm-icon-circle { color: var(--vm-blue); }
.mission .vm-icon-circle { color: var(--vm-red); }

/* ===== CONTENT ===== */
.vm-content h3, 
.vm-content h4 {
  font-size: 26px;
  font-weight: 800;
  color: var(--vm-blue) !important; /* Headings stay blue as requested */
  margin-bottom: 15px;
  transition: 0.4s;
}

.vm-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  transition: 0.4s;
}

/* ===== LIST POINTS ===== */
.vm-list {
  list-style: none;
  padding: 0;
}

.vm-point-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vm-point-row i {
  font-size: 16px;
  transition: 0.4s;
}

.vision .vm-point-row i { color: var(--vm-blue); }
.mission .vm-point-row i { color: var(--vm-red); }

.vm-point-row span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: 0.4s;
}

/* ===== HOVER TEXT TRANSFORMATION ===== */
.vm-card:hover .vm-desc,
.vm-card:hover .vm-point-row span,
.vm-card:hover .vm-content h3,
.vm-card:hover .vm-content h4,
.vm-card:hover .vm-point-row i {
  color: #ffffff !important;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 50px 15px;
  }

  .main-header-center .title {
    font-size: 28px;
  }

  .vm-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vm-card {
    padding: 35px 25px;
  }

  .vm-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/* Ee code ni mee CSS lo add/replace cheyandi */

/* 1st Card (Vision) Heading - Blue */
.vm-card.vision h3 {
    color: var(--vm-blue) !important;
}

/* 2nd Card (Mission) Heading - Red */
.vm-card.mission h4 {
    color: var(--vm-red) !important;
}

/* Hover unnappudu rendu cards headings white aypothayi */
.vm-card:hover h3, 
.vm-card:hover h4 {
    color: #ffffff !important;
}

/* --- Migatha effects anni previous ga icchinave follow avvandi --- */

.vm-card.mission::before {
  background: linear-gradient(180deg, var(--vm-red), var(--vm-red-dark));
}

.vm-card.mission:hover {
  box-shadow: 0 25px 50px rgba(230, 57, 70, 0.2);
}













    /* Root variables for easy management */
    :root {
        --vm-red: #ff4d4f;
        --vm-yellow:rgb(2, 130, 166);
        --vm-red-light: #ff4d4d;    /* Light Red Tint */
        --vm-yellow-light: rgba(249, 157, 38, 0.5); /* Light Yellow Tint */
        --dark-bg: #121212;
    }

    .why-choose-us {
        padding: 40px 0;
        background-color: rgb(2, 130, 166);
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Section */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header span {
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        font-size: 0.9rem;
    }

  .section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 10px 0;

  background: white;
text-transform: uppercase;
  background-clip: text;              /* ✅ standard */
  -webkit-background-clip: text;      /* ✅ chrome/safari */

  color: transparent;                 /* ✅ fallback */
  -webkit-text-fill-color: transparent;
}

    .underline {
        width: 70px;
        height: 4px;
        background: var(--vm-red);
        margin: 0 auto;
        border-radius: 10px;
    }

    /* Grid Layout */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    /* Card Styling */
    .feature-card {
        background: rgba(255, 255, 255, 0.03); /* Glassy dark effect */
        padding: 40px 30px;
        border-radius: 24px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.28);
        transition: all 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        background: var(--vm-red-light); /* Hover chesthe light red vasthundi */
        border-color: var(--vm-yellow);
        box-shadow: 0 15px 35px rgba(230, 29, 36, 0.15);
    }

    /* Icon Box with Red & Yellow */
    .icon-box {
        width: 80px;
        height: 80px;
        background: #ff4d4d; /* Light Yellow */
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--vm-yellow);
        font-size: 2.2rem;
        transition: 0.4s;
    }

    .feature-card:hover .icon-box {
        background: #ff4d4d; /* Hover lo full red icon box */
        color: #ffffff;
        transform: scale(1.1) rotate(5deg);
    }

    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: white;
        line-height: 1.6;
    }

    /* =========================================
       MOBILE & TABLET RESPONSIVE CSS
       ========================================= */

    /* For Tablets */
    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    /* For Mobile Phones */
    @media (max-width: 600px) {
        .why-choose-us {
            padding: 60px 0;
        }

        .features-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            padding: 0 10px;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .feature-card {
            padding: 35px 20px;
        }

        .icon-box {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
    }









    :root {
        --vm-red: #ff4d4f;
        --vm-yellow:rgb(2, 130, 166);
        --light-bg: #fdfdfd;
    }

    .facilities-section {
        padding: 50px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .fac-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .fac-header h2 {
        font-size: 2.2rem;
        color:rgb(2, 130, 166);
        font-weight: 800;
        letter-spacing: 1px;
    }

    

    /* Grid Layout */
    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
        gap: 20px;
    }

    /* Card Styling */
    .facility-card {
        background: #ffffff;
        padding: 40px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .facility-card:hover {
        transform: translateY(-10px);
        border-bottom: 3px solid var(--vm-red);
        box-shadow: 0 10px 25px rgba(230, 29, 36, 0.1);
    }

    /* Icon Styling with Yellow-Red Gradient */
    .icon-wrapper {
        margin-bottom: 20px;
        font-size: 3rem;
        background: linear-gradient(135deg, rgb(2, 130, 166),rgb(2, 130, 166));
        background-clip: text;  
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .facility-card h3 {
        font-size: 1.1rem;
        color: #ff4d4f; /* Dark professional color for text */
        font-weight: 600;
        margin: 0;
        text-transform: capitalize;
    }

    /* =========================================
       MOBILE & TABLET RESPONSIVE
       ========================================= */

    /* Tablets */
    @media (max-width: 1024px) {
        .facilities-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Small Tablets */
    @media (max-width: 768px) {
        .facilities-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .fac-header h2 {
            font-size: 2rem;
        }
    }

    /* Mobile Phones */
    @media (max-width: 480px) {
        .facilities-grid {
            grid-template-columns: 1fr; /* Single column */
            gap: 15px;
        }
        .facility-card {
            padding: 30px 15px;
        }
    }















    :root {
    --brand-red: #ff4d4f;
    --brand-dark: rgb(2, 130, 166);;
    --bg-light: #e9eff6;
}


.main-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.content-box {
    background-color: var(--bg-light);
    border-radius: 40px;
    display: flex;
    padding: 60px;
    gap: 40px;
    align-items: center;
}

/* Text Section */
.text-side { flex: 1.2; }
.label { color: var(--brand-red); font-weight: bold; font-size: 14px; text-transform: uppercase; }
/* Meeru ichina properties ni class ga marchanu */
.main-heading {
    font-size: 1.9rem;
    color: rgb(2, 130, 166); /* Meeru specify chesina blue color */
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif; /* Neat ga undadaniki font */
}
.intro-text { 
    color: black; 
    border-left: 3px solid var(--brand-red); 
    padding-left: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
}
.btn-features {
    background-color: var(--brand-red);
    color: #fff;
    text-decoration: none; /* Underline remove chestundi */
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block; /* Margin mariyu padding correct ga pani cheyadaniki */
    cursor: pointer;
    margin-bottom: 40px;
    transition: 0.3s;
}

.btn-features:hover {
    background-color: var(--brand-dark); /* Hover chesinappudu blue color ki maruthundi */
    color: #fff;
}


/* Vertical Timeline Line */
.timelin {
    position: relative;
    padding-left: 0;
}

/* Ekkade line logic undi */
.timelin::before {
    content: '';
    position: absolute;
    left: 20px; /* Icon center position */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: #ccd5de; /* Neat gray line */
}

.timelin-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    z-index: 1;
}

.icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.dark-blue { background-color: var(--brand-dark); }
.red-pink { background-color: var(--brand-red); }

.details h3 { font-size: 16px; margin: 0; color: #333; margin-bottom: 5px;}
.details p { font-size: 13px; margin: 0; color: #777; }

/* Image Side */
.image-side { flex: 1; display: flex; justify-content: center; }
.circle-image {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid var(--bg-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.circle-image img { width: 100%; height: 100%; object-fit: cover; }

/* Stats Bar Overlay */
.stats-bar {
    background-color: var(--brand-dark);
    display: flex;
    justify-content: space-around;
    padding: 30px;
    border-radius: 15px;
    width: 85%;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}
.stat i { color: var(--brand-red); font-size: 24px; margin-bottom: 10px; }
.stat h2 { font-size: 32px; margin: 5px 0; }
.stat p { font-size: 12px; color: #bbb; }

/* --- Mobile CSS --- */
/* --- MOBILE CSS --- */
@media (max-width: 991px) {

    .content-box{
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
  .main-heading {
    font-size: 25px;
  }
    .text-side{
        width:100%;
    }

    .intro-text{
        border-left: none;
        padding-left: 0;
        text-align:justify;
    }

    /* TIMELINE */
    .timelin{
        margin-top:30px;
        width:100%;
        padding-left:0;
    }

    /* CENTER LINE REMOVE */
    .timelin::before{
        left:20px;
        top:0;
        bottom:0;
        transform:none;
    }

    /* ITEM */
    .timelin-item{
        flex-direction: row;
        align-items: flex-start;
        text-align:left;
        gap:15px;
        padding-left:0;
        margin-bottom:25px;
    }

    /* ICON */
    .icon{
        width:40px;
        height:40px;
        min-width:40px;
        font-size:15px;
        border-radius:8px;
        z-index:2;
    }

    /* DETAILS */
    .details{
        flex:1;
    }

    .details h3{
        font-size:15px;
        margin-bottom:5px;
    }

    .details p{
        font-size:12px;
        line-height:1.5;
    }

    /* IMAGE */
    .image-side{
        width:100%;
        margin-top:20px;
    }

    .circle-image{
        width:280px;
        height:280px;
        border-width:10px;
    }

    /* STATS BAR */
    .stats-bar{
        flex-direction:column;
        gap:25px;
        width:100%;
        margin-top:25px;
        padding:25px 20px;
    }

    .stat h2{
        font-size:28px;
    }

}


























/* Section Styles */
.glass-highlights {
    position: relative;
    padding: 100px 0;
    /* Background Image setup */
   
  background-image: 
    linear-gradient(rgba(2, 130, 166, 0.75), rgba(2, 130, 166, 0.75)),
    url('../images/hero1.png');
    background-attachment: fixed; /* Eedi image ni fix chesthundi */
    background-position: center;
    background-size: cover;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px); /* Glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Icon & Text Styles */
.glass-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff4d4f; /* Neon color for icons */
}

.glass-card h2 {
    font-size: 3rem;
    font-weight: 700;
    color:white;
    margin: 10px 0;
}

.glass-card p {
    font-size: 15px;
    text-transform: uppercase;
   
     color:white;
    font-weight: 900;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-highlights {
        background-attachment: scroll; /* Mobile lo performance kosam scroll pettochu */
    }
}


















    :root {
    --vm-red: #ff4d4f;
    }

    .hospital-gallery-section {
        padding: 50px 0;
        background-color: #fff;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    .gal-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .gal-header h2 {
        font-size: 2.2rem;
        color:rgb(2, 130, 166);
        font-weight: 800;
        letter-spacing: 1px;
    }

    
    /* Marquee Container */
    .gallery-marquee {
        width: 100%;
        display: flex;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    /* Animation Logic */
    .marquee-content {
        display: flex;
        gap: 20px;
        animation: scrollGallery 30s linear infinite; /* Speed ni ikkada marchochu */
    }

    /* Hover chesthe gallery aaguthundi */
    .gallery-marquee:hover .marquee-content {
        animation-play-state: paused;
    }

    .gallery-item {
        flex-shrink: 0;
        width: 300px;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
        border: 3px solid rgba(249, 157, 38, 0.2); /* Light Yellow border */
        transition: 0.3s;
    }

    .gallery-item:hover {
        border-color: var(--vm-red);
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Image cut avvakunda set avtundi */
    }

    /* Keyframes for Continuous Scroll */
    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 10)); /* (Item width + gap) * count */
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .gallery-item {
            width: 220px;
            height: 150px;
        }
        @keyframes scrollGallery {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-240px * 10)); }
        }
    }








:root {
    --vm-red: #ff4d4f;
    --vm-yellow:rgb(2, 130, 166);
    --dark: #1e293b;
}

.review-section {
    padding: 30px 40px;
    background: #f8fafc;
    overflow: hidden;
}
.main-header-center {
  margin-bottom: 20px; /* 🔥 gap reduce */
}
.slider-master-container {
    max-width: 1000px;
    margin: 0px auto 0;
    position: relative;
    padding: 0 50px;
}

/* Google Badge Styling */
.google-badge-fixed {
    background: white;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.tit {
  font-size: 42px;
  text-transform: uppercase;
  color:rgb(2, 130, 166);
  font-weight: 800;
 
}

.g-icon { width: 35px; height: 35px; }
.g-text h4 { font-size: 14px; margin: 0; color: #64748b; }
.g-stars { display: flex; align-items: center; gap: 5px; color: #f99d26; font-weight: 800; font-size: 18px; }
.g-stars span { color: var(--dark); margin-right: 5px; }
.g-text p { font-size: 12px; margin: 0; color: #94a3b8; }

/* Slider Logic */
.slider-viewport {
    overflow: hidden;
    border-radius: 25px;
}

.review-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    min-width: 100%;
    padding: 10px;
}

.rev-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.rev-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rev-header img { width: 55px; height: 55px; border-radius: 50%; }
.rev-header h5 { margin: 0; font-size: 18px; color: var(--dark); }
.rev-header span { font-size: 13px; color: #94a3b8; }
.rev-stars { margin-left: auto; color: #f99d26; font-size: 14px; }

.rev-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin: 0;
}

/* Arrows */
.slider-btn {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    color: rgb(2, 130, 166);
}

.slider-btn:hover { background: var(--vm-red); color: white; }
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

/* SECTION */
.review-section {
  padding: 25px 15px;
}

/* HEADER */
.main-header-center {
  margin-bottom: 15px;
}

.tit {
  font-size: 28px;
  line-height: 1.2;
}

/* CONTAINER */
.slider-master-container {
  padding: 0 10px;
}

/* GOOGLE BADGE */
.google-badge-fixed {
  flex-direction: row;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.g-icon {
  width: 28px;
  height: 28px;
}

.g-text h4 {
  font-size: 12px;
}

.g-stars {
  font-size: 14px;
}

.g-text p {
  font-size: 11px;
}

/* CARD */
.rev-card {
  padding: 20px;
  border-radius: 15px;
}

/* HEADER */
.rev-header {
  gap: 10px;
  margin-bottom: 15px;
}

.rev-header img {
  width: 40px;
  height: 40px;
}

.rev-header h5 {
  font-size: 14px;
}

.rev-header span {
  font-size: 11px;
}

.rev-stars {
  font-size: 12px;
}

/* TEXT */
.rev-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* SLIDE */
.review-slide {
  padding: 5px;
}

/* SHOW BUTTONS */
.slider-btn {
  display: flex; /* 🔥 important */
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  font-size: 14px;

  top: auto;
  bottom: -30px; /* 🔥 card kinda position */

  background: white;
  color: var(--vm-red);

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* LEFT BUTTON */
.slider-btn.prev {
  left: 35%;
}

/* RIGHT BUTTON */
.slider-btn.next {
  right: 35%;
}

/* HOVER */
.slider-btn:active {
  transform: scale(0.9);
}

}
















/* ================= CONTACT SECTION ================= */
:root {
    --vm-red: #ff4d4f;
    --vm-yellow:white;
    --dark-blue: #ff4d4f;
}

.contact-section {
    padding: 50px 20px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 0; /* Removing gap to make them look unified */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

/* Equal Height Logic */
.contact-left, .contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ================= LEFT SIDE (Dark Style) ================= */
.contact-left {
    background: #0282a5;
    padding: 50px;
    color: #fff;
}

.contact-left h3 {
    color: var(--vm-yellow);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--vm-yellow);
    font-size: 18px;
    margin-top: 4px;
}

.info-item span {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.map-container {
    margin-top: auto; /* Pushes map to bottom */
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= RIGHT SIDE (Form) ================= */
.contact-right {
    padding: 50px;
    background: #ffffff;
}

.contact-right h3 {
    color:#0282a5;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #94a3b8;
    font-size: 14px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f1f5f9;
    font-size: 14px;
    transition: 0.3s;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--vm-red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230, 29, 36, 0.1);
}

/* BUTTON */
.contact-right button {
    width: 100%;
    padding: 15px;
    background: var(--vm-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.contact-right button:hover {
    background: rgb(2, 130, 166);
    transform: translateY(-3px);
}

.success-msg {
    display: none;
    margin-top: 15px;
    color: #10b981;
    text-align: center;
    font-weight: 600;
}
/* Validation Tick Styling */
.validation-tick {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #10b981 !important; /* Green color */
    font-size: 14px;
    display: none; /* Hidden by default */
    transition: 0.3s;
}

/* When input is valid, show tick */
.input-group.valid .validation-tick {
    display: block;
}

/* Change border color for valid inputs */
.input-group.valid input,
.input-group.valid textarea {
    border-color: #10b981;
    background: #f0fff4;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        margin: 0 10px;
    }
    .contact-left, .contact-right {
        padding: 35px 25px;
    }
    .map-container {
        height: 250px;
        margin-top: 20px;
    }
}










.footer {
  background: #0282a5;
  color: #fff;
  padding: 60px 20px 20px;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 220px;
  margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 900;
  color: white;
  font-size: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  opacity: 0.9;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff4d4f;
  padding-left: 5px;
}

/* PHONE */
.phone {
  margin-top: 10px;
  font-weight: 600;
}

/* SOCIAL */
.socials a {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #ff4d4f;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width:768px){
.footer-container {
  grid-template-columns: 1fr;
  gap: 25px;
  text-align: left;
}

.socials {
  justify-content: left;
}
}








/* WhatsApp Button */

.float-whatsapp{
position:fixed;
bottom:50px;
right:20px;
text-decoration: none;
width:55px;
height:55px;

background:#25D366;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:26px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

z-index:999;

animation:whatsappPulse 2s infinite;
}

/* Phone Button */

.float-phone{
position:fixed;
bottom:20px;
right:20px;
text-decoration: none;
width:55px;
height:55px;

background:#057fcc;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

z-index:999;

animation:phonePulse 2s infinite;
}

/* Hover */

.float-whatsapp:hover,
.float-phone:hover{
transform:scale(1.1);
}

/* Animations */

@keyframes whatsappPulse{

0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}

70%{box-shadow:0 0 0 15px rgba(37,211,102,0)}

100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}

}

@keyframes phonePulse{

0%{box-shadow:0 0 0 0 rgba(5,127,204,.6)}

70%{box-shadow:0 0 0 15px rgba(5,127,204,0)}

100%{box-shadow:0 0 0 0 rgba(5,127,204,0)}

}


/* HIDE PHONE IN DESKTOP */

.float-phone{
display:none;
}

/* MOBILE VIEW */

@media(max-width:768px){

.float-whatsapp{
bottom:95px;
}

/* SHOW PHONE ICON IN MOBILE */
.float-phone{
display:flex;   /* IMPORTANT FIX */
bottom:20px;
}

}
