/* ================== GLOBAL ================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL ANIMATIONS ================= */
:root {
  --primary: #1e5aa8;
  --secondary: #198754;
  --dark: #0b2b4a;
  --light-bg: #f7f9fc;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
    margin: 0;
  font-family: 'Poppins', sans-serif;
  


}


/* Optional: make all images and elements respect container */
img, .hero-slide {
  max-width: 100%;
}


/* ================== NAVBAR ================== */
.navbar {
  padding: 14px 0;
}

.navbar-brand {
  font-size: 22px;
  letter-spacing: 0.4px;
  color:var(--primary);
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: 900;
}

.nav-link {
  font-weight: 500;
  color: #444;
  position: relative;
   transition: color .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 16px;
}

.nav-icon {
  color: var(--primary);
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-icon:hover {
  color: var(--secondary);
  transform: scale(1.15);
}
/* Dropdown */
/* Remove Bootstrap active indicator line */
.navbar .nav-links::after {
  display: none !important;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  padding: 10px 0;
  display: none;
  z-index: 999;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown list */
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--dark);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary);
  border-left-color: var(--secondary);
}

/* ================== HERO CAROUSEL ================== */

.hero-carousel {
  position: relative;
}

.hero-slide {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;

  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
    animation: fadeUp 1s ease forwards;

}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ================== DOCTOR PROFILE ================== */
/* ================= Doctor Intro Mini ================= */
.doctor-intro-mini {
  padding: 70px 0;
  background: linear-gradient(135deg, #f6faff, #eef7f3);
}

.doctor-intro-mini .container {
  max-width: 1250px; /* Increased width */
}

.intro-box {
  min-height: 380px; /* Required height only */
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 45px 60px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.intro-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.12);
}

/* Image */
.intro-image {
  flex: 0 0 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-box:hover .intro-image img {
  transform: scale(1.06);
  box-shadow: 0 20px 45px rgba(30, 90, 168, 0.25);
}

/* Content */
.intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2b4a;
  margin-bottom: 6px;
}

.intro-sub {
  font-size: 15px;
  font-weight: 500;
  color: #198754;
  margin-bottom: 16px;
}

.intro-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  max-width: 680px;
  margin-bottom: 22px;
}

/* Highlights */
.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.intro-highlights span {
  background: #f1f6ff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e5aa8;
  cursor: default;
  transition: all 0.35s ease;
}

.intro-highlights span:hover {
  background: #1e5aa8;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Quote */
.intro-quote {
  font-style: italic;
  font-size: 14.5px;
  color: #444;
  border-left: 4px solid #198754;
  padding-left: 16px;
  margin-bottom: 28px;
}

/* Button */
.intro-btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e5aa8, #198754);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.intro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 90, 168, 0.35);
  color: #ffffff;
}


/* Responsive */
@media (max-width: 992px) {
  .intro-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .intro-desc {
    max-width: 100%;
  }

  .intro-quote {
    border-left: none;
    border-top: 4px solid #198754;
    padding-left: 0;
    padding-top: 14px;
  }
}

  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-decoration: none;
    color: #fff;
  }
  
/* ================== RESPONSIVE ================== */
@media only screen and (min-width:992px) {


/* DOCTOR IMAGE */
.doctor-profile img {
  max-width: 350px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 200px;
  animation: fadeUp 1s ease forwards;
}

.hero-slide {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

}
@media (max-width: 991px) {
  .hero-content {
    padding-top: 160px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .doctor-profile h2 {
    font-size: 26px;
  }
}

/* ================= Expertise Section ================= */


/* =============================
   EXPERTISE SECTION
============================= */

.expertise-section {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #dce8f7 0%,
    #c8dcf3 50%,
    #b3d0ee 100%
  );
  position: relative;
  overflow: hidden;
}

/* Soft background shape */
.expertise-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 90, 168, 0.06), transparent 70%);
  bottom: -120px;
  left: -120px;
  border-radius: 50%;
}

/* =============================
   SECTION TITLE
============================= */

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
}

.section-subtitle {
  font-size: 16px;
  color: #5f6f81;
  max-width: 650px;
  margin: 0 auto;
}

/* =============================
   CARD DESIGN
============================= */

.expertise-card {
  height: 100%;
  padding: 38px 30px;
  border-radius: 20px;
  background: #ffffff;

  /* 🔥 Added clean visible border */
  border: 2px solid rgba(30, 90, 168, 0.18);

  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 43, 74, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease forwards;
}

/* Gradient hover overlay */
.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.expertise-card:hover::before {
  opacity: 0.06;
}

/* Hover Effect */
.expertise-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(11, 43, 74, 0.15);
}

/* =============================
   ICON
============================= */

.expertise-icon {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--secondary);
}

/* =============================
   CARD CONTENT
============================= */

.expertise-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.expertise-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #5f6f81;
  position: relative;
  z-index: 1;
}

/* =============================
   ANIMATION
============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }

  .expertise-card {
    padding: 30px 22px;
  }
}/* ========================== */
/* ================= Conditions Section ================= */
.conditions-section {
  background: linear-gradient(135deg, #f6faff, #eef7f3);
  overflow: hidden;
}

.conditions-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2b4a;
}

.conditions-subtitle {
  font-size: 15.5px;
  color: #555;
  /* max-width: 520px; */
  text-align: center;
}

/* Image */
.conditions-image {
  max-width: 500px;
  width: 100%;
  border-radius: 22px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  /* animation: floatImage 6s ease-in-out infinite; */
}

.conditions-image:hover {
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* List */
.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conditions-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #0b2b4a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  animation: fadeLeft 0.6s ease both;
}

.conditions-list li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, #1e5aa8, #198754);
  color: #ffffff;
}

/* Icon */
.conditions-list i {
  color: #198754;
  font-size: 18px;
  transition: color 0.3s ease;
}

.conditions-list li:hover i {
  color: #ffffff;
}

/* Animations */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .conditions-title {
    font-size: 28px;
  }

  .conditions-image {
    max-width: 400px;
    margin-bottom: 20px;
    animation: none;
  }

  .conditions-list li {
    animation: none;
  }
}

/* ================= Nephrology Section ================= */
.specialties-section {
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2F5597;
}

/* Wrapper – no background */
.specialty-item {
  text-align: center;
}

/* IMAGE STYLING ONLY */
.specialty-item img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 24px;
  padding: 18px;
  background: #f4f8ff;        /* ONLY image background */
  transition: all 0.35s ease;
}

/* Image hover effect */
.specialty-item:hover img {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 18px 35px rgba(47, 85, 151, 0.25);
}

/* Text */
.specialty-item h5 {
  margin-top: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2d3d;
}

/* Responsive fix */
@media (max-width: 576px) {
  .specialty-item img {
    width: 260px;
    height: 260px;
  }
}

/* ================== FOOTER ================== */
.site-footer {
  background: #0b2b4a; /* solid dark blue */
  color: #f1f6fb;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 10;
}

.site-footer a {
  color: #f1f6fb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #c1f5d6; /* light green hover */
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #c1f5d6;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: #e3ebf3;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #e3ebf3;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Social Icons */
.footer-social {
  margin-top: 12px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff10; /* semi-transparent white */
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #198754; /* primary green */
  color: #fff;
  transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(241, 246, 251, 0.3);
  margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
  font-size: 14px;
  color: #e3ebf3;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-social a {
    margin-right: 8px;
  }
}

/* ==========footer========== */

/* ================== DOCTOR PROFILE SECTION ================== */
.doctors-profile {
  background: linear-gradient(135deg, #eaf1f8, #f1f6fb); /* soft gradient for a professional look */
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* ================== HEADER ================== */
.doctor-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2b4a;
  margin-bottom: 14px;
  position: relative;
  text-align: center;
}

.doctor-header h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #198754;
  margin: 10px auto 0 auto;
  border-radius: 3px;
}

.doctor-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* ================== INFO SECTION GRID ================== */
.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding: 0 15px;
}

/* ================== INFO CARD ================== */
.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #19875433, #1e5aa833);
  z-index: 0;
  transition: all 0.5s ease;
  border-radius: 20px;
}

.info-card:hover::before {
  left: 0;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ================== CARD HEADING ================== */
.info-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: #0b2b4a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.info-card:hover h4 {
  color: #ffffff;
}

/* ================== ICON ================== */
.info-card h4 i {
  font-size: 22px;
  color: #198754;
  transition: color 0.3s ease;
}

.info-card:hover h4 i {
  color: #ffffff;
}

/* ================== LIST ITEMS ================== */
.info-card ul {
  padding-left: 18px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.info-card ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
  position: relative;
  transition: color 0.3s ease;
}

.info-card ul li::before {
  content: "\f00c"; /* FontAwesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 20px;
  color: #198754;
  margin-left: -20px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.info-card:hover ul li {
  /* color: #ffffff; */
}

.info-card:hover ul li::before {
  color: #ffffff;
}

/* ================== ANIMATIONS ================== */
.info-card {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.6s forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.25s; }
.info-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 991px) {
  .info-section {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    text-align: left;
  }
  
  .info-card h4 {
    justify-content: flex-start;
  }
}


/* ===== Kidney Care – Animations Only ===== */

/* Image animation */
.kidney-care img {
  animation: kidneyFadeFloat 1s ease-out forwards;
}

@keyframes kidneyFadeFloat {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* List item entry animation */
.kidney-care .list-group-item {
  opacity: 0;
  animation: listSlide 0.6s ease forwards;
}

.kidney-care .list-group-item:nth-child(1) { animation-delay: 0.1s; }
.kidney-care .list-group-item:nth-child(2) { animation-delay: 0.2s; }
.kidney-care .list-group-item:nth-child(3) { animation-delay: 0.3s; }
.kidney-care .list-group-item:nth-child(4) { animation-delay: 0.4s; }
.kidney-care .list-group-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes listSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge micro-interaction */
.kidney-care .badge {
  transition: transform 0.25s ease;
}

.kidney-care .badge:hover {
  transform: scale(1.1);
}
/* ========== Kidney Section ========== */
    .kidney-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    }

    .kidney-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      color: #0d6efd;
      text-align: center;
    }

    .kidney-section h3 {
      font-weight: 600;
      margin-bottom: 20px;
      color: black;
    }

    .kidney-section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #495057;
    }

    .kidney-content img {
      width: 700px;
      height: 340px;
      border-radius: 10px;
      background: #e9ecef;
      transition: all 0.4s ease;
    }
.kidney-content{
/* background-color: #BEECEF; */
background: linear-gradient(135deg, #9EC9CC, #B7DADD);
padding: 24px;
  border-radius: 15px;
}
    /* ========== Swiper Styling ========== */
    .kidneySwiper .swiper-slide {
  cursor: pointer;
  transition: transform 0.3s ease;
  
}

.kidneySwiper .swiper-slide:hover {
  transform: translateY(-6px);
}

    .swiper {
      padding: 20px 0 30px 0;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .swiper-slide {
      background: #f1f8ff;
      border-radius: 12px;
      text-align: center;
      padding: 15px 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      color: #0d6efd;
      border: 1px solid transparent;
      font-size: 0.95rem;
    }

    .swiper-slide:hover {
      background: #0d6efd;
      color: #fff;
      transform: translateY(-5px);
      border-color: #0d6efd;
    }

    .swiper-slide.is-active {
      background: #0d6efd;
      color: #fff;
      transform: translateY(-5px);
      border-color: #0d6efd;
    }

    /* ========== Navigation Arrows ========== */
    .kidneySwiper .swiper-button-prev,
    .kidneySwiper .swiper-button-next {
      color: black;
      width: 28px;
      height: 28px;
      top: 90%;
      transform: translateY(-50%);
      border-radius: 50%;
      background: rgba(9, 9, 9, 0.05);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .kidneySwiper .swiper-button-prev::after,
    .kidneySwiper .swiper-button-next::after {
      font-size: 14px;
      font-weight: bold;
    }

    .kidneySwiper .swiper-button-prev:hover,
    .kidneySwiper .swiper-button-next:hover {
      background: rgba(13, 110, 253, 0.15);
    }

    /* ========== Content Fade Animation ========== */
    .kidney-content.fade-out {
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
    }

    .kidney-content.fade-in {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.4s ease;
    }

    /* ========== Responsive ========== */
    @media (max-width: 768px) {
      .kidney-content img {
        height: 200px;
      }

      .kidneySwiper .swiper-button-prev,
      .kidneySwiper .swiper-button-next {
        width: 24px;
        height: 24px;
      }

      .kidneySwiper .swiper-button-prev::after,
      .kidneySwiper .swiper-button-next::after {
        font-size: 12px;
      }
    }
     @media only screen and (min-width:992px) 
{
   .kidney-section {
      padding: 90px 0;
      background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    }

.kidneySwiper .swiper-button-prev,
    .kidneySwiper .swiper-button-next {
      color: black;
      width: 28px;
      height: 28px;
      top: 80%;
      transform: translateY(-50%);
      border-radius: 50%;
      background: rgba(9, 9, 9, 0.05);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }
.kidney-section h3 {
margin-left: 45px;    

}

    .kidney-section p {
      margin-left: 45px;    

    }


}
/* =========================
   WHY CHOOSE US SECTION - CLEAN BACKGROUND
========================= */

.why-choose-us-clean {
  background: #e3f2f5; /* light neutral background */
  color: #333;
}

.why-choose-us-clean h2 {
  font-size: 2.5rem;
}

.why-choose-us-clean p {
  font-size: 1rem;
  color: #6c757d;
}

.why-item i {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: transform 0.3s, color 0.3s;
}

.why-item:hover i {
  transform: scale(1.2);
}

/* Icon Colors */
.icon-experience { color: #007bff; } /* Blue */
.icon-dialysis    { color: #28a745; } /* Green */
.icon-transplant  { color: #ffc107; } /* Yellow */
.icon-patient     { color: #dc3545; } /* Red */

.why-item h5 {
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.95rem;
  color: #6c757d;
}
/* expertise icon */
/* ================= WHAT KIDNEY DO SECTION ? ================= */

.kidney-elegant-section {
  padding: 110px 0;
  background:  #e3eaf5;;
  position: relative;
  overflow: hidden;
}

/* soft background circle */
.kidney-elegant-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(30, 90, 168, 0.04);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

/* ================= HEADER ================= */

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
}

.section-header p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--primary);
  opacity: 0.8;
}

/* ================= FEATURE BOX ================= */

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  transition: 0.4s ease;
  border: 1px solid rgba(30, 90, 168, 0.08);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 43, 74, 0.08);
  border-color: var(--primary);
}

/* ================= ICON ================= */

.icon-circle {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  position: relative;
  transition: 0.4s ease;
}

.icon-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.3;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

.feature-box:hover .icon-circle {
  background: var(--secondary);
  transform: rotate(8deg) scale(1.08);
}

/* ================= TEXT ================= */

.feature-box h5 {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--dark);
}

.feature-box p {
  margin: 0;
  color: var(--primary);
  opacity: 0.85;
  font-size: 15px;
}

/* ================= HIGHLIGHT CARD ================= */

.highlight-card {
  margin-top: 40px;
  padding: 30px;
  background: var(--primary);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(30, 90, 168, 0.25);
  transition: 0.4s ease;
  border-left: 6px solid var(--secondary);
}

.highlight-card:hover {
  background: var(--dark);
  transform: translateY(-5px);
}

.highlight-card h6 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.highlight-card p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .kidney-elegant-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
/* ===end of section=== */
