/* ========== Base Styles ========== */
:root {
  --primary: #003E84;        /* Logo Main Blue */
  --secondary: #4A90E2;      /* Soft Light Blue */
  --accent: #7B4FA3;         /* Purple Accent from logo */
  
  --dark: #01244D;           /* Dark Navy for headings */
  --light-bg: #F5F9FF;       /* Clean Hospital Background */
  --text: #1A1A1A;           /* Normal paragraph text */
  --muted-text: #555555;     /* Sub text */
  
  --white: #ffffff;
  --transition: 0.3s ease;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
/* Responsive Reset & Scroll Fix */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll */
  width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.row,
.columns {
  flex-wrap: wrap;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* ========== Layout ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

/* ========== Section Background Colors ========== */
#home {
  background-color: #f0f9f0;
}

#about1 {
  background-color: #f8faf9;
}

#solution {
  background-color: #f0faf5;
}

.contact-section {
  background-color: #f0faf4;
}

.future-solutions.minimal {
  background-color: #faf5f0;
}

/* ========== Buttons ========== */
.neo-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.neo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: -1;
  transition: var(--transition);
}

.neo-btn:hover::before {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(194, 219, 34, 0.3);
}

.neo-btn i {
  margin-left: 10px;
  transition: var(--transition);
}

.neo-btn:hover i {
  transform: translateX(5px);
}

.primary-btn {
  color: var(--dark);
  background: var(--primary);
}

.secondary-btn {
  color: var(--lighter);
  background: transparent;
  border: 2px solid var(--lighter);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fade {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-left {
  animation: slideInFromLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideInFromRight 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideInFromBottom 0.8s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.8s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}
/* =========================
HEADER & NAVIGATION
========================= */

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: 0.3s;
}

/* Add shadow on scroll */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  max-width: 1400px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  transition: font-size 0.3s;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-link {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

/* Hover underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active page */
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Slide-in mobile menu */
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    padding-top: 120px;
    transition: right 0.3s;
    box-shadow: -6px 0 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    margin: 15px 20px;
    font-size: 18px;
  }

  /* Reduce logo text size for mobile */
  .logo-text {
    font-size: 18px;
  }

  /* Optional: reduce logo image height */
  .logo-img {
    height: 45px;
  }
}

/* ===== OPTIONAL: SCROLL EFFECT ===== */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    padding-top: 120px;
    transition: 0.3s;
    box-shadow: -6px 0 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    margin: 15px 20px;
    font-size: 18px;
  }
}

/* ===== OPTIONAL: SCROLL EFFECT ===== */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
}




.Picture {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust height as needed */
  overflow: hidden;
  margin-top: 50px;
}

.Picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Make sure image covers container */
  display: block;
}


/* Overlay for text */
.profile-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff; /* White text */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  padding: 20px 40px;
  border-radius: 10px;
}

.profile-desc h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .Picture {
    height: 200px;
  }

  .profile-desc h2 {
    font-size: 24px;
  }
}



/* ========== Hero Section ========== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
}

/* Slider container */
.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Single slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content */
.hero-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 5%;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 650px;
  animation: fadeUp 1.2s ease forwards;
}

/* Donation Button */
.hero-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background-color: #f5a623;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #d48806;
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Navigation dots */
.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.nav-dot.active {
  background: white;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero-container {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}



/* ========== About Section ========== */


/* ===== ABOUT US SECTION ===== */
.about-us {
  padding: 80px 15%;
  background-color: #f9f9f9; /* soft, professional background */
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap; /* responsive for mobile */
  gap: 40px;
  margin-top: 50px;
}

.about-image {
  flex: 1 1 450px;
}

.about-image img {
  width: 100%;
  border-radius: 10px; /* soft rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;

}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #003E84; /* accent color for hospital theme */
  font-weight: 700;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
    
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}




.vision-mission {
  padding: 20px 2%;
  background-color: #f3f7fc;
  font-family: 'Roboto', sans-serif;
  color: #333;
  position: relative;
}

.vm-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Slides */
.vm-slides {
  position: relative;
  min-height: 250px;
  padding-bottom: 60px; /* space for arrows */
}

.vm-slide {
  display: none;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  animation: fadeIn 0.6s ease-in-out;
}

.vm-slide.active {
  display: block;
}

.vm-slide h2 {
  font-size: 2rem;
  color: #003E84;
  margin-bottom: 20px;
  text-align: center;
}

.vm-slide p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Arrows at bottom middle */
/* Arrows on left and right sides */
.vm-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 50px; /* increase from 20px to 50px */
  pointer-events: none; /* prevents blocking slide */
}


.arrow {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: rgb(1, 56, 128);
  padding: 5px 10px;
  border-radius: 50%;
  pointer-events: all; /* allow click */
  transition: background 0.3s, color 0.3s;
}


.arrow.prev {
  margin-left: -80px; /* moves left arrow outside */
}

.arrow.next {
  margin-right: -80px; /* moves right arrow outside */
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  .vm-slide h2 {
    font-size: 1.6rem;
  }
  .vm-slide p {
    font-size: 1rem;
  }
  .arrow {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}







.who-objectives {
  padding: 80px 8%;
  background: #f5f9ff;
  font-family: "Poppins", sans-serif;
}

/* Main Layout */
.who-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT PANEL */
.who-left {
  border-radius: 25px;
  background: url("assets/Image-3.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  /* align-items: flex-end; */
  align-items: flex-start;   
}




/* Overlay Text Box */
.overlay-box {
  width: 100%;
  padding: 40px;
  background: rgba(0, 60, 120, 0.75);
  color: white;
}

.overlay-box h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.overlay-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* RIGHT SIDE */
.who-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

/* Objective Cards */
.objective-card {
  background: white;
  padding: 22px 25px;
  border-radius: 18px;
  border: 1px solid #e6eef9;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-6px);
  border-left: 5px solid #0077ff;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}

.objective-card h2 {
  font-size: 1.25rem;
  color: #003c7a;
  margin-bottom: 8px;
  font-weight: 600;
}

.objective-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .who-container {
    grid-template-columns: 1fr;
  }

  .who-left {
    min-height: 350px;
  }

  .overlay-box h1 {
    font-size: 2.1rem;
  }
}



.strategy-section {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  width: 1300px;   /* fixed container width */
  margin: 0 auto;  /* center align */
}

/* GRID LAYOUT */
.strategy-container {
  display: grid;
  grid-template-columns: 700px 500px; /* Left image 700px, right text 500px */
  gap: 50px;
  align-items: start;
}

/* LEFT IMAGE PANEL */
.strategy-left {
  border-radius: 25px;
  background: url("assets/Image-1.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  width: 700px;   /* fixed width */
  height: 550px;  /* fixed height */

  display: flex;
  align-items: flex-end; 
}

/* OVERLAY BOX */
.strategy-left .overlay-box {
  width: 100%;
  padding: 50px 40px;
  background: rgba(0, 60, 120, 0.75);
  color: white;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.strategy-left .overlay-box h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.strategy-left .overlay-box p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* RIGHT SIDE BULLETS */
.strategy-right {
  width: 550px;  /* fixed width */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strategy-list {
  list-style: none; /* Remove default bullets */
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.strategy-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  text-align: justify;
}

/* ICON BULLET */
.strategy-list .bullet-icon {
  color: #00408a;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1300px) {
  .strategy-section {
    width: 95%;  /* reduce width on smaller screens */
  }

  .strategy-container {
    grid-template-columns: 1fr; /* stack on small screens */
    gap: 30px;
  }

  .strategy-left, .strategy-right {
    width: 100%;
    height: auto;
  }

  .strategy-left {
    min-height: 400px;
  }

  .strategy-left .overlay-box h1 {
    font-size: 28px;
  }

  .strategy-left .overlay-box p {
    font-size: 16px;
  }
}





/* Section Title */
.dept-title {
  text-align: center;
  font-size: 32px;
  margin: 0 auto 50px auto;
  color: #1f2d3d;
  font-family: "Segoe UI", sans-serif;
  width: 100%;
}

/* Grid Container: 2 boxes per row */
.dept-split {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;               /* center the grid */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;      /* center the columns */
}

/* Individual Department Box */
.dept-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;           /* vertically center content */
  background: #ffffff;
  border: 1px solid #e6e9ee;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.dept-item:hover {
  background: #f9fbff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* Left Number Panel */
.dept-index {
  background: #f1f5f9;
  font-size: 22px;
  font-weight: 600;
  color: #8a94a6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right Content Panel */
.dept-info {
  padding: 18px 22px;
}

.dept-info h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: #1f2d3d;
  font-weight: 600;
}

.dept-info p,
.dept-info ul {
  font-size: 14.8px;
  color: #4a4f55;
  line-height: 1.6;
  margin: 0;
}

.dept-info ul {
  padding-left: 16px;
}

/* Responsive: single column on smaller screens */
@media (max-width: 900px) {
  .dept-split {
    grid-template-columns: 1fr;
  }
}











.facility-grid-section {
  padding: 90px 8%;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
}

/* Heading */
.facility-heading {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.facility-heading h1 {
  font-size: 42px;
  font-weight: 700;
  color: #003c7a;
  margin-bottom: 15px;
}

.facility-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* Grid Layout */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 30px;
  justify-content: center;
}

/* Facility Cards */
.facility-card {
  background: white;
  border-radius: 18px;
  padding: 28px 25px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

/* Hover Effect */
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 35px rgba(0, 60, 120, 0.18);
}

/* Card Title */
.facility-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #004288;
  margin-bottom: 15px;
}

/* Bullet List */
.facility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-card ul li {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

/* Custom Bullet */
.facility-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #014796;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1100px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-heading h1 {
    font-size: 32px;
  }
}














.hospital-services {
  padding: 100px 10%;
  background: #f9fbff;
  font-family: "Segoe UI", sans-serif;
}

/* Heading Area */
.services-header {
  text-align: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 50px;
  font-weight: 700;
  color: #003e7b;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ FIXED */
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #e6efff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #0077ff;
  box-shadow: 0 10px 25px rgba(0, 119, 255, 0.15);
}

/* Icon */
.service-icon {
  font-size: 42px;
  display: inline-block;
  margin-bottom: 18px;
  color: #0077ff;
}

/* Service Title */
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0a2540;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 36px;
  }
}






.catchment-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
  gap: 60px;
  flex-wrap: wrap;
  font-family: "Segoe UI", sans-serif;
}

/* Left Side Text */
.catchment-text {
  flex: 1;
  min-width: 320px;
}

.catchment-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 5px;
}

.catchment-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0077ff;
  margin-bottom: 25px;
}

.catchment-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  max-width: 520px;
}

/* District List */
.catchment-text ul {
  list-style: none;
  padding: 0;
}

.catchment-text ul li {
  font-size: 15px;
  padding: 10px 0;
  color: #0a2540;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
}

.catchment-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077ff;
  font-weight: bold;
}

/* Right Side Map Box */
.catchment-map {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.catchment-map img {
  width: 100%;
  max-width: 520px;

 
  transition: 0.3s ease;
}

/* Hover Zoom */
/* .catchment-map img:hover {
  transform: scale(1.03);
} */

/* Responsive */
@media (max-width: 900px) {
  .catchment-area {
    flex-direction: column;
    text-align: center;
  }

  .catchment-text ul li {
    text-align: left;
    display: inline-block;
  }
}








.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.about-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
}

.about-content h2 {
  font-size: 2.5rem;
 
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(50px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-block:hover .about-image img {
  transform: scale(1.03);
}

/* Benefits Section */
.benefits-2030 {
  padding: 90px 30px;
  background: #ffffff;
  color: #14532d;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.7rem;
  color: #15803d;
  margin-bottom: 20px;
}

.section-header .subtitle {
  font-size: 1.2rem;
  color: #047857;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-flow {
  position: relative;
  padding: 10px;
}

.benefit-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #15803d, #065f46);
  transform: translateX(-50%);
  z-index: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-item.left {
  flex-direction: row;
}

.benefit-item.right {
  flex-direction: row-reverse;
}

.benefit-item .text {
  max-width: 550px;
  padding: 0 40px;
}

.benefit-item .text h3 {
  font-size: 1.6rem;
  color: #15803d;
  margin-bottom: 10px;
}

.benefit-item .text p {
  font-size: 1rem;
  color: #065f46;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefit-item {
    flex-direction: column !important;
    text-align: center;
  }

  .benefit-item .text {
    padding: 20px 0 0;
  }

  .benefit-line {
    display: none;
  }
}
/* For tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .benefits-2030 {
    padding: 70px 20px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header .subtitle {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .benefit-item {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    margin: 30px 0;
  }

  .benefit-item .text {
    padding: 10px 20px;
    max-width: 90%;
  }

  .benefit-line {
    display: none;
  }
}

/* For mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .benefits-2030 {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .benefit-item {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    margin: 25px 0;
  }

  .benefit-item .text {
    padding: 10px 15px;
    max-width: 100%;
  }

  .benefit-item .text h3 {
    font-size: 1.3rem;
  }

  .benefit-item .text p {
    font-size: 0.95rem;
  }

  .benefit-line {
    display: none;
  }
}

/* For small laptops and desktops (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .benefits-2030 {
    padding: 80px 30px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header .subtitle {
    font-size: 1.15rem;
  }

  .benefit-item .text {
    padding: 0 30px;
    max-width: 500px;
  }

  .benefit-line {
    width: 3px;
  }
}

/* Compliance Section */
.compliance-section {
  background: #e8f5e9;
  border: 2px solid #a5d6a7;
  border-radius: 16px;
  max-width: 800px;
  padding: 30px 40px;
  box-shadow: 0 8px 16px rgba(0, 128, 0, 0.08);
  margin: 60px auto;
  margin-bottom: 10px;
}

.compliance-section h2 {
  font-size: 2rem;
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
}

.compliance-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4e944f;
  margin-bottom: 25px;
  max-width: 700px;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #2e7d32;
}

.compliance-list li i {
  color: #43a047;
  margin-right: 12px;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .compliance-section {
    padding: 20px;
  }

  .compliance-section h2 {
    font-size: 1.5rem;
  }

  .compliance-section .subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .about-block {
    flex-direction: column;
    gap: 40px;
  }

  .about-content,
  .about-image {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

/* Compliance Section */
.compliance-section {
  background: #e8f5e9;
  border: 2px solid #a5d6a7;
  border-radius: 16px;
  max-width: 800px;
  padding: 30px 40px;
  box-shadow: 0 8px 16px rgba(0, 128, 0, 0.08);
  margin: 60px auto;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
}

.compliance-section h2 {
  font-size: 2rem;
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
}

.compliance-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4e944f;
  margin-bottom: 25px;
  max-width: 700px;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #2e7d32;
}

.compliance-list li i {
  color: #43a047;
  margin-right: 12px;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .compliance-section {
    padding: 20px;
  }

  .compliance-section h2 {
    font-size: 1.5rem;
  }

  .compliance-section .subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .about-block {
    flex-direction: column;
    gap: 40px;
  }

  .about-content,
  .about-image {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

/* ========== Solution Section ========== */
.modern-solution {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2e7d32;
}

.section-header .subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #444;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.solution-image {
  opacity: 0;
  transform: translateX(-50px);
}

.solution-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.solution-features {
  opacity: 0;
  transform: translateX(50px);
}

.solution-features h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #222;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list .feature-item:last-child {
  margin-bottom: 40px;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2e7d32;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.feature-item span {
  font-size: 1rem;
  color: #333;
  line-height: 1;
}



/* =========================
Project Section
========================= */

.image-text-section {
  padding: 80px 10%;
  background: #f5f7fa;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards in one row */
  gap: 40px;
}

/* Card */
.image-text-card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-text-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.image-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-text-card:hover img {
  transform: scale(1.05);
}

/* Text */
.text-box {
  padding: 25px;
  text-align: center;
}

.text-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.text-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* =========================
Responsive
========================= */

/* Tablet */
@media (max-width: 992px) {
  .image-text-section {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .image-box {
    height: 200px;
  }
}





/* ----------------------------
Contact Section Styles
---------------------------- */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 80px 10%;
  background-color: #f5f7fa;
  font-family: "Segoe UI", sans-serif;
}

/* Container */
.contact-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

/* ----------------------------
Left Side: Info + Map
---------------------------- */
.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Info Box */
.contact-details {

  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-details h2 {
  margin-bottom: 20px;
  color: #004084;;
  font-size: 32px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.info-box i {
  font-size: 24px;
  color:#003E84;
  margin-top: 5px;
  transition: 0.3s;
}

.info-box i:hover {
  color: #003E84;
}

.info-text h3 {
  margin: 0;
  color: #004084;;
  font-size: 18px;
}

.info-text p {
  margin: 3px 0 0 0;
  color: #555;
}

/* Map Section */
.contact-map iframe {
  width: 100%;
  border-radius: 10px;
  border: 0;
  height: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ----------------------------
Right Side: Contact Form
---------------------------- */
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 30px;
  color: #004084;;
  font-size: 32px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004084;
  outline: none;
}

/* Button */
.contact-form button {
  background-color: #003E84;
  color: #fff;
  padding: 15px 25px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #003E84;
}

/* ----------------------------
Responsive Styles
---------------------------- */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-form {
    min-width: 100%;
  }
}




/* ========== Footer ========== */
.modern-footer {
  background: linear-gradient(135deg, #131323 0%, #0a0a15 100%);
  color: white;
  padding: 35px 0 0; /* more reduced top padding */
  font-size: 1rem;
  line-height: 1.6;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px; /* reduced */
  padding: 0 40px;
  margin-bottom: 22px; /* reduced */
}

.footer-col {
  padding: 0 15px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 14px; /* reduced */
  font-size: 1.15rem;
  position: relative;
  padding-bottom: 7px;
  font-weight: 600;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

/* ===== Social Icons ===== */
.footer-social {
  display: flex;
  gap: 10px; /* reduced */
  margin-top: 10px; /* reduced */
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== Company Profile Button ===== */
.profile-download {
  display: inline-block;
  margin-top: 6px; /* reduced */
  padding: 8px 16px; /* reduced */
  background: var(  --white);
  color: var(--dark);
  border-radius: 22px;
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-download i {
  margin-right: 6px;
}

.profile-download:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ===== Quick Links ===== */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px; /* reduced */
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* ===== Contact ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px; /* reduced */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  text-align: center;
  padding: 8px 40px; /* more reduced bottom padding */
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .footer-grid {
    padding: 0 20px;
    gap: 26px;
  }

  .footer-col {
    text-align: center;
    padding: 0 10px;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    padding: 8px 20px;
  }
}
/* ========== Back to Top Button ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
}

.back-to-top:hover::before {
  transform: scale(1.1);
}

.back-to-top::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0;
}

.back-to-top:hover::after {
  animation: none;
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}



/* Mobile Menu Styles */
.nav-container.active {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.nav-container.active .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.nav-container.active .nav-link {
  color: #000;
  font-size: 1.2rem;
  padding: 15px 0;
  margin: 5px 0;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-container.active .nav-link:hover {
  color: #4caf50;
}

.nav-container.active .nav-link.active {
  color: #4caf50;
  font-weight: 600;
}

/* Mobile menu toggle styles */
.hamburger span {
  background-color:#003E84;
  transition: all 0.3s ease;
}

.hamburger.active span {
  background-color: #003E84;
}

/* Login button in mobile menu */
.nav-container.active .login-btn {
  margin: 30px auto 0;
  display: block;
  width: 200px;
  text-align: center;
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== Animation Classes ========== */
.animate {
  opacity: 1 !important;
  transform: none !important;
  transition: all 0.8s ease-out;
}

.animate-fast {
  transition-duration: 0.4s !important;
}

/* ============ Hide cursor =========== */









