/********** Template CSS **********/
:root {
  --primary: #13c5dd;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}
/* LOGO DESIGN */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-brand img {
  height: 90px;
}

.navbar-brand h2 {
  font-size: 35px;
  font-weight: 400;
  color: #000;
  margin: 5px 0 0 0;
  margin-left: 50px;
}

/* MENU LINKS */
.navbar-light .navbar-nav .nav-link {
  font-family: "Signika", sans-serif;
  margin-left: 25px;
  padding: 20px 0;
  font-size: 19px;
  font-weight: 400;
  color: #0b9731;
  transition: 0.3s;
}

/* HOVER COLOR */
.navbar-light .navbar-nav .nav-link:hover {
  color: #000;
}

/* REMOVE BLUE LINE EFFECT */
.navbar-light .navbar-nav .nav-link::before {
  display: none !important;
}

/* DROPDOWN STYLE */
.dropdown-menu {
  border-radius: 8px;
  margin-top: 5px !important;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-size: 19px;
  font-weight: 400;
  color: #0b9731;
  margin-top: 20px;
}
/* DROPDOWN HOVER OPEN (DESKTOP) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* MOBILE FIX */
@media (max-width: 991.98px) {
  /* NAVBAR PADDING */
  .navbar {
    padding: 10px 0;
  }

  /* LOGO SMALL */
  .navbar-brand img {
    height: 60px;
  }

  .navbar-brand h2 {
    font-size: 20px;
  }

  /* MENU FULL WIDTH */
  .navbar-nav {
    margin-top: 10px;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
  }

  /* DROPDOWN FIX */
  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0 !important;
    padding-left: 15px;
  }

  .dropdown-item {
    padding: 8px 0;
    font-size: 15px;
  }

  /* REMOVE HOVER EFFECT (MOBILE) */
  .navbar .dropdown:hover .dropdown-menu {
    display: none;
  }
}
/* ///////////////////////////////////////////////////////////////////////// */
/* SLIDE */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE */
.hero-img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

/* BLUE SHAPE */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 90%;
  background: rgba(20, 66, 156, 0.5); /* blue */

  /* CURVE EFFECT */
  border-top-right-radius: 70% 100%;
  border-bottom-right-radius: 70% 100%;

  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
}
.hero-content h5 {
  font-size: 40px;
  font-weight: 400;
}

.hero-content p {
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hero-slide {
    height: 30vh;
  }

  .hero-img {
    height: 100%;
  }

  /* reduce blue background size */
  .hero-overlay {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: rgba(20, 66, 156, 0.6);
  }

  /* center content */
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content h5 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 14px;
  }
}
/* ////////////////////////////////////////////////////////////////////// */
/* General Section Styling */
.contact-section {
  background-color: #ffffff;
}

.info-card {
  height: 100%;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* Card 1: Opening Hours with Background Image */
.opening-card {
  position: relative;
  background-image: url("../img/hero1.png"); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  color: #0d2e5e;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* The semi-transparent white overlay to make text readable */
.opening-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.opening-card .content {
  position: relative;
  z-index: 2;
}

.opening-card h3 {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 25px;
}
.opening-card p {
  font-weight: 400;
  font-size: 20px;
}

.opening-card .phone {
  font-weight: 400;
  font-size: 25px;
  margin-top: 10px;
}

.opening-card .phone a {
  color: #28a745; /* Green color from image */
  text-decoration: underline;
}

/* Card 2: Mail Us (Form) */
.form-card {
  background: #fff;
  border: 1px solid #ddd;
}

.form-card h3 {
  color: #0d2e5e;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

.form-card .form-control {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 12px;
  font-size: 20px;
}

.submit-btn {
  background-color: #1a4ba0;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  border: none;
  width: fit-content;
  font-weight: bold;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #0d2e5e;
  color: white;
}

/* Card 3: Advanced Technology */
.tech-card {
  background-color: #2b62c1; /* Vibrant blue from image */
  color: white;
}

.tech-card h3 {
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 400;
  color: #ffffff;
}
.tech-card p {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.experience {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience i {
  background: white;
  color: #2b62c1;
  padding: 10px;
  border-radius: 50%;
  font-size: 34px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .info-card {
    min-height: auto;
    margin-bottom: 20px;
  }
}
/* //////////////////////////////////////////////////////////////////////////// */
.main-title {
  color: #25275c;
  line-height: 1.3;
  font-family: 34px;
  font-weight: 400;
}

/* Satisfaction Badge Styling */
.image-wrapper {
  padding-bottom: 50px; /* Space for the badge overlap */
}

.satisfaction-badge {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: #eef2ff;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  border: 10px solid var(--bg-light-blue);
}

.satisfaction-badge h2 {
  color: #14429c;
  font-size: 65px;
  font-weight: 600;
  transition: 0.3s;
}
.satisfaction-badge p {
  color: #3e4359;
  font-size: 25px;
  font-weight: 400;
}

.satisfaction-badge:hover h2 {
  transform: scale(1.1);
}

/* Feature Icons Styling */
.icon-box {
  min-width: 45px;
  height: 45px;
  background-color: var(--bg-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

/* Custom Button Styling */
.btn-primary-custom {
  background-color: #1a4ba0; /* The deep blue from your image */
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  width: 300px;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(26, 75, 160, 0.1);
  margin-left: 150px;
  margin-top: 20px;
}

.btn-primary-custom:hover {
  background-color: #0b9434; /* Slightly darker on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}

.feature-item h5 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}
.feature-item p {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #3e4359;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .satisfaction-badge {
    width: 140px;
    height: 140px;
    left: 10px;
    border-width: 5px;
  }
  .satisfaction-badge h2 {
    font-size: 1.8rem;
  }
  .btn-primary-custom {
    margin-left: 50px;
    margin-top: 10px;
  }
}
/* //////////////////////////////////////////////////////////////////////////////// */
.section-subtitle {
  color: #28a745; /* Success Green from image */
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

/* Green underline under "We Provide" */
.section-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #28a745;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  color: #0d2e5e; /* Navy blue color from image */
  font-weight: 400;
  font-size: 45px;
  line-height: 1.3;
}

/* --- Service Card Styling --- */
.service-card {
  position: relative;
  width: 90%;
  height: 430px; /* Set fixed height for uniformity */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px; /* Slight rounded corners visible in image */
  overflow: hidden; /* Ensures overlay stays inside bounds */
}

/* The Blue Solid Overlay (sitting *over* the image) */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    43,
    98,
    193,
    0.9
  ); /* Vibrant blue color with opacity */
  color: #ffffff;
  display: flex;
  flex-direction: column; /* Pushes content to the bottom */
  padding: 30px;
  padding-top: 100px; /* Matching image padding */
  text-align: left;
  transition: background-color 0.3s ease; /* Subtle hover effect */
}

/* --- Content Inside Card --- */
.card-title {
  font-weight: 400;
  font-size: 35px;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

.card-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 20px;
  opacity: 0.9;
  color: #ffffff; /* Slightly faded text */
}

/* --- Button Styling (Rounded Pill Shape) --- */
.btn-read-more {
  background-color: #ffffff;
  color: #0d2e5e; /* Navy blue text */
  font-weight: 600;
  border-radius: 50px; /* Pure rounded pill shape */
  padding: 12px 30px;
  font-size: 17px;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
  margin-top: 20px;
}

.btn-read-more:hover {
  background-color: #2e6ac4;
  color: #f8f9fa;
  transform: translateY(-2px); /* Slight lift */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- The Special Purple Glow Effect (on Card 3 in image) --- */
.service-card-glow {
  box-shadow: 0 0 40px rgba(111, 66, 193, 0.4); /* Purple glow box shadow */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
    height: auto;
    min-height: 360px;
  }

  .card-overlay {
    padding: 20px;
    padding-top: 50px;
  }

  .card-title {
    font-size: 30px;
  }

  .card-text {
    font-size: 20px;
  }
}
/* //////////////////////////////////////////////////////////// */
.diseases-left {
  position: relative;
  background: url("../img/Diseases1.jpg") center/cover no-repeat;
  padding: 80px 60px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
.diseases-image {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.diseases-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diseases-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 70, 150, 0.85);
}

.diseases-content {
  position: relative;
  z-index: 2;
  color: white;
}

.small-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
}

.main-titlee {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #ffffff;
}

.disease-text {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}

.disease-list ul {
  list-style: none;
  padding: 0;
}

.disease-list li {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-left: 100px;
}

.disease-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-size: 20px;
  padding-left: 80px;
}

.btn-readmore {
  margin-top: 30px;
  background: white;
  color: #1d3f8a;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;

  display: block;
  margin-left: 100px;
  margin-right: 100px;
  text-align: center;
}

.btn-readmore:hover {
  background: #2e6ac4;
  color: white;
}

.diseases-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .diseases-left {
    padding: 40px 25px;
    border-radius: 30px;
  }

  .diseases-image {
    border-radius: 30px;
    margin-top: 20px;
  }

  .main-titlee {
    font-size: 34px;
  }

  .disease-text {
    font-size: 16px;
  }

  /* Fix list alignment */
  .disease-list li {
    padding-left: 25px;
    font-size: 16px;
  }

  .disease-list li::before {
    padding-left: 0;
    left: 0;
  }

  /* Center button */
  .btn-readmore {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}

/* //////////////////////////////////////////////////////////////// */
.about-section {
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/about-bg.png") no-repeat left center;
  background-size: contain;
}

/* Background pattern image */
.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

/* subtitle */
.about-subtitle {
  color: #1fa64b;
  font-size: 22px;
  font-weight: 500;
  position: relative;
}

.about-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #1fa64b;
  display: block;
  margin-top: 6px;
}

/* title */
.about-title {
  font-size: 30px;
  font-weight: 400;
  margin: 15px 0 20px;
  color: #25275c;
}

/* text */
.about-text {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
}

/* button */
.about-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: #1d3f8a;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
}

.about-btn:hover {
  background: #0b9731;
  color: white;
}

/* image */
.about-image img {
  border-radius: 20px;
}

/* responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-section::before {
    width: 100%;
    opacity: 0.15;
  }
}
/* //////////////////////////////////////////////////////////////////////////// */

.gallery-section {
  background: #fcfcfc;
}

.gallery-title {
  font-size: 36px;
  font-weight: 400;
  color: #1d3f8a;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #1d3f8a;
  margin: 10px auto 30px;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}


.gallery-btn {
  background: #1d3f8a;
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
}

.gallery-btn:hover {
  background: #0b9731;
  color: white;
}
/* //////////////////////////////////////////////////////////////// */

.section-title {
  color: #1d3f8a;
  font-size: 36px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #1d3f8a;
  margin: 10px auto 40px;
}

.rating-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

.excellent {
  font-size: 30px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: #000;
}

.stars {
  color: #f4b400;
  font-size: 45px;
}

.small {
  font-size: 27px;
  margin: 10px 0;
}

.google-logo {
  width: 130px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-header div {
  flex-grow: 1;
  margin-left: 10px;
}

.user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.google-icon {
  width: 23px;
}
.re-title {
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.time {
  font-size: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: #888;
}

.review-text {
  font-size: 18px;
  font-family: poppins, sans-serif;
  font-weight: 400;
  color: #000;
}

.review-more {
  display: none;
  font-size: 18px;
  font-family: poppins, sans-serif;
  font-weight: 400;
  color: #000;
}

.read-btn {
  border: none;
  background: none;
  color: #888;
  padding: 0;
  font-size: 14px;
  text-align: left;
  margin-top: auto;
}

.read-btn:hover {
  color: #1d3f8a;
}
/* /////////////////////////////////////////////////////////////////// */
.footer-section {
  position: relative;
  background-color: #2b62c1; /* Deep blue color from image */
  background-image: url("../img/footer.png"); /* REPLACE WITH YOUR BLUE IMAGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Add a very subtle blue overlay to ensure image matches the sample exactly */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    20,
    66,
    156,
    0.8
  ); /* 70% opacity */ /* Same high-opacity blue overlay */
  z-index: 1;
}

/* Ensure footer content sits *over* the overlay */
.footer-section .container {
  position: relative;
  z-index: 2;
}

/* --- Typography --- */
.footer-title {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  /* Slightly softer text color */
}

/* --- Column 1: Social Icon Button --- */

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 8px;
}

.social-icon-btn i {
  font-size: 20px;
  color: #1a4ba0;
}

/* --- Column 2: Contact List --- */
.contact-item p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.9;
}

.contact-item i {
  color: #ffffff;
}

/* --- Column 3: Quick Links --- */
.quick-links-col ul li {
  margin-bottom: 12px;
}

.quick-links-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.quick-links-col ul li a i {
  font-size: 18px;
  font-weight: 400;
}

.quick-links-col ul li a:hover {
  opacity: 1;
  color: var(--accent-green); /* Optional green highlight on hover */
}

/* --- Column 4: Map Container --- */
.map-container {
  overflow: hidden;
  border: 4px solid #ffffff; /* White border around map */
}

/* --- Dark Copyright Bar --- */
.copyright-bar {
  background-color: #343a40; /* Dark gray/charcoal background */
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-title {
    font-size: 1.3rem;
  }
}
/* //////////////////////////////About Doctors page start /////////////////////////// */
.doctor-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/about-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}

/* Optional: Add a subtle text shadow for better readability */
.doctor-header h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  font-weight: 400;
}

/* //////////////////////////////////////////////////////////////////// */
.about-doctor {
  background-color: #ffffff;
}

.doctor-name {
  color: #1a438d; /* Deep blue color from image */
  font-size: 32px;
  font-weight: 400;
}

.doctor-details li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 300;
  color: #3e4359;
  line-height: 1.6;
}

/* Creating the custom arrow icon */
.doctor-details li::before {
  content: "→"; /* You can also use a FontAwesome icon here */
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: bold;
}

.doctor-img-container img {
  border: 8px solid #f8f9fa; /* Light frame effect */
  transition: transform 0.3s ease;
}

.doctor-img-container img:hover {
  transform: scale(1.02);
}
/* ///////////////////////////////////////////////////////////////////////////// */
/* --- Main Section Styling --- */
.anesthesiologist-section {
  /* Replace with your actual background image path */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("../img/Anesthesiologist.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* --- Inner White Box --- */
.content-box {
  background-color: rgba(
    255,
    255,
    255,
    0.9
  ); /* High opacity white for visibility */
}

/* --- Title Styling --- */
.section-titlee {
  color: #1a438d; /* Match the original blue color */
  font-size: 33px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* --- Doctor Card & Image Styling --- */
.doc-card {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 50px; /* Keep centered on mobile */
}

.doctor-img {
  width: 120px;
  height: 120px;
  object-fit: cover; /* Ensures image isn't stretched */
  border: 5px solid #fff; /* Optional: adds a white border like polaroid */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-name {
  color: #1a438d;
  font-weight: 400;
}

.doctor-title {
  font-size: 20px;
  font-weight: 400;
  color: #3e4359;
  margin-top: 20px;
}

/* Ensure text is left aligned within the card on desktop */
@media (min-width: 768px) {
  .doc-card .text-left {
    text-align: left !important;
  }
}
/* ////////////////////////////////////////////////////////////////// */

.hospital-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/hospital-banner.jpg");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
/* --- Global Color Utility (Add to your root) --- */
.text-navy {
  color: #0d2a58; /* Deep navy blue from original image */
}

/* For Font Size smaller than p */
.fs-7 {
  font-size: 0.875rem;
}

/* --- Main Section Styling --- */
.why-choose-us {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("../img/Anesthesiologist.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

/* The White Overlay Box */
.overlay-content {
  background-color: rgba(255, 255, 255, 0.7); /* 90% opacity white */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

/* --- Title Underline --- */
.underline {
  height: 3px;
  width: 50px;
  background-color: #0d2a58; /* Navy blue underline */
}

/* --- Icon Wrapper and Icon Styling --- */
.icon-wrapper {
  width: 90px;
  height: 90px;
  background-color: #eff6ff; /* Very light blue background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Horizontal centering on all screen sizes */
  font-size: 45px;
  color: #14429c; /* Navy blue icon color */
}

/* Ensuring font-weights in headings are consistent on all columns */
.feature-item h4 {
  color: #14429c;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1rem;
}
.feature-item {
  color: #14429c;
  font-size: 18px;
  font-weight: 400;

  margin-top: 1rem;
}

/* Responsive adjustment for small screens */
@media (max-width: 767.98px) {
  .overlay-content {
    padding: 25px !important; /* reduce padding */
  }

  .why-choose-us h2 {
    font-size: 24px !important;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 12px;
  }

  /* Make spacing better */
  .feature-item {
    margin-bottom: 20px;
  }
}
/* ///////////////////////////diseases page start//////////////////////////////// */
.diseases-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/diseases-banner.jpg");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}

/* //////////////////////////contact page start///////////////////////////////////// */
.contact-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/contact-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
.contact-section {
  background: #ffffff;
  position: relative;
}

/* Title */
.sectionn-title {
  font-weight: 400;
  color: #1e3a8a;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: #1e3a8a;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Contact Box */
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

/* Icons */
.contact-box .icon {
  font-size: 35px;
  color: #1e3a8a;
}

/* Headings */
.contact-box h5 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 5px;
}

/* Text */
.contact-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: #3e4359;
  line-height: 1.6;
}
.content {
  display: flex;
  flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}

.mail-section {
  background: #ffffff;
}

/* Form Card */
.form-card {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Small Tag */
.tag {
  color: #16a34a;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
}

.tag::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #1e3a8a;
  margin-top: 5px;
}

/* Title */
.form-title {
  font-size: 32px;
  margin-top: 20px;
  font-weight: 400;
  color: #1e3a8a;
  margin-bottom: 25px;
}

/* Inputs */
.custom-input {
  border: none;
  background: #ffffff;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
}

.custom-input:focus {
  box-shadow: none;
  background: #ffffff;
}

/* Button */
.submit-btn {
  background: #1e3a8a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0b9731;
}

/* Map */
.map-box {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .map-box {
    height: 300px;
  }
}
/* ////////////////////////////////gallery page start/////////////////////////////////////// */
.gallery-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/gallery-banner.jpg");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
.section-heading {
  font-size: 32px;
  font-weight: 600;
  color: #1f3c88;
}

.underline {
  width: 60px;
  height: 3px;
  background: #1f3c88;
}

.article-card {
  overflow: hidden;
  border-radius: 15px;
  height: 220px; /* fixed card height */
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes all images same size without distortion */
  transition: 0.4s ease;
  cursor: pointer;
}

.article-img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}
/* /////////////////////////////////////Ksharsutra//////////////////////////////////// */
.Ksharsutra-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/Ksharsutra-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}

/* Section background */
.about-sectionn {
  background-color: #ffffff;
}

/* Image styling */
.about-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Text styling */
.about-subtitlee {
  color: #28a745;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 22px;
}

.about-titlee {
  font-size: 36px;
  font-weight: 400;
  color: #14429c;
}

.about-textt {
  font-size: 20px;
  font-weight: 300;
  color: #3e4359;
  line-height: 33px;
}

.about-list {
  padding-left: 18px; /* default spacing */
}

.about-list li {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 300;
  color: #3e4359;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-titlee {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }
}
/* //////////////////////////////////////////Kshara/////////////////////////////////// */
.Kshara-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/Kshara-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
/* /////////////////////////////////////////Agnikarma//////////////////////////////////// */
.Agnikarma-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/agnikarma-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
/* ////////////////////////////Laser /////////////////////////////////////////////////////// */
.Laser-header {
  /* Replace 'your-image-path.jpg' with your actual image file */
  background:
    linear-gradient(to right, rgba(0, 123, 255, 0.5), rgba(255, 255, 255, 0.2)),
    url("../img/laser-banner.png");

  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  position: relative;
}
/* //////////////////////////////////////Blog page start//////////////////////////////////// */
.blog-section {
  background: #f5f7fa;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.blog-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* Content */
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h5 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Read More */
.read-more {
  margin-top: auto;
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
  transition: 0.3s;
}

.read-more:hover {
  color: #0a58ca;
  text-decoration: underline;
}
