/* Importing Modern Fonts with Improved Weights */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Custom Properties (Modernized Brand Colors and Tokens) */
:root {
  --rajrupa-primary-green: #00a86b;
  --rajrupa-accent-red: #da251c;
  --rajrupa-text-dark: #1a1a1a;
  --rajrupa-body-bg: #f8fafc;
  --rajrupa-muted-bg: #f1f5f9;
  --rajrupa-border: #e2e8f0;
  --rajrupa-hover-green: #008f56;
  --rajrupa-focus-ring: rgba(0, 168, 107, 0.3);
  --rajrupa-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --font-family: "Inter", sans-serif;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Body Styles */
body {
  font-family: var(--font-family);
  background-color: var(--rajrupa-body-bg);
  color: var(--rajrupa-text-dark);
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-family: var(--font-family);
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Top Contact Bar */
.top-bar {
  width: 100%;
  position: sticky;
  background-color: #1f2937;
  color: #f8fafc;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-base);
}

.contact-item:hover {
  color: var(--rajrupa-primary-green);
}

.contact-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.social-links-top {
  display: flex;
  gap: 1.25rem;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-base);
}

.social-icon:hover {
  color: var(--rajrupa-primary-green);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }
}

/* Enhanced Navigation Styles */
.navbar {
  padding-top: 0px !important;
  /* padding: 10px 0px !important; */
  position: sticky !important;
  top: 0;
  z-index: 100;
  background-color: #ffffff !important;
  box-shadow: var(--rajrupa-shadow);
  border-bottom: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
}

.nav-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 168, 107, 0.25);
  transition: var(--transition-base);
  margin-left: 15px;
}
.logo-circle img {
  margin-top: 10px;
}
/* .logo-circle:hover {
  transform: scale(1.05);
} */

.logo-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  letter-spacing: -0.025em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: var(--rajrupa-text-dark) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: var(--transition-base) !important;
  padding: 0.75rem 1rem !important;
  position: relative;
  text-decoration: none; /* remove underline */
  border-radius: 0.5rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rajrupa-primary-green);
  background-color: var(--rajrupa-muted-bg);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 50%;
  left: -1rem;
  margin-top: 0.75rem;
  width: 200px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
  padding: 0.75rem 0;
  display: none;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-base);
}

.dropdown-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: var(--rajrupa-text-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.dropdown-item:hover {
  color: var(--rajrupa-primary-green);
  background-color: var(--rajrupa-muted-bg);
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rajrupa-text-dark);
  transition: var(--transition-base);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: var(--rajrupa-primary-green);
}

.menu-icon,
.close-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: var(--rajrupa-shadow);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 99;
}

.mobile-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 1rem 0;
  text-align: left;
  color: var(--rajrupa-text-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--rajrupa-primary-green);
  transform: translateX(8px);
}

.mobile-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.dropdown-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--rajrupa-muted-bg);
  border-left: 3px solid var(--rajrupa-primary-green);
  margin-top: 0.5rem;
  transition: max-height 0.4s ease;
}

.mobile-dropdown-menu.open {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  color: var(--rajrupa-text-dark);
  transition: var(--transition-base);
}

.mobile-dropdown-item:hover {
  color: var(--rajrupa-primary-green);
  background: #ecfdf5;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  width: fit-content;
  background: linear-gradient(135deg, var(--rajrupa-accent-red), #ff7875);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 77, 79, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff4040, #ff6663);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 79, 0.4);
}

.btn-secondary {
  background-color: var(--rajrupa-primary-green) !important;
  border: 2px solid var(--rajrupa-primary-green) !important;
  color: var(--rajrupa-body-bg) !important;
}
a {
  background: var(--rajrupa-primary-green) !important;
}
.btn-secondary:hover {
  background-color: var(--rajrupa-primary-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Banner */
/* Hero Banner */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 550px;
  background: linear-gradient(
    135deg,
    var(--rajrupa-primary-green) 0%,
    #1a4731 100%
  );
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1666214280391-c9ef08d09da8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtZWRpY2FsJTIwZGlhZ25vc3RpYyUyMGVxdWlwbWVudCUyMHJhZGlvbG9neXxlbnwxfHx8fDE3NTU4NDg1MTN8MA&ixlib=rb-4.1.0&q=80&w=1920")
    center/cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 1;
}

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

.hero-text-box {
  max-width: 600px;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  line-height: 1.6;
}

.hero-cta {
  background: linear-gradient(135deg, var(--rajrupa-accent-red), #ff7875);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(255, 77, 79, 0.4);
  transition: var(--transition-base);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #ff4040, #ff6663);
  transform: translateY(-2px);
}

.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--rajrupa-shadow);
  z-index: 2;
}

.hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-slider .prev,
.hero-slider .next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
  z-index: 3;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-slider .prev {
  left: 10px;
}

.hero-slider .next {
  right: 10px;
}

@media (max-width: 767px) {
  .hero-text-box,
  .hero-slider {
    width: 100%;
  }

  .hero-slider {
    height: 300px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-banner {
    min-height: 450px;
    height: auto;
    padding: 50px 20px;
  }

  .hero-text-box {
    text-align: center;
  }
  .about-text p {
    text-align: center;
  }
}
.justify-content-center {
  align-items: center;
}
button {
  border: none !important;
}
/* Service Hero Section */
.service-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--rajrupa-primary-green) 0%,
    #1a4731 100%
  ) !important;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1666214280391-c9ef08d09da8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtZWRpY2FsJTIwZGlhZ25vc3RpYyUyMGVxdWlwbWVudCUyMHJhZGlvbG9neXxlbnwxfHx8fDE3NTU4NDg1MTN8MA&ixlib=rb-4.1.0&q=80&w=1920")
    center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  transition: var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--rajrupa-accent-red);
}

.breadcrumb-separator {
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.service-hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 650px;
}

@media (max-width: 768px) {
  .hero-slider img {
    top: 20px;
  }
  .service-hero-title {
    font-size: 2.25rem;
  }

  .service-hero {
    height: 50vh;
    min-height: 350px;
  }
}

/* About Section */
.about-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-title.red {
  color: var(--rajrupa-accent-red);
}

.section-subtitle {
  color: var(--rajrupa-text-dark);
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--rajrupa-text-dark);
  opacity: 0.9;
}

.image-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--rajrupa-shadow);
  transition: var(--transition-base);
}

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

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

/* Vision & Mission Section */
.vision-mission-section {
  padding: 3rem 0;
  background-color: var(--rajrupa-muted-bg);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vision-mission-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
  overflow: hidden;
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-header-enhanced {
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  padding: 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.card-header-enhanced::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition-base);
}

.vision-mission-card:hover .card-header-enhanced::before {
  transform: scale(1.3);
}

.card-icon-enhanced {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-base);
}

.vision-mission-card:hover .card-icon-enhanced {
  transform: scale(1.1);
}

.card-icon-enhanced i {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}

.card-title-enhanced {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.025em;
}

.card-content-enhanced {
  padding: 2rem;
}

.card-text-enhanced {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--rajrupa-text-dark);
  opacity: 0.9;
  font-style: normal;
}

/* Map Section */
.map-section {
  padding: 3rem 0;
  background-color: var(--rajrupa-body-bg);
}

.map-container {
  margin-top: 3rem;
}

.map-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--rajrupa-shadow);
  background-color: #ffffff;
  border: 1px solid var(--rajrupa-border);
}

.google-map {
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(0.3);
  transition: var(--transition-base);
}

.map-wrapper:hover .google-map {
  filter: grayscale(0);
}

.map-overlay {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--rajrupa-shadow);
  max-width: 320px;
  transition: var(--transition-base);
}

.map-overlay:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 0.75rem;
}

.map-info-address {
  font-size: 0.95rem;
  color: var(--rajrupa-text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  opacity: 0.85;
}

.map-info-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    margin: 1.5rem auto;
    max-width: none;
  }

  .map-info-actions {
    flex-direction: row;
    gap: 1rem;
  }

  .btn-sm {
    flex: 1;
  }

  .google-map {
    height: 350px;
  }
}

/* Services List Section */
.services-list-section {
  padding: 4rem 0;
  background-color: var(--rajrupa-muted-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
  display: none;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.service-item-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.service-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.service-item-description {
  color: var(--rajrupa-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.85;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rajrupa-border);
  color: var(--rajrupa-text-dark);
  position: relative;
  padding-left: 1.75rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rajrupa-primary-green);
  font-weight: bold;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Doctor Profile Section */
.doctor-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.doctor-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .doctor-profile {
    grid-template-columns: 2fr 1fr;
  }
}

.doctor-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--rajrupa-accent-red);
  margin-bottom: 0.75rem;
}

.doctor-title {
  font-size: 1.25rem;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.doctor-description p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.credentials-list {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}

.credentials-list li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--rajrupa-primary-green);
}

.doctor-photo-container {
  border: 5px solid #ffffff;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--rajrupa-shadow);
  transition: var(--transition-base);
}

.doctor-photo-container:hover {
  transform: translateY(-5px);
}

.doctor-photo {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* Services Section */
.services-section {
  padding: 3rem 0;
  background-color: var(--rajrupa-body-bg);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
  background-color: #ffffff;
  box-shadow: var(--rajrupa-shadow);
  border-radius: 1.25rem;
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
  text-align: center;
}

.service-card:hover {
  border: 1px solid var(--rajrupa-primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-container {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.service-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--rajrupa-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: var(--rajrupa-muted-bg);
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  transition: var(--transition-base);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--rajrupa-text-dark);
  line-height: 1.8;
  opacity: 0.9;
}

.step-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.step-list li {
  padding: 0.75rem 0;
  color: var(--rajrupa-text-dark);
  position: relative;
  padding-left: 1.75rem;
}

.step-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rajrupa-primary-green);
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--rajrupa-body-bg);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  background-color: var(--rajrupa-muted-bg);
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rajrupa-text-dark);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--rajrupa-primary-green);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer.show {
  padding: 1.5rem;
  max-height: 250px;
}

.faq-answer p {
  color: var(--rajrupa-text-dark);
  line-height: 1.8;
  opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  padding: 1.5rem;
  box-shadow: var(--rajrupa-shadow);
  border-radius: 1.25rem;
  background-color: #ffffff;
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-card:hover {
  border: 1px solid var(--rajrupa-primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--rajrupa-text-dark);
  line-height: 1.8;
  opacity: 0.9;
}

.building-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
}

/* Services Categories */
.services-categories {
  padding: 6rem 0;
  background-color: var(--rajrupa-muted-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.category-section {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: var(--rajrupa-shadow);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.category-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.cat-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item-card {
  padding: 2rem;
  background-color: var(--rajrupa-muted-bg);
  border-radius: 1rem;
  border: 1px solid var(--rajrupa-border);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.service-card-description {
  color: var(--rajrupa-text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.service-card-features {
  list-style: none;
  padding: 0;
}

.service-card-features li {
  padding: 0.5rem 0;
  color: var(--rajrupa-text-dark);
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.service-card-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rajrupa-primary-green);
}

/* X-Ray Types Section */
.xray-types-section {
  padding: 3rem 0;
  background-color: var(--rajrupa-muted-bg);
}

.xray-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .xray-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xray-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xray-type-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.xray-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.xray-type-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.type-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.xray-type-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.xray-type-description {
  color: var(--rajrupa-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.85;
}

.xray-conditions {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.conditions-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rajrupa-primary-green);
  margin-bottom: 0.75rem;
}

.conditions-list {
  list-style: none;
  padding: 0;
}

.conditions-list li {
  padding: 0.5rem 0;
  color: var(--rajrupa-text-dark);
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.conditions-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rajrupa-primary-green);
}

.exam-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.detail-badge {
  background-color: var(--rajrupa-muted-bg);
  color: var(--rajrupa-primary-green);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Quick Service Benefits */
.quick-service-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.benefit-svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--rajrupa-text-dark);
  line-height: 1.7;
  opacity: 0.85;
}

/* Patient Instructions */
.instructions-section {
  padding: 6rem 0;
  background-color: var(--rajrupa-muted-bg);
}

.instructions-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .instructions-content {
    grid-template-columns: 2fr 1fr;
  }
}

.instruction-steps {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: var(--rajrupa-shadow);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rajrupa-border);
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.special-instructions {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: var(--rajrupa-shadow);
  height: fit-content;
}

.special-box {
  text-align: center;
}

.special-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-accent-red), #ff7875);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(255, 77, 79, 0.3);
}

.special-svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.special-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-accent-red);
  margin-bottom: 1.5rem;
}

.special-content {
  text-align: left;
}

.special-item {
  margin-bottom: 1.5rem;
}

.special-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rajrupa-primary-green);
  margin-bottom: 0.75rem;
}

.special-item p {
  color: var(--rajrupa-text-dark);
  line-height: 1.7;
  opacity: 0.85;
}

/* Preparation Section */
.preparation-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.preparation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .preparation-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.prep-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: var(--rajrupa-shadow);
  border: 1px solid var(--rajrupa-border);
}

.prep-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.prep-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.prep-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1.5rem;
}

.prep-item {
  margin-bottom: 1.5rem;
}

.prep-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rajrupa-text-dark);
  margin-bottom: 1rem;
}

.prep-list {
  list-style: none;
  padding: 0;
}

.prep-list li {
  padding: 0.75rem 0;
  color: var(--rajrupa-text-dark);
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.7;
}

.prep-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rajrupa-primary-green);
}

/* Safety Section */
.safety-section {
  padding: 6rem 0;
  background-color: var(--rajrupa-muted-bg);
}

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

.safety-header {
  margin-bottom: 3rem;
}

.safety-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(0, 168, 107, 0.3);
}

.safety-icon-svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}

.safety-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.safety-subtitle {
  font-size: 1.125rem;
  color: var(--rajrupa-text-dark);
  opacity: 0.85;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

@media (min-width: 768px) {
  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.safety-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
}

.safety-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rajrupa-primary-green);
  margin-bottom: 1rem;
}

.safety-item-text {
  color: var(--rajrupa-text-dark);
  line-height: 1.7;
  opacity: 0.85;
}

/* Contact Cards Section */
/* Contact Cards Section (Footer) Styling */
.contact-cards-section {
  padding: 3rem 0;
  background-color: #000000;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: c;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--rajrupa-shadow);
  text-align: center;
  border: 1px solid var(--rajrupa-border);
  transition: var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--rajrupa-hover-green);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(255, 77, 79, 0.3);
}

.contact-card-icon i {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rajrupa-text-dark);
  margin-bottom: 1rem;
}

.contact-card-text {
  color: var(--rajrupa-primary-green);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Footer Bottom Bar Styling */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.8;
}

/* Animation for fade-in effect */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--rajrupa-primary-green), #00c087);
  color: #ffffff;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--rajrupa-accent-red), #ff7875);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: var(--rajrupa-primary-green);
}

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-circle {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 255, 255, 0.85);
}

.services-list {
  list-style: none;
}

.services-list li {
  margin-bottom: 0.75rem;
}

.service-link {
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: left;
  padding: 0;
  font-size: 1rem;
}

.service-link:hover {
  color: var(--rajrupa-primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

/* Animation Classes */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-up.animate,
.animate-fade-in-left.animate,
.animate-fade-in-right.animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 767px) {
  .section-title {
    font-size: 2.25rem;
  }

  .doctor-name {
    font-size: 2.25rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

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

  .overview-stats,
  .overview-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-item {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.overview-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  border: 3px solid var(--rajrupa-primary-green);
  background: var(--rajrupa-muted-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  transition: var(--transition-base);
  box-shadow: var(--rajrupa-shadow);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--rajrupa-primary-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--rajrupa-text-dark);
  font-weight: 500;
  opacity: 0.85;
}
/* Custom Modal Styling */
.modal-fullscreen .modal-content {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-fullscreen .modal-header {
  border-bottom: none;
  padding: 20px 40px;
}

.modal-fullscreen .modal-body {
  padding: 40px;
}

.modal-fullscreen .btn-close {
  font-size: 1.5rem;
  color: #4a5568;
}

.modal-fullscreen .btn-close:hover {
  color: #2b6cb0;
}

/* Service Overview Section Styling */
.service-overview {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
  padding: 3rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.overview-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c5e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.overview-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overview-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  background: #e6f0fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

.overview-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

/* Services List Section Styling */
.services-list-section .service-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 0px;
}

.service-item-icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  color: #2b6cb0;
}

.service-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3c5e;
  margin-bottom: 10px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #4a5568;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .overview-content {
    padding: 30px;
  }

  .overview-title {
    font-size: 2rem;
  }

  .overview-text {
    font-size: 1rem;
  }

  .overview-image {
    max-height: 300px;
  }

  .modal-fullscreen .modal-body {
    padding: 20px;
  }
}
/* Carousel Controls Container */
.carousel-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Arrow Button Styling */
.prev,
.next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid var(--rajrupa-border, #e2e8f0);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--rajrupa-text-dark, #1a3c5e);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

/* Arrow Icon Styling */

/* Hover and Focus States */
.prev:hover,
.next:hover,
.prev:focus,
.next:focus {
  background: var(--rajrupa-hover-green, #38a169);
  border-color: var(--rajrupa-hover-green, #38a169);
  box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3);
  transform: translateY(-2px);
}

.prev:hover .arrow-icon,
.next:hover .arrow-icon,
.prev:focus .arrow-icon,
.next:focus .arrow-icon {
  stroke: #ffffff;
}

/* Disabled State */
.prev:disabled,
.next:disabled {
  background: #f1f3f5;
  border-color: #e2e8f0;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
}

.prev:disabled .arrow-icon,
.next:disabled .arrow-icon {
  stroke: #6b7280;
}

/* Animation for Smooth Appearance */
.prev,
.next {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.prev {
  animation-delay: 0.1s;
}

.next {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .prev,
  .next {
    width: 40px;
    height: 40px;
  }

  .arrow-icon {
    width: 20px;
    height: 20px;
  }
}
