/* Theme Colors */
:root {
  --orange: #ff8e01;
  --text-dark: #212529;
}

/* Top bar */
.top-bar {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
  font-size: 15px;
}

/* Header main */
.main-header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.main-header .logo img {
  max-height: 100px;
}

.main-header .contact-info {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.main-header .contact-info i {
  color: var(--orange);
  margin-right: 8px;
}
/* Custom Navbar */
.custom-navbar {
  background: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.custom-navbar .navbar-brand img {
  max-height: 70px;
}

.custom-navbar .nav-link {
  color: #212529;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.custom-navbar .nav-link:hover {
  background: var(--orange);
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,142,1, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Style for the call button */
.btn-call {
  background-color: #ff8e01; /* Orange background */
  color: #fff;               /* White text */
  border: none;              /* Remove default border */
  padding: 8px 16px;         /* Add some padding */
  border-radius: 5px;        /* Rounded corners */
  font-weight: 600;          /* Bold text */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-call i {
  margin-right: 8px; /* Space between icon and number */
  font-size: 1.1rem;
}

.btn-call:hover {
  background-color: #e37a00; /* Darker orange on hover */
  color: #fff;
  text-decoration: none;     /* Remove underline on hover */
}
/* Custom mobile menu base styles */
.custom-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  z-index: 1050;
  padding: 2rem 1.5rem;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
}

/* Show the menu */
.custom-mobile-menu.show {
  right: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

@media (min-width: 992px) {
  /* Hide custom menu on desktop */
  .custom-mobile-menu {
    display: none !important;
  }

  .navbar-toggler {
    display: none;
  }
}


.nav-item .btn-call {
  margin-left: 15px; /* Add spacing if needed */
}



/* Diagnosis Section */
.diagnosis-section {
  background: #fff;

}

.diagnosis-section .headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  
  
}

.diagnosis-section .content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}
.diagnosis-section img{
  width: 80%;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-orange:hover {
  background: #e67d00;
  color: #fff;
}
@media (max-width: 768px) {
  .btn-orange{
    display: flex;
    justify-self: center;
  }
  .video-consultation .headline{
    text-align: center;
    font-size: 1.5rem !important;
  }
  .btn-whatsapp{
    display: flex !important;
    justify-self: center
    !important;
    margin-bottom: 12px;
  }
  .video-consultation .content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
}
.visit-img {
  width: 100% !important;
}
.about-img {
  width: 100% !important;
}


}


/* Video Consultation Section */
.video-consultation {
  background: linear-gradient(135deg, #fff7f0, #ffffff);
}

.video-consultation .headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.video-consultation .content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}
.video-consultation img {
  width: 80%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.video-card {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 142, 1, 0.85);
  color: #fff;
  font-size: 40px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


/* Call Section */
.call-section {
  /* background: linear-gradient(135deg, #fff7f0, #ffffff); */
  background: url('images/07.jpg');
  background-position: center;
  background-repeat: no-repeat;
    background-size: cover;
  text-align: center;
}

.call-section .headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.call-section .content {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,142,1,0.3);
  transition: all 0.3s ease-in-out;
}

.call-btn:hover {
  transform: scale(1.08);
  background: #e67d00;
  box-shadow: 0 8px 25px rgba(255,142,1,0.45);
}


/* Visit Hospital Section */
.visit-section {
  background: var(--orange);
}

.visit-card {
  background: #fff;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.visit-card:hover {
  transform: translateY(-6px);
}

.visit-section .headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.visit-section .content {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.visit-img {
  border: 6px solid #fff;
  border-radius: 16px;
  transition: 0.4s;
  width: 70%;
 
}

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

/* Diseases Section */
.diseases-section {
  background: linear-gradient(135deg, #fff7f0, #ffffff);
  position: relative;
}

.diseases-section .headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
}

.disease-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.disease-card:hover {
  transform: translateY(-10px);
  border: 2px solid var(--orange);
  box-shadow: 0 12px 25px rgba(255,142,1,0.2);
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,142,1,0.4);
}

.disease-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.disease-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* About Section */
.about-section {
  background: linear-gradient(135deg, #c8a587, #ffffff);
  position: relative;
}

.about-img {
  border-radius: 16px;
  transition: 0.4s;
  width: 60%;
}

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

.about-section .headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.about-section .content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

.about-feature i {
  font-size: 22px;
  color: var(--orange);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,142,1,0.25);
}

/* Testimonials Section */
.testimonials-section {
  background-image: linear-gradient(140deg #888383 #676767);
  /* background: url('images/02.jpg')center center no-repeat; */

}

.testimonial-card {
  max-width: 650px;
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  text-align: left;
  position: relative;
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--orange);
  object-fit: cover;
}

.testimonial-card .name {
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.testimonial-card .feedback {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
}

/* Stylish Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  /* color: #fff; */
  font-weight: 600;
  border: none;
  padding: 10px 18px;
  /* border-radius: 30px; */
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* box-shadow: 0 5px 15px rgba(255,142,1,0.4); */
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.carousel-btn:hover {
  background: #e67d00;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 10%; }
.carousel-btn.next { right: 10%; }

@media (max-width: 768px) {
  .carousel-btn.prev { left: 3%; }
  .carousel-btn.next { right: 3%; }
  .carousel-btn { font-size: 14px; padding: 8px 14px; }
}


/* USP Section */
.flow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  position: relative;
}

/* Step Circle + text wrapper */
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

/* Circle */
.step-icon {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Horizontal lines desktop */
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 59px; /* center of circle */
  left: calc(105% + 5px);
  width: 50px;
  height: 4px;
  background-color: #6c757d;
  z-index: 1;
}

/* Arrowhead */
.flow-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 55px; /* adjust to align with line */
  left: calc(108% + 50px); /* at end of line */
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #6c757d; /* arrow color */
  z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .flow-wrapper { flex-direction: column; }

  .flow-step:not(:last-child)::after {
    top: calc(112px + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 34px;
  }

  .flow-step:not(:last-child)::before {
    top: calc(100px + 50px); /* end of vertical line */
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #6c757d; /* arrow pointing down */
    border-bottom: 0;
  }
  .flow-wrapper{
    gap: 40px !important;
  }
  .step-icon{
    width: 70px !important;
    height: 70px !important;
  }

}


/* Text */
.flow-step p {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  text-align: center;
  max-width: 100px;
  z-index: 3; /* above line */
  position: relative;
}



/* ===========================
   Our Doctors – Carousel CSS
   =========================== */

:root {
  --orange: #ff8e01;
  --text-dark: #012246;
}

.doctors-section {
  background: linear-gradient(135deg, #fff7f0, #ffffff);
}

.headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 2rem;
}

/* Card wrapper for spacing */
.doctor-card-wrapper {
  padding: 0 6px;
  flex: 0 0 auto;
}

/* Doctor Card */
.doctor-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255,142,1,0.22);
}

/* Image + overlay */
.doctor-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.doctor-img img {
  width: 70%;
  aspect-ratio: 6/7;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.45s ease;
}

.doctor-card:hover .doctor-img img {
  transform: scale(1.08);
}

.doctor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,142,1,0.86);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctor-overlay a {
  color: #fff;
  font-size: 20px;
  background: rgba(255,255,255,0.22);
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.doctor-overlay a:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
}

/* Text */
.doctor-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 6px;
  color: var(--text-dark);
}

.doctor-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Carousel arrows */
.custom-nav {
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.custom-nav i {
  font-size: 42px;
  color: var(--orange);
  filter: drop-shadow(0 6px 14px rgba(255,142,1,0.35));
  transition: transform 0.25s ease, color 0.25s ease;
}

.custom-nav i:hover {
  color: #000;
  transform: scale(1.08);
}

.carousel-control-prev.custom-nav { left: -6px; }
.carousel-control-next.custom-nav { right: -6px; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .doctor-card-wrapper.d-lg-block { display: none !important; }
}

@media (max-width: 767.98px) {
  .doctor-card-wrapper.d-md-block { display: none !important; }
  .doctor-card img { aspect-ratio: 5/6; }
  .custom-nav i { font-size: 36px; }
}


/* ===========================
   Media Coverage Section CSS
   =========================== */
/* media-coverage.css */

/* Media Coverage Section */
.media-coverage {
  background: linear-gradient(135deg, #ffe0ca, #fff9f3);
  /* max-width: 1300px; */
}

.media-coverage .headline {
  font-size: 2rem;
  font-weight: 700;
  color: #ff8e01;
  margin-bottom: 1rem;
}

.media-card-wrapper {
  padding: 0 5px;
}
.media-card-wrapper iframe{
  max-width: 270px !important;
  min-width: 230px !important;
  max-height: 476px !important;
}

.media-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 245px;
}

.media-card img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(255, 142, 1, 0.25);
}

.media-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Carousel Navigation */
.custom-nav {
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.custom-nav i {
  font-size: 40px;
  color: #ff8e01;
  transition: 0.3s;
}

.custom-nav i:hover {
  color: #000;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-item .media-card-wrapper.d-lg-block {
    display: none !important; /* Desktop only card hidden on tablet */
  }
}

@media (max-width: 768px) {
  /* Mobile: 1 card per row */
  .carousel-item .media-card-wrapper.d-md-block {
    display: none !important; /* Tablet card hidden on mobile */
  }

  .media-card img {
    max-height: 245px;
  }
}




/* ===========================
        Footer CSS
=========================== */
.footer {
  background: linear-gradient(135deg, #ffefdb, #fff);
  color: #333;
  border-top: 3px solid var(--orange);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer p {
  font-size: 14px;
  color: #555;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

/* Social Links */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,142,1,0.1);
  color: var(--orange);
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

/* about page  */
/* Hero Section */
.aboutus-hero {
  background:
              url('images/banner-aboutt.jpg') no-repeat center/cover;
  padding: 60px 0;
  /* image-resolution: '2500*5500'; */
}
.aboutus-title {
  font-size: 3rem;
  font-weight: 700;
}
.aboutus-breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.aboutus-breadcrumb .active {
  color: #ff7b00;
  font-weight: 600;
}

/* About Content */
.aboutus-heading {
  font-weight: 700;
  color: #ff7b00;
}
.aboutus-image{
  width: 60%;
}
.aboutus-text {
  color: #555;
  line-height: 1.6;
}
.aboutus-btn {
  background: #ff7b00;
  border: none;
}
.aboutus-btn:hover {
  background: #e06900;
}

/* Mission & Vision Cards */
.aboutus-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.aboutus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}
.aboutus-subtitle {
  font-weight: 600;
}

/* Why Choose Us */
.aboutus-feature {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.aboutus-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* contact us page  */
/* Contact Us Section */
.contactus-section {
  background: linear-gradient(135deg, #fff7f0, #ffffff);
}

.contactus-info {
  background: #fff;
  border-left: 6px solid var(--orange);
}

.contactus-info h2 {
  color: var(--orange);
  font-weight: 700;
}

.contactus-info p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contactus-info i {
  color: var(--orange);
  margin-right: 8px;
  font-size: 18px;
}

.social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: var(--orange);
  transition: 0.3s;
}

.social-icons a:hover {
  color: #e67d00;
}

.contactus-form {
  background: #fff;
}

.contactus-form h2 {
  color: var(--orange);
  font-weight: 700;
}

.contactus-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 15px;
}

.contactus-btn {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.contactus-btn:hover {
  background: #e67d00;
}
/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 142, 1, 0.1); /* halka orange bg */
  color: var(--orange);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0px 4px 10px rgba(255, 142, 1, 0.4);
}

/* service page  */
.services-section {
  background: linear-gradient(135deg, #fff, #fff9f3);
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  color: #ff8e01;
  margin-bottom: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #012246;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(255,142,1,0.25);
}

/* privacy */
.privacy-section {
  background: #fff9f3;
  color: #012246;
  font-family: 'Segoe UI', sans-serif;
}

.privacy-section .headline {
  color: #ff8e01;
  font-weight: 700;
  text-align: center;
}

.privacy-section h4 {
  margin-top: 20px;
  color: #012246;
  font-weight: 600;
}

.privacy-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy-section p, .privacy-section li {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .privacy-section p, .privacy-section li {
    font-size: 14px;
  }
  .aboutus-image{
    width: 100% !important;
  }
  .aboutus-hero {
    background: url('images/aboutm.jpg');
    background-position: bottom;
    background-size: cover;
  }
}


/* terms & conditions */
.terms-section {
  background: #fff7f0;
  color: #012246;
  font-family: 'Segoe UI', sans-serif;
}

.terms-section .headline {
  color: #ff8e01;
  font-weight: 700;
  text-align: center;
}

.terms-section h4 {
  margin-top: 20px;
  color: #012246;
  font-weight: 600;
}

.terms-section p {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .terms-section p {
    font-size: 14px;
  }
}

.top-bar {
  /* background: #012246; */
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  overflow: hidden;
  position: relative;
}

.top-bar a {
  color: #ffffff;
  margin-left: 10px;
  text-decoration: none;
}

.top-bar a:hover {
  color: #fff;
}

.top-marquee  {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
   animation-play-state: running; 
}
.top-marquee:hover {
  animation-play-state: paused; /* hover pe pause */
}

.marquee-item {
  margin-right: 50px; /* space between items */
  display: inline-block;
}

/* Marquee effect */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .top-bar {
    font-size: 12px;
  }
  .marquee-item {
    margin-right: 20px;
  }
  .top-bar a {
    margin-left: 6px;
  }
}


/* General Body */


/* Blog Container */
.blog-container {
    padding: 60px 20px;
}

/* Blog Card Styles */
.blog-card {
    background: var(--orange);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.blog-card img {
    width: 100%;
    height: 260px;
    /* object-fit: cover; */
    transition: transform 0.3s;
}
.blog-card:hover img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 20px;
    text-align: center;
    color: white;
}
.blog-card-body h5 {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.3rem;
    transition: color 0.3s;
}


/* Detail Page */
/* Body & Background */


/* Container */
.blog-detail {
    width: 80%;
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Title */
.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Image Styling */
.blog-image-container {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Meta (Date) */
.blog-meta {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.blog-date {
    display: inline-block;
    font-style: italic;
}

/* Content Styling */
.blog-content {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content {
        font-size: 16px;
    }
}


/* category contect section  */
.contact-section {
  padding: 10px 20px;
  /* background: #111; */
  /* background: linear-gradient(145deg, #1f1f1fcf, #2a2a2a); */
  font-family: "Inter", sans-serif;
}

.contact-section .container {
  max-width: 1350px;
  margin: 0 auto;
}

/* Title */
.contact-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 35px;
  position: relative;
}
.contact-section .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #f97316;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Category box */
.contact-section .category {
  background: var(--orange);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
 filter: drop-shadow(10px -10px 2px wheat);
}
.contact-section .category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(48, 48, 48, 0.15);
  filter: none ;
}

.contact-section .category h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Numbers grid */
.contact-section .numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.contact-section .numbers-grid a {
  display: block;
  text-align: center;
  background: #f3f4f6;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.contact-section .numbers-grid a:hover {
  background: var(--orange);
  color: #fff;
  border-color: #f97316;
}

/* Bottom row (desktop default: 4 side by side) */
.contact-section .bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-section .category.small {
  padding: 16px 18px;
}
  .contact-section .category h3{
    text-align: center;
  }

/* Responsive: mobile me 1-1 cards vertically */
@media (max-width: 768px) {
 .contact-section  .bottom-row {
    grid-template-columns: 1fr; /* ek column */
    text-align: center;
  }

}
.topic-paragraph img {
  max-width: 400px;
  height: auto;
}
.center-btn{
  display: flex !important;
  justify-self: center !important;
  text-align: center !important;
}
/* gallery  */
.gallery-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  color: #012246;
}

.section-subtitle {
  margin-bottom: 20px;
  color: #555;
}

.gallery-filter {
  margin-bottom: 30px;
}

.gallery-filter button {
  padding: 8px 15px;
  border: none;
  margin: 0 5px;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: #ff8e01;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}
 /* service detais  */
     .service-hero {
      background: linear-gradient(rgba(1, 34, 70, 0.8), rgba(1, 34, 70, 0.8)), url('https://source.unsplash.com/1600x600/?hospital,healthcare') no-repeat center/cover;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }
    .service-hero h1 {
      font-size: 42px;
      margin-bottom: 10px;
    }
    .service-hero p {
      font-size: 18px;
      opacity: 0.9;
    }

    .service-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 10%;
      align-items: center;
    }

    .service-container img {
      flex: 1 1 400px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      max-width: 560px;
    }

    .service-details {
      flex: 1 1 400px;
    }
    .service-details h2 {
      font-size: 32px;
      color: #012246;
      margin-bottom: 20px;
    }
    .service-details p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .highlight-box {
      background: #f8f8f8;
      padding: 20px;
      border-left: 5px solid #ff8e01;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .highlight-box ul {
      list-style: none;
    }
    .highlight-box ul li {
      padding: 8px 0;
      font-size: 15px;
      color: #333;
    }

    .btn {
      display: inline-block;
      padding: 12px 25px;
      background: #ff8e01;
      color: #fff;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn:hover {
      background: #cc6f00;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .service-container {
        flex-direction: column;
        padding: 40px 20px;
      }
      .service-details h2 {
        font-size: 26px;
      }
      .service-container img {
        max-width: 320px !important;
       
      }
    }
    /* faq-section */
     .accordion-button {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: #0d6efd;
}
.accordion-button:not(.collapsed) {
    background: var(--orange);
    color: #fff;
}
.accordion-body {
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

        .form-box {
          max-width: 700px;
          margin: 40px auto;
          background: var(--orange);
          padding: 15px;
          border-radius: 10px;
            
          
        }
    
        .form-box input,
        .form-box select,
       .form-box button {
         width: 24%;
          padding: 6px;
          margin: 10px 0;
          border-radius: 6px;
          border: 1px solid #ccc;
        
        }
    
        .form-box button {
          background: darkgreen;
          font-weight: bold;
          border: none;
          cursor: pointer;
        }
    
        .form-box button:hover {
          background: #ffffff;
          color: black !important;
        }

        @media (max-width: 768px) {
          .mbl-direction{
            flex-direction: column;
          }
          .form-box input,
        .form-box select{
          width: 100% !important;
        }
        .form-box{
          width: 100% !important;
         
        }
         .form-box button{
          width: 50%;
          position: relative;
          left: 25%;
         
         }
        .lbl{
          display: none;
        }
       
        }
         @media (min-width: 769px) {
          .space-input{
            justify-content: space-between;
          }
         }
          @media (min-width: 480px) {
          .desktop-hide{
            display: none;
          }
        }
        @media (max-width: 480px) {
          .mbl-none{
            display: none;
          }
          
        }

        /* treatment */
        .treatment-section-title {
      text-align: center;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: var(--orange);
    }
    .treatment-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      background: #fff;
    }
    .treatment-card img {
      height: 260px;
      object-fit:contain;
      transition: transform 0.4s ease;
    }
    .treatment-card:hover img {
      transform: scale(1.1);
    }
    .treatment-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }
    .treatment-section-title .card-body {
      text-align: center;
      padding: 1rem;
    }
    .treatment-section-title .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-top: 0.5rem;
      color: #0f172a;
      text-align: center;
    }
    .card-title{
      text-align: center;
    }
    @media (max-width: 576px) {
      .treatment-card img {
        height: 180px;
        width: 180px;
        display: flex;
        justify-self: center;
      }
      .treatment-card{
        display: contents;
      }
    }