/*
 * Anugraha Hospital Styles
 * Version: 1.0.1
 * Last Updated: 2025-01-17
 * Cache Buster: v1.0.1
 */

/* Custom Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float-horizontal {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}

/* Smooth Scroll Behavior */
html {
  font-family: "Arial", sans-serif; /* Set base font on the root element */
  scroll-behavior: smooth;
}

/* Custom Styles */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Custom Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Custom Button Styles */
.custom-button {
  position: relative;
  overflow: hidden;
}

.custom-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.custom-button:hover::after {
  left: 100%;
}

/* Hero Image Design */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-design {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Circle Designs */
.circle-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  top: 20%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  top: 40%;
  right: 20%;
  animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #9333ea, #7c3aed);
  bottom: 20%;
  left: 30%;
  animation: float 7s ease-in-out infinite;
}

/* Pattern Grid */
.pattern-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.pattern-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #6366f1;
  transform-origin: left;
}

.pattern-line:nth-child(1) {
  top: 33%;
  transform: rotate(15deg);
}

.pattern-line:nth-child(2) {
  top: 66%;
  transform: rotate(-15deg);
}

.pattern-line:nth-child(3) {
  top: 50%;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  background: #fff;
  border-radius: 8px;
}

.element-1 {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 30%;
  animation: rotate 10s linear infinite;
}

.element-2 {
  width: 30px;
  height: 30px;
  bottom: 30%;
  right: 20%;
  animation: float-horizontal 5s ease-in-out infinite;
}

.element-3 {
  width: 25px;
  height: 25px;
  top: 40%;
  left: 25%;
  animation: pulse 4s ease-in-out infinite;
}

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family will be inherited from html. You can remove this line or keep it if you prefer. */
  line-height: 1.6;
}

/* Navigation Styles */
.navbar {
  background-color: #ffffff;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
  height: 50px;
  width: auto;
}

.navbar-nav {
  gap: 30px;
}

.nav-link {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0 !important;
}

.nav-link:hover,
.nav-link.active {
  color: #1986a1 !important;
}

.book-appointment-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.book-appointment-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .navbar-nav {
    gap: 15px;
    padding: 20px 0;
  }

  .nav-item:last-child {
    margin-top: 10px;
  }

  .book-appointment-btn {
    width: 100%;
  }
}

/* Hero Section Styles */
.hero-section {
  padding-top: 100px;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #1986a1;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.primary-btn {
  background-color: #1986a1;
  color: white;
  border: none;
  padding: 0px 15px;
  height: 52px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-btn:hover {
  background-color: #1d6475;
}

.secondary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #f4a340;
  background-color: #f4a340;
  padding: 0px 15px;
  height: 52px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: #e89632;
  color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  color: #1986a1;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background-color: #ddd;
}

.hero-image {
  flex: 1;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 500px;
  background-color: #e5e7eb;
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}

/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.services-title {
  font-size: 42px;
  color: #1986a1;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transform: rotateY(90deg);
  opacity: 0;
}

.service-card:hover {
  background-color: #f4a340;
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1986a1;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
  stroke: #ffffff;
}

.service-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.view-more-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin:10px 0;
}

.view-more-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}

/* Responsive adjustments for services section */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }

  .services-description {
    font-size: 16px;
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 28px;
  }

  .services-description {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 20px;
  }

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

  .view-more-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* About Us Section Styles */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  padding-right: 10px;
  padding-bottom: 10px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.image-border {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 90%;
  border: 1px solid #f4a340;
  background-color: #f4a340;
  border-radius: 10px;
  z-index: 1;
}
.impact-border {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 90%;
  height: 90%;
  border: 1px solid #f4a340;
  background-color: #f4a340;
  border-radius: 10px;
  z-index: 1;
}

.about-content {
  padding-right: 20px;
}

.about-title {
  font-size: 42px;
  color: #1986a1;
  margin-bottom: 30px;
  font-weight: 700;
  /* opacity: 0;
  transform: translateY(50px); */
}

.about-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.highlight-text {
  color: #f4a340; /* Bootstrap blue or pick your brand color */
  font-weight: 600;
  background: linear-gradient(to right, #f9e9d5, transparent);
  padding: 0 4px;
  border-radius: 4px;
}

.about-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.about-btn:hover {
  background-color: #e89632;
}

/* Responsive styles for About section */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 32px;
  }

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

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

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

  .about-description {
    font-size: 14px;
  }

  .image-wrapper {
    padding-right: 15px;
    padding-bottom: 15px;
  }
}

/* Mission Cards Container */
.mission-cards-container {
  background-color: #f8f9fa;
  padding: 80px 0;
}

/* Mission Card Styles */
.mission-card {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background-color: transparent;
  border: 2px solid #1986a1;
  border-right: none;
  border-bottom: none;
}

.mission-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  background-color: transparent;
  border: 2px solid #1986a1;
  border-left: none;
  border-top: none;
}

.mission-card h3 {
  color: #1986a1;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.mission-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Center Logo Styles */
.center-logo-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

/* .mission-logo:hover {
  transform: scale(1.05);
} */

/* Responsive Styles */
@media (max-width: 768px) {
  .mission-cards-container {
    padding: 40px 0;
  }

  .mission-card {
    margin-bottom: 30px;
  }

  .mission-card h3 {
    font-size: 20px;
  }

  .mission-card p {
    font-size: 14px;
  }

  .center-logo-container {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .mission-card {
    padding: 20px;
  }

  .mission-card h3 {
    font-size: 20px;
  }

  .mission-card p {
    font-size: 14px;
  }
}

/* Why We Exist Section */
.why-we-exist-section {
  position: relative;
  padding: 100px 0;
  background-color: #f8f9fa;
  overflow: hidden;
  background-position: top;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-we-exist-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(25, 134, 161, 0.1),
    rgba(244, 163, 64, 0.1)
  );
  z-index: 1;
}

.exist-content {
  position: relative;
  z-index: 2;
  background: white;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #e89632;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.exist-content h2 {
  color: #1986a1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.exist-content p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.exist-content .view-more-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.exist-content .view-more-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}
.exist-content h2,
.exist-content p {
  opacity: 0;
  transform: translateY(40px);
}
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.4); /* dark overlay */
  z-index: 1;
  opacity: 0;
}
.exist-image {
  position: relative;
  z-index: 2;
}

.exist-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("path-to-your-pattern.png") repeat;
  opacity: 0.1;
  z-index: 1;
}

/* Responsive styles for Why We Exist section */
@media (max-width: 991px) {
  .why-we-exist-section {
    padding: 60px 0;
  }

  .exist-content {
    margin-bottom: 40px;
  }

  .exist-content h2 {
    font-size: 36px;
  }

  .exist-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .why-we-exist-section {
    padding: 40px 0;
  }

  .exist-content {
    padding: 30px;
  }

  .exist-content h2 {
    font-size: 32px;
  }

  .exist-content p {
    font-size: 15px;
  }
}

/* What We Solve Section */
.what-we-solve-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  color: #1986a1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header .subtitle {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.solve-card {
  background-color: #1986a1;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* transition: all 0.3s ease; */
}

.solve-card p{
  color: #ffffffd9;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.solve-card:hover {
  transform: translateY(-5px);
}

.solve-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.solve-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
}

.solve-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Responsive styles for What We Solve section */
@media (max-width: 991px) {
  .what-we-solve-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header .subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .what-we-solve-section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header .subtitle {
    font-size: 18px;
  }

  .solve-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .solve-card h3 {
    font-size: 16px;
  }
}



/* How We Impact Patients Section */
.impact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.impact-content h2 {
  color: #1986a1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.impact-subtitle {
  color: #333;
  font-size: 20px;
  margin-bottom: 30px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.impact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
}

.impact-list .check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  stroke: #4caf50;
}

.impact-image {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.impact-image img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.impact-image .image-border {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #f4a340;
  border-radius: 10px;
  z-index: 1;
}

/* Community Matters Section */
.community-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.community-content h2 {
  color: #1986a1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.community-subtitle {
  color: #333;
  font-size: 20px;
  margin-bottom: 30px;
}

.community-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.community-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
}

.community-list .check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  stroke: #4caf50;
}

.community-image {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}

.community-image img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.community-image .image-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #f4a340;
  border-radius: 10px;
  z-index: 1;
}

/* Responsive styles for both sections */
@media (max-width: 991px) {
  .impact-section,
  .community-section {
    padding: 60px 0;
  }

  .impact-content h2,
  .community-content h2 {
    font-size: 36px;
  }

  .impact-subtitle,
  .community-subtitle {
    font-size: 18px;
  }

  .impact-list li,
  .community-list li {
    font-size: 16px;
  }

  .impact-image,
  .community-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .impact-section,
  .community-section {
    padding: 40px 0;
  }

  .impact-content h2,
  .community-content h2 {
    font-size: 32px;
  }

  .impact-list li,
  .community-list li {
    font-size: 15px;
  }

  .impact-image,
  .community-image {
    padding: 15px;
  }
}

/* What Makes Us Different Section */
.different-section {
  /* padding: 80px 0; */
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 150px 0px;
  background-size: cover;
  background-position: top;
}

.different-content {
  padding-right: 40px;
}

.different-content h2 {
  color: #1986a1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.legacy-block {
  margin-bottom: 30px;
}

.legacy-block h3 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.legacy-block h3 span {
  font-weight: 400;
}

.legacy-block .doctor-name {
  color: #1986a1;
  font-weight: 600;
}

.compassion-block h3 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.different-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.different-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #080808;
  font-size: 18px;
  line-height: 1.5;
}

.different-list .check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
  stroke: #4caf50;
  flex-shrink: 0;
}

.different-image {
  position: relative;
}

.different-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.different-content .view-more-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.different-content .view-more-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}

/* Responsive styles for What Makes Us Different section */
@media (max-width: 991px) {
  .different-section {
    padding: 60px 0;
  }

  .different-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .different-content h2 {
    font-size: 36px;
  }

  .legacy-block h3,
  .compassion-block h3 {
    font-size: 22px;
  }

  .different-list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .different-section {
    padding: 40px 0;
  }

  .different-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .legacy-block h3,
  .compassion-block h3 {
    font-size: 20px;
  }

  .different-list li {
    font-size: 15px;
  }
}

/* Specialities Section Styles */
.specialities-section {
  position: relative;
  overflow: hidden;
}

.specialities-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.specialities-section .section-header p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.speciality-card {
  transition: transform 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.speciality-card:hover {
  transform: translateY(-5px);
}

.speciality-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.speciality-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(25, 134, 161, 0.1);
  margin-bottom: 1.5rem;
}

.specialty-icon {
  color: #1986a1;
}

.carousel-navigation {
  text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.8;
}

/* Why Choose Us Section Styles */
.why-choose-section {
  padding: 100px 0;
  position: relative;
  background-blend-mode: overlay;
  /* background-color: rgba(25, 134, 161, 0.9); */
}

.why-choose-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e89632;
  border-radius: 10px;
}

.why-choose-content h2 {
  color: #1986a1;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Custom Tab Styles */
.why-choose-content .nav-tabs {
  gap: 30px;
}

.why-choose-content .nav-link {
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  transition: all 0.3s ease;
}

.why-choose-content .nav-link:hover,
.why-choose-content .nav-link.active {
  color: #1986a1;
  border: none;
  background: none;
}

.tab-indicator {
  width: 100%;
  height: 2px;
  background: transparent;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}

.nav-link.active .tab-indicator {
  background: #f4a340;
}

/* Tab Content Styles */
.why-choose-content .tab-content {
  padding: 20px 0;
}

.why-choose-content .tab-pane p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-choose-content .view-more-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-choose-content .view-more-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}

/* Doctor Image Styles */
.doctor-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-image img {
  max-height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-content {
    margin-bottom: 40px;
  }

  .why-choose-content h2 {
    font-size: 2rem;
  }

  .doctor-image img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-content {
    padding: 30px !important;
  }

  .why-choose-content h2 {
    font-size: 1.8rem;
  }

  .why-choose-content .nav-link {
    font-size: 1rem;
  }

  .why-choose-content .tab-pane p {
    font-size: 0.9rem;
  }
}

/* Why Anugraha Hospital Section Styles */
.why-anugraha-section {
  background-color: #ffffff;
}

.why-title {
  color: #1986a1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.why-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.section-header {
  position: relative;
}

.section-header .view-more-btn {
  background-color: #f4a340;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  right: 0;
}

.section-header .view-more-btn:hover {
  background-color: #e89632;
  transform: translateY(-2px);
}

/* Specialty Cards */
.specialty-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.specialty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-img {
  transform: scale(1.1);
}

.specialty-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f4a340;
  padding: 15px;
  text-align: center;
}

.specialty-overlay h3 {
  color: white;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

/* .carousel-control-prev,
.carousel-control-next { */
/* width: 40px; */
/* height: 40px; */
/* background-color: white; */
/* border-radius: 50%; */
/* opacity: 1; */ /* This overrides Bootstrap's default of 0.5 */
/* } */

/* .carousel-control-prev:hover,
.carousel-control-next:hover { */
/* background-color: #f4a340; */ /* Custom hover background */
/* } */

/* .carousel-control-prev-icon,
.carousel-control-next-icon { */
/* width: 20px; */ /* Bootstrap default is 2rem */
/* height: 20px; */ /* Bootstrap default is 2rem */
/* background-size: 100%; */
/* filter: none; */ /* Custom, Bootstrap might use filter for its hover effect */
/* } */

.carousel-control-prev-icon {
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231986A1' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); */ /* Custom icon color, Bootstrap's default is white */
}

/* .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231986A1' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
} */

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  /* filter: brightness(0) invert(1); */ /* Custom hover icon color, Bootstrap handles its own icon color change on hover */
}

/* Responsive Styles */
@media (max-width: 991px) {
  .carousel-controls {
    left: -20px;
    right: -20px;
  }
@media (max-width:768px){
  .carousel-controls{
    display: none;
  }
}
  .section-header .view-more-btn {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-description {
    font-size: 1rem;
  }

  .specialty-card {
    height: 250px;
  }

  .specialty-overlay h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .carousel-controls {
    display: none;
  }

  .specialty-card {
    height: 200px;
  }
}

/* Statistics Section Styles */
.statistics-section {
  padding: 60px 0;
}

.stat-item {
  color: white;
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

/* Partners Section Styles */
.partners-section {
  background-color: #ffffff;
}

.partner-logo {
  max-height: 60px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-logo {
  max-height: 60px;
  object-fit: contain;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Appointment Booking Section Styles */
.appointment-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.appointment-card {
  background-color: #1986a1;
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.booking-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.booking-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.booking-form .form-control,
.booking-form .form-select {
  height: 50px;
  border-radius: 8px;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.booking-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: rgba(255, 255, 255, 0.7);
}

.booking-form .form-select option {
  color: #333;
  background-color: white;
}

.book-btn {
  background-color: #f4a340;
  color: white;
  height: 50px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #e89632;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.1rem;
    color: #fff;
  }

  .appointment-card {
    padding: 30px;
  }

  .booking-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 40px 0;
  }

  .stat-item {
    margin-bottom: 20px;
  }

  .partner-logo {
    max-height: 50px;
    margin: 10px 0;
  }

  .appointment-card {
    padding: 25px;
  }

  .booking-form .col-md-4 {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
    color: #fff;
  }

  .partner-logo {
    max-height: 40px;
  }

  .booking-title {
    font-size: 1.5rem;
  }
}

/* Newsletter Section Styles */
.newsletter-section {
  background-color: #ffffff;
}

.newsletter-title {
  color: #1986a1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.news-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-content {
  padding: 20px;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-title {
  color: #1986a1;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.read-more {
  color: #f4a340;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e89632;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
  }

  .news-image img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.75rem;
  }

  .news-card {
    margin-bottom: 30px;
  }

  .news-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .newsletter-title {
    font-size: 1.5rem;
  }

  .newsletter-description {
    font-size: 0.9rem;
  }

  .news-image img {
    height: 180px;
  }

  .news-title {
    font-size: 1.1rem;
  }
}

/* Footer Section Styles */
.footer-section {
  background-color: #1986a1;
  padding: 60px 0 30px;
  color: #ffffff;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Bottom Footer */
.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-links-inline {
  margin-bottom: 20px;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-inline a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stay-connected {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.social-icon {
  color: #ffffff;
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f4a340;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-title {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer-bottom .row > div {
    text-align: center !important;
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    max-width: 150px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links a,
  .footer-links-inline a {
    font-size: 0.85rem;
  }
}

/* Global Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  /* Navigation */
  .navbar {
    padding: 10px 0;
  }

  .nav-logo {
    height: 40px;
  }

  /* Hero Section */
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons button {
    width: 100%;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 20px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }

  /* Mission Cards */
  .mission-card {
    margin-bottom: 30px;
  }

  /* Statistics Section */
  .stat-number {
    font-size: 2.8rem;
  }

  /* Why Choose Us */
  .why-choose-content {
    margin-bottom: 30px;
  }

  /* Specialities Section */
  .speciality-card {
    margin-bottom: 20px;
  }

  /* Newsletter Section */
  .news-card {
    margin-bottom: 30px;
  }

  /* Footer */
  .footer-section .col-lg-2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* General */
  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 2rem;
  }

  /* Navigation */
  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin: 8px 0;
  }

  /* Hero Section */
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    text-align: center;
  }

  .stat-divider {
    display: none;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Impact Section */
  .impact-content,
  .community-content {
    text-align: center;
  }

  .impact-list li,
  .community-list li {
    justify-content: start;
  }

  /* Appointment Section */
  .appointment-card {
    padding: 20px;
  }

  .booking-form .row {
    margin: 0;
  }

  /* Partners Section */
  .partner-logo {
    margin: 15px auto;
    display: block;
  }
}

@media (max-width: 576px) {
  /* General */
  h2 {
    font-size: 1.8rem;
  }

  /* Hero Section */
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* Services Section */
  .service-card {
    padding: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  /* Mission Cards */
  .mission-card::before,
  .mission-card::after {
    width: 30px;
    height: 30px;
  }

  /* Statistics Section */
  .stat-number {
    font-size: 2.2rem;
  }

  /* Why Choose Us */
  .why-choose-content {
    padding: 20px !important;
  }

  .nav-tabs {
    flex-direction: column;
    gap: 10px;
  }

  /* Newsletter Section */
  .news-image img {
    height: 200px;
  }

  /* Footer */
  .footer-bottom {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-links-inline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1986a1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #156c82;
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .nav-logo {
    height: 35px;
  }

  .book-appointment-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .service-card:hover,
  .news-card:hover,
  .speciality-card:hover {
    transform: none;
  }

  .view-more-btn:hover {
    transform: none;
  }
}

.hero-section {
  background-image: url("../images/Anugraha/bannernew.webp");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  /* height: 100vh; */
}

.mission-logo-container {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -169px;
  top: 70px;
}

.vision-logo-container {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 59px;
  left: -167px;
}
.value-logo-container {
  position: absolute;
  width: 130px;
  height: 130px;
  top: -159px;
  left: 144px;
}

.arrow-icons {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
}

/* --- Mobile Responsiveness Enhancements --- */

@media (max-width: 991px) {
  .hero-section {
    padding-top: 120px; /* Extra space for fixed navbar */
  }
}
@media (max-width : 768px){
  .hero-section{
    padding : 30px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding-top: 90px;
  }
  .carousel-controls,
  .arrow-icons {
    display: none !important;
  }
  .specialty-card,
  .news-card,
  .service-card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .about-img,
  .impact-image img,
  .community-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .about-section,
  .mission-cards-container,
  .why-we-exist-section,
  .what-we-solve-section,
  .impact-section,
  .community-section,
  .different-section,
  .specialities-section,
  .why-choose-section,
  .why-anugraha-section,
  .statistics-section,
  .partners-section,
  .appointment-section,
  .newsletter-section,
  .footer-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .about-title,
  .services-title,
  .impact-content h2,
  .community-content h2,
  .different-content h2,
  .why-title,
  .newsletter-title {
    font-size: 1.3rem !important;
  }
  .about-description,
  .services-description,
  .impact-list li,
  .community-list li,
  .different-list li,
  .why-description,
  .newsletter-description {
    font-size: 0.95rem !important;
  }
  /* Mission card logos stacking */
  .mission-logo-container,
  .vision-logo-container,
  .value-logo-container {
    position: static !important;
    width: 100px !important;
    height: 100px !important;
    margin: 20px auto 0 auto !important;
    display: block !important;
  }
  .mission-card {
    min-height: unset !important;
    padding: 15px !important;
  }
}
@media (max-width: 400px) {
  .about-title,
  .services-title,
  .impact-content h2,
  .community-content h2,
  .different-content h2,
  .why-title,
  .newsletter-title {
    font-size: 1.1rem !important;
  }
  .about-description,
  .services-description,
  .impact-list li,
  .community-list li,
  .different-list li,
  .why-description,
  .newsletter-description {
    font-size: 0.85rem !important;
  }
  .footer-logo img {
    max-width: 100px !important;
  }
}
@media (max-width: 768px) {
  .mission-logo,
  .mission-logo-container,
  .center-logo-container,
  .value-logo-container,
  .vision-logo-container {
    display: none !important;
  }

  .mission-cards-container .row {
    flex-direction: column;
    align-items: center;
  }

  .mission-cards-container .col-md-4 {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .mission-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .arrow-icons {
    left: 10px !important;
    right: 10px !important;
    top: 90%;
    transform: translateY(-50%);
  }

  .speciality-card {
    padding: 20px 15px;
  }
}

.book-app-btn{
  background-color: #f4a340;
    color: white;
    border: none;
    padding: 0px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* #navbarDropdownSpecialities.dropdown-toggle::after {
  content: none !important;
}
#navbarDropdownServices.dropdown-toggle::after {
  content: none !important;
} */
.dropdown-menu .dropdown-item{
  white-space: wrap !important;
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.whats-app {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

.phnNumber{
  text-decoration: none;
  margin-bottom: 10px;
}

/* Doctors Section Responsive Styles */
.doctors-section {
  padding: 60px 0;
  /* background-color: #f8f9fa; */
}

.doctors-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.doctors-section .row {
  margin: 0 auto;
  max-width: 1200px;
}

.doctors-section .doctor-card {
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctors-section .doctor-card .position-relative {
  flex-shrink: 0;
}

.doctors-section .doctor-card .p-4 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem !important;
}

.doctors-section .doctor-card img {
  height: 260px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.doctors-section .doctor-card h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #333;
}

.doctors-section .doctor-card .small {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}

.doctors-section .doctor-card .text-muted.small {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.doctors-section .doctor-card .badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
}

.doctors-section .doctor-card .text-warning {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.doctors-section .doctor-card .text-warning i {
  font-size: 0.75rem;
}

.doctors-section .doctor-card a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.doctors-section .doctor-card a:hover {
  color: #e89632 !important;
}

.doctors-section .d-flex.justify-content-between {
  margin-top: auto;
  align-items: center;
}

.doctors-section .specialty-badge {
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .doctors-section .row {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .doctors-section {
    padding: 40px 0;
  }
  
  .doctors-section .container {
    padding: 0 15px;
  }
  
  .doctors-section .doctor-card {
    margin-bottom: 25px;
  }
  
  .doctors-section .doctor-card img {
    height: 240px;
  }
  
  .doctors-section .doctor-card .p-4 {
    padding: 1.25rem !important;
  }
  
  .doctors-section .doctor-card h5 {
    font-size: 1.125rem;
  }
  
  .doctors-section .doctor-card .small {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .doctors-section {
    padding: 30px 0;
  }

  .doctors-section .container {
    padding: 0 10px;
  }
  
  .doctors-section .row {
    margin: 0;
    width: 100% !important;
  }
  
  .doctors-section .col-md-6 {
    width: 100% !important;
    margin-bottom: 20px;
  }
  
  .doctors-section .doctor-card {
    margin-bottom: 20px;
  }
  
  .doctors-section .doctor-card img {
    height: 220px;
  }
  
  .doctors-section .doctor-card .p-4 {
    padding: 1rem !important;
  }
  
  .doctors-section .doctor-card h5 {
    font-size: 1rem;
  }
  
  .doctors-section .doctor-card .small {
    font-size: 0.8rem;
  }
  
  .doctors-section .doctor-card .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .doctors-section .doctor-card .text-warning {
    font-size: 0.8rem;
  }
  
  .doctors-section .doctor-card .text-warning i {
    font-size: 0.7rem;
  }
  
  .doctors-section .doctor-card a {
    font-size: 0.8rem;
  }
  
  .doctors-section .d-flex.justify-content-between {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start !important;
  }
  
  .doctors-section .d-flex.justify-content-between .text-warning {
    margin-bottom: 5px;
  }
  
  .doctors-section .text-center h1 {
    font-size: 1.75rem;
  }
  
  .doctors-section .text-center p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .doctors-section {
    padding: 20px 0;
    padding-top: 70px;
  }
  
  .doctors-section .container {
    padding: 0 5px;
  }
  
  .doctors-section .doctor-card {
    margin-bottom: 15px;
  }
  
  .doctors-section .doctor-card img {
    height: 200px;
  }
  
  .doctors-section .doctor-card .p-4 {
    padding: 0.875rem !important;
  }
  
  .doctors-section .doctor-card h5 {
    font-size: 0.95rem;
  }
  
  .doctors-section .doctor-card .small {
    font-size: 0.75rem;
  }
  
  .doctors-section .doctor-card .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
  
  .doctors-section .doctor-card .text-warning {
    font-size: 0.75rem;
  }
  
  .doctors-section .doctor-card .text-warning i {
    font-size: 0.65rem;
  }
  
  .doctors-section .doctor-card a {
    font-size: 0.75rem;
  }
  
  .doctors-section .mb-3 {
    margin-bottom: 0.75rem !important;
  }
  
  .doctors-section .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  
  .doctors-section .mt-4 {
    margin-top: 1rem !important;
  }
  
  .doctors-section .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .doctors-section .text-center h1 {
    font-size: 1.5rem;
  }
  
  .doctors-section .text-center p {
    font-size: 0.85rem;
  }
  
  .doctors-section .text-center .bg-primary {
    width: 80px !important;
    height: 3px !important;
  }
}

@media (max-width: 400px) {
  .doctors-section {
    padding-top: 70px;
  }
  
  .doctors-section .doctor-card img {
    height: 180px;
  }
  
  .doctors-section .doctor-card .p-4 {
    padding: 0.75rem !important;
  }
  
  .doctors-section .doctor-card h5 {
    font-size: 0.9rem;
  }
  
  .doctors-section .doctor-card .small {
    font-size: 0.7rem;
  }
  
  .doctors-section .doctor-card .badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.3rem;
  }
  
  .doctors-section .doctor-card .text-warning {
    font-size: 0.7rem;
  }
  
  .doctors-section .doctor-card .text-warning i {
    font-size: 0.6rem;
  }
  
  .doctors-section .doctor-card a {
    font-size: 0.7rem;
  }
  
  .doctors-section .text-center h1 {
    font-size: 1.25rem;
  }
  
  .doctors-section .text-center p {
    font-size: 0.8rem;
  }
  
  .doctors-section .text-center .bg-primary {
    width: 60px !important;
    height: 2px !important;
  }
}

/* Global Mobile Text Alignment Improvements */
@media (max-width: 768px) {
  /* General text alignment */
  .text-center {
    text-align: center !important;
  }
  
  .text-left {
    text-align: left !important;
  }
  
  .text-right {
    text-align: right !important;
  }
  
  /* Impact Section Mobile Improvements */
  .impact-section .row {
    flex-direction: column-reverse;
  }
  
  .impact-section .impact-content {
    text-align: center;
    padding: 20px 0;
  }
  
  .impact-section .impact-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .impact-section .impact-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .impact-section .impact-list {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
  }
  
  .impact-section .impact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
  }
  
  .impact-section .impact-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 8px;
  }
  
  /* Community Section Mobile Improvements */
  .community-section .row {
    flex-direction: column;
  }
  
  .community-section .community-content {
    text-align: center;
    padding: 20px 0;
  }
  
  .community-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .community-section .community-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .community-section .community-list {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
  }
  
  .community-section .community-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
  }
  
  .community-section .community-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 8px;
  }
  
  /* Different Section Mobile Improvements */
  .different-section .different-content {
    text-align: center;
    padding: 20px;
  }
  
  .different-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .different-section .legacy-block h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .different-section .compassion-block h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .different-section .different-list {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
  }
  
  .different-section .different-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
  }
  
  .different-section .different-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 8px;
  }
  
  /* Specialities Section Mobile Improvements */
  .specialities-section .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .specialities-section .section-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .specialities-section .speciality-card {
    text-align: center;
    padding: 1.5rem !important;
  }
  
  .specialities-section .speciality-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .specialities-section .speciality-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* About Section Mobile Improvements */
  .about-section .about-content {
    text-align: center;
    padding: 20px 0;
  }
  
  .about-section .about-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .about-section .about-description {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }
  
  /* Services Section Mobile Improvements */
  .services-section .services-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .services-section .services-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .services-section .service-card {
    text-align: center;
    padding: 1.5rem !important;
  }
  
  .services-section .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .services-section .service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* Mission Cards Mobile Improvements */
  .mission-cards-container .mission-card {
    text-align: center;
    padding: 1.5rem !important;
  }
  
  .mission-cards-container .mission-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .mission-cards-container .mission-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* What We Solve Section Mobile Improvements */
  .what-we-solve-section .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .what-we-solve-section .section-header .subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .what-we-solve-section .solve-card {
    text-align: center;
    padding: 1.5rem !important;
  }
  
  .what-we-solve-section .solve-card h3 {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* Why Choose Us Section Mobile Improvements */
  .why-choose-section .why-choose-content {
    text-align: center;
    padding: 1.5rem !important;
  }
  
  .why-choose-section .why-choose-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .why-choose-section .nav-tabs {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .why-choose-section .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .why-choose-section .tab-pane p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Why Anugraha Section Mobile Improvements */
  .why-anugraha-section .why-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .why-anugraha-section .why-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Statistics Section Mobile Improvements */
  .statistics-section .stat-number {
    font-size: 2.5rem;
  }
  
  .statistics-section .stat-label {
    font-size: 1rem;
  }
  
  /* Newsletter Section Mobile Improvements */
  .newsletter-section .newsletter-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .newsletter-section .newsletter-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .newsletter-section .news-card {
    text-align: center;
  }
  
  .newsletter-section .news-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .newsletter-section .read-more {
    font-size: 0.9rem;
  }
  
  /* Footer Mobile Improvements */
  .footer-section .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-section .footer-links a {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .footer-section .copyright {
    font-size: 0.8rem;
  }
  
  .footer-section .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* Further text size reductions for very small screens */
  .impact-section .impact-title,
  .community-section h2,
  .different-section h2,
  .specialities-section .section-header h2,
  .about-section .about-title,
  .services-section .services-title,
  .what-we-solve-section .section-header h2,
  .why-choose-section .why-choose-content h2,
  .why-anugraha-section .why-title,
  .newsletter-section .newsletter-title {
    font-size: 1.5rem !important;
  }
  
  .impact-section .impact-subtitle,
  .community-section .community-subtitle,
  .different-section .legacy-block h3,
  .different-section .compassion-block h3,
  .specialities-section .section-header p,
  .about-section .about-description,
  .services-section .services-description,
  .what-we-solve-section .section-header .subtitle,
  .why-choose-section .tab-pane p,
  .why-anugraha-section .why-description,
  .newsletter-section .newsletter-description {
    font-size: 0.85rem !important;
  }
  
  .impact-section .impact-list li,
  .community-section .community-list li,
  .different-section .different-list li {
    font-size: 0.8rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  /* Ensure proper left alignment for all lists */
  .impact-section .impact-list,
  .community-section .community-list,
  .different-section .different-list {
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  .impact-section .impact-list li,
  .community-section .community-list li,
  .different-section .different-list li {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  .specialities-section .speciality-card h3,
  .services-section .service-card h3,
  .mission-cards-container .mission-card h3 {
    font-size: 1rem !important;
  }
  
  .specialities-section .speciality-card p,
  .services-section .service-card p,
  .mission-cards-container .mission-card p,
  .what-we-solve-section .solve-card h3 {
    font-size: 0.8rem !important;
  }
  
  .newsletter-section .news-title {
    font-size: 0.9rem !important;
  }
  
  .newsletter-section .read-more {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 400px) {
  /* Minimal sizes for tiny screens */
  .impact-section .impact-title,
  .community-section h2,
  .different-section h2,
  .specialities-section .section-header h2,
  .about-section .about-title,
  .services-section .services-title,
  .what-we-solve-section .section-header h2,
  .why-choose-section .why-choose-content h2,
  .why-anugraha-section .why-title,
  .newsletter-section .newsletter-title {
    font-size: 1.25rem !important;
  }
  
  .impact-section .impact-subtitle,
  .community-section .community-subtitle,
  .different-section .legacy-block h3,
  .different-section .compassion-block h3,
  .specialities-section .section-header p,
  .about-section .about-description,
  .services-section .services-description,
  .what-we-solve-section .section-header .subtitle,
  .why-choose-section .tab-pane p,
  .why-anugraha-section .why-description,
  .newsletter-section .newsletter-description {
    font-size: 0.8rem !important;
  }
  
  .impact-section .impact-list li,
  .community-section .community-list li,
  .different-section .different-list li {
    font-size: 0.75rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  /* Force left alignment for all lists on tiny screens */
  .impact-section .impact-list,
  .community-section .community-list,
  .different-section .different-list {
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    list-style: none !important;
  }
  
  .impact-section .impact-list li,
  .community-section .community-list li,
  .different-section .different-list li {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  .specialities-section .speciality-card h3,
  .services-section .service-card h3,
  .mission-cards-container .mission-card h3 {
    font-size: 0.9rem !important;
  }
  
  .specialities-section .speciality-card p,
  .services-section .service-card p,
  .mission-cards-container .mission-card p,
  .what-we-solve-section .solve-card h3 {
    font-size: 0.75rem !important;
  }
  
  .newsletter-section .news-title {
    font-size: 0.85rem !important;
  }
  
  .newsletter-section .read-more {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .show-mobile-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .show-mobile-only {
    display: block !important;
  }
}

/* Mobile override: remove background image and enforce white bg/black text */
@media (max-width: 768px) {
  .why-we-exist-section {
    background-image: none !important;
    background-color: #ffffff !important;
  }

  .why-we-exist-section::before {
    background: none !important;
  }

  .why-we-exist-section .background-overlay {
    display: none !important;
  }

  .why-we-exist-section h2{
    color: #1986a1 !important;
  }
  .why-we-exist-section h3,
  .why-we-exist-section h4,
  .why-we-exist-section h5,
  .why-we-exist-section h6,
  .why-we-exist-section p,
  .why-we-exist-section li,
  .why-we-exist-section a,
  .why-we-exist-section span,
  .why-we-exist-section .legacy-block .doctor-name,
  .why-we-exist-section .different-list li {
    color: #000000 !important;
  }
}


