*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-white{
  color: #fff;
}

.top-strip {
  background-color: #1E84B5;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.top-strip .contact-details{
  display: flex;
  gap: 25px;
}

.top-strip .contact-details a {
  color: #fff;
  text-decoration: none;
}

.top-strip .contact-details a:hover {
  text-decoration: underline;
  color: #f12424;
}

.top-strip .contact-details a i{
  margin-right: 5px;
  color: #fff;
}

.top-strip .social-icons a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-size: 16px;
}

.top-strip .social-icons a:hover {
  color: #f12424;
}

header {
  position: sticky;
  top: 0;
  z-index: 98;
  overflow: visible;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header{
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  position: relative;
  padding: 10px 0;
}

.header .logo{
  flex: 1;
  padding-left: 40px;
  display: flex;
  z-index: 95;
  align-items: center;
}

.header .logo img{
  height: 80px;
}

.navbar{
  flex: 2.5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 97;

}

.appointment-btn {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
.navbar ul{
  list-style: none;
  display: flex;
  gap: 30px;
  overflow: visible;
  position: relative;
}
.navbar ul li {
  overflow: visible;
  position: relative;
}

.navbar ul li a{
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}
.navbar ul li a .active{
  color: #1E84B5;
}

.navbar ul li{
  position: relative;
}

.navbar ul li a:hover{
  color: #1E84B5;
}

.about-nav {
  position: relative;
}

.about-trigger {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.about-trigger:hover {
  color: #1E84B5;
}

.about-trigger:hover .dropdown-icon {
  transform: rotate(180deg);
}

.about-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  padding-top: 16px;
  left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.2);
  display: none;
  z-index: 101;
  border-radius: 8px;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

.about-nav:hover .about-dropdown {
  display: block;
}

.about-item {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #0b2b45;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.about-item:last-child {
  border-bottom: none;
}

.about-item:hover {
  background-color: #f0f7fc;
  color: #1E84B5;
  padding-left: 24px;
}.about-item:hover {
  background-color: #f5f5f5;
  color: #1E84B5;
}

.appointment-btn a {
  background-color: #1E84B5;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.appointment-btn a:hover {
  background-color: #0b4f72;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 132, 181, 0.4);
}

/* ============================================
   HAMBURGER MENU & MOBILE NAVIGATION
   ============================================ */

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* .mobile-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
} */

.mobile-menu.active::before {
  opacity: 1;
  /* z-index: 997; */
}

.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-navbar {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.mobile-navbar ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-navbar ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.mobile-navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
}

/* Mobile Dropdown Menus */
.mobile-about-nav,
.mobile-treatments-nav {
  position: relative;
}

.mobile-about-trigger,
.mobile-treatments-trigger {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-about-trigger:hover,
.mobile-treatments-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
}

.mobile-about-trigger .dropdown-icon,
.mobile-treatments-trigger .dropdown-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mobile-about-nav.active .mobile-about-trigger .dropdown-icon,
.mobile-treatments-nav.active .mobile-treatments-trigger .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-about-dropdown,
.mobile-treatments-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-about-nav.active .mobile-about-dropdown,
.mobile-treatments-nav.active .mobile-treatments-dropdown {
  max-height: 1200px;
}

.mobile-about-dropdown a,
.mobile-treatments-dropdown a {
  padding: 12px 20px 12px 40px;
  color: white;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-about-dropdown a:hover,
.mobile-treatments-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

/* Mobile Treatment Categories */
.mobile-treatment-category {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-treatment-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  padding: 12px 20px 12px 40px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-treatment-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

.mobile-treatment-trigger .category-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-treatment-category.active .mobile-treatment-trigger .category-icon {
  transform: rotate(45deg);
}

.mobile-treatment-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-treatment-category.active .mobile-treatment-submenu {
  max-height: 800px;
}

.mobile-treatment-submenu a {
  display: block;
  padding: 10px 20px 10px 60px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.mobile-treatment-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 70px;
  border-left-color: #1E84B5;
}

.mobile-appointment {
  border-bottom: none !important;
  padding: 20px !important;
}

.mobile-book-btn {
  background: white !important;
  color: #1E84B5 !important;
  border-radius: 8px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.mobile-book-btn:hover {
  background: #f0f7fc !important;
  transform: translateY(-2px) !important;
}

.hero-section {
  position: relative;
  /* min-height: 600px; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f2 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #0b2b45;
  line-height: 1.3;
  margin: 0;
}

.hero-title .highlight {
  color: #1E84B5;
}

.hero-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0b4f72;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #1E84B5;
  transform: translateX(5px);
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 132, 181, 0.8);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: #1E84B5;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 30px;
}

.slider-nav.next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot.active {
  background: #1E84B5;
  border-color: #fff;
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }
}

/* Info Strip Section */
.info-strip {
  background: linear-gradient(135deg, #0d5473 0%, #1a7a9e 100%);
  padding: 40px 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.info-item:last-child {
  justify-content: flex-end;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-icon i {
  font-size: 24px;
  color: #fff;
}

.info-item:hover .info-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.info-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #fff;
}

.info-content p {
  font-size: 16px;
  margin: 0;
  /* color: rgba(255, 255, 255, 0.95); */
  color: #fff;
}

.info-content p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content p a:hover {
  color: #ffe066;
}

.appointment-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0d5473;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.appointment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  /* background: #ffe066; */
  color: #0d5473;
}

.appointment-button i {
  transition: transform 0.3s ease;
}

.appointment-button:hover i {
  transform: translateX(5px);
}

.about-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}


.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image wrapper with stats */
.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 30, 60, 0.15);
  cursor: pointer;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

/* Image overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 132, 181, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.about-image:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 60px;
  margin-bottom: 10px;
  display: block;
}

.overlay-content span {
  font-size: 18px;
  font-weight: 600;
}

/* Stats wrapper */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 132, 181, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 132, 181, 0.3);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-number::after {
  content: '+';
  margin-left: 2px;
}

.stat-item:nth-child(3) .stat-number::after {
  content: '%';
}

.stat-label {
  font-size: 13px;
  opacity: 0.95;
}

/* Content animations */
.about-content h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #1E84B5;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  color: #2e2e2e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features list */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-30px);
}

.feature-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-item:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(30, 132, 181, 0.15);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
}

.feature-icon-wrapper i {
  color: #fff;
  font-size: 24px;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0 0 6px 0;
}

.feature-content span {
  font-size: 14px;
  color: #2e2e2e;
  line-height: 1.6;
  display: block;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1E84B5;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.about-btn:hover::before {
  width: 300px;
  height: 300px;
}

.about-btn:hover {
  background-color: #0b4f72;
  color: #fff;
  transform: translateX(4px);
}

.about-btn i {
  transition: transform 0.3s ease;
}

/* ============================================
   RESPONSIVE: ABOUT SECTION
   ============================================ */

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
  }

  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .feature-item {
    padding: 16px;
    gap: 12px;
  }

  .feature-icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .feature-icon-wrapper i {
    font-size: 20px;
  }

  .feature-content h4 {
    font-size: 15px;
  }

  .feature-content span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .about-image-wrapper {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    border-radius: 12px;
  }

  .about-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .about-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .stat-item {
    padding: 15px 10px;
    border-radius: 10px;
  }

  .stat-number {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .stat-label {
    font-size: 10px;
  }

  .about-features {
    gap: 8px;
    margin: 0 0 8px;
  }

  .feature-item {
    padding: 12px;
    gap: 10px;
    border-radius: 10px;
  }

  .feature-item:hover {
    transform: translateX(5px);
  }

  .feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .feature-icon-wrapper i {
    font-size: 18px;
  }

  .feature-content h4 {
    font-size: 13px;
    margin: 0 0 4px 0;
  }

  .feature-content span {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-btn {
    padding: 10px 24px;
    font-size: 13px;
    gap: 8px;
  }

  .about-btn:hover::before {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-container {
    gap: 20px;
    padding: 0 15px;
  }

  .about-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 15px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 9px;
  }

  .feature-item {
    padding: 10px;
    margin-bottom: 6px;
  }

  .feature-icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .feature-icon-wrapper i {
    font-size: 16px;
  }

  .feature-content h4 {
    font-size: 12px;
  }

  .feature-content span {
    font-size: 11px;
  }

  .about-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

.about-btn:hover i {
  transform: translateX(5px);
}

.treatments-nav {
  position: relative;
}

.treatments-trigger {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatments-trigger:hover {
  color: #1E84B5;
}

.treatments-trigger:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.treatments-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  padding-top: 16px;
  left: -50px;
  width: 280px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.2);
  display: none;
  z-index: 1000;
  border-radius: 8px;
  overflow: visible;
  animation: slideDown 0.3s ease;
}

.treatments-nav:hover .treatments-dropdown {
  display: block;
}

.dropdown-content {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 0;
  padding: 0;
}

.column {
  display: flex;
  flex-direction: column;
  position: relative;
}

.treatment-item {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 700;
  font-size: 14px;
  color: #0b2b45;
  transition: all 0.3s ease;
  position: relative;
}

.treatment-item:last-child {
  border-bottom: none;
}

.treatment-item:hover {
  background-color: #f0f7fc;
  color: #1E84B5;
  padding-left: 24px;
}

.treatment-item.active {
  background-color: #1E84B5;
  color: #fff;
  font-weight: 700;
  border-bottom-color: #1E84B5;
}

.treatment-item.active .plus-icon {
  color: #fff;
}

.plus-icon {
  color: #0b2b45;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.treatment-item.active .plus-icon {
  transform: rotate(90deg);
  color: #fff;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(30, 132, 181, 0.2);
  display: none;
  flex-direction: column;
  z-index: 2000;
  padding: 0;
  /* margin-left: 10px; */
  border-radius: 8px;
}

.treatment-item:hover .submenu {
  display: flex;
}

.submenu-item {
  padding: 12px 14px;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 500;
  font-size: 13px;
  color: #4b5b6b;
  transition: all 0.3s ease;
}

.submenu-item:last-child {
  border-bottom: none;
}

.submenu-item:hover {
  background-color: #f0f7fc;
  color: #1E84B5;
  padding-left: 20px;
}

/* Treatments Section */
.treatments-section {
  /* padding: 100px 0; */
  /* background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%); */
  overflow: hidden;
}

.treatments-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #0b2b45;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.treatment-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
  height: 420px;
  max-height: 300px;
  cursor: pointer;
  overflow: hidden;
  perspective: 1000px;
}

.treatment-card:hover {
  box-shadow: 0 15px 40px rgba(30, 132, 181, 0.2);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
}

.card-front {
  background: #fff;
  z-index: 2;
}

.card-back {
  background: linear-gradient(135deg, #0d5473 0%, #1a7a9e 100%);
  transform: rotateY(180deg);
  z-index: 1;
}

.treatment-card:hover .card-front {
  transform: rotateY(180deg);
  opacity: 0;
}

.treatment-card:hover .card-back {
  transform: rotateY(0deg);
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.card-icon i {
  font-size: 36px;
  color: #1E84B5;
}

.card-front h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0 0 10px 0;
}

.card-summary {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-details-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}
/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0;
}

.intro-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
}

.intro-text strong {
  color: #0b2b45;
  font-weight: 700;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 25px 0;
  padding-left: 60px;
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #1E84B5 0%, transparent 100%);
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #1E84B5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1E84B5;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.timeline-icon:hover {
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  color: #fff;
  transform: scale(1.2);
}

.feature-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.feature-timeline-item:hover .feature-details h3 {
  color: #1E84B5;
}

.feature-details p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-timeline-item:hover .feature-details p {
  color: #333;
}

.why-choose-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 500px;
  animation: zoomIn 0.8s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.image-overlay-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, #1E84B5 0%, #5ab9e8 50%, transparent 100%);
  opacity: 0.3;
  z-index: 1;
  clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-content{
    order: 2;
  }

  .why-choose-content .arrow-icon{
    display: none;
  }

  .why-choose-image {
    height: 350px;
    order: 1;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

/* Blog Section */

/* Clinic Tour Hero Section */
.blog-tour-hero {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.blog-hero-title {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.blog-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f0f7fc 0%, #fff 100%); */
  overflow: hidden;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 132, 181, 0.2);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f0f7fc;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1E84B5;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #999;
}

.blog-date,
.blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i,
.blog-author i {
  color: #1E84B5;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #0b2b45;
  margin: 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #1E84B5;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1E84B5;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.blog-read-more:hover {
  color: #0b4f72;
  gap: 12px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-container {
    padding: 0 20px;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-image-wrapper {
    height: 200px;
  }
}

/* Testimonials Section */
.testimonials-section {
  /* padding: 100px 0; */
  /* background: linear-gradient(135deg, #f0f7fc 0%, #fff 100%); */
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-section .section-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #0b2b45;
  margin-bottom: 10px;
}

.testimonials-section .section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-slider {
  display: flex;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  position: absolute;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  /* min-height: 400px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 10;
}

@media (min-width: 1025px) {
  .testimonials-slider-wrapper {
    max-width: 1200px;
    padding: 0 60px;
  }

  .testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
  }

  .testimonial-card {
    position: relative;
    flex: 0 0 calc(50% - 12px);
    width: auto;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
  }

  .testimonial-card.active,
  .testimonial-card.next {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.testimonial-card.prev {
  transform: translateX(-100px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 132, 181, 0.2);
}

.testimonial-card.active:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 132, 181, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E84B5 0%, #0b4f72 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Navigation Buttons */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1E84B5;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 132, 181, 0.3);
}

.testimonial-nav:hover {
  background: #0b4f72;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 132, 181, 0.4);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 15;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #1E84B5;
  width: 36px;
  border-radius: 6px;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.rating i {
  font-size: 16px;
  color: #ffc107;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 4px solid #1E84B5;
  padding-left: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0;
}

.author-info p {
  font-size: 12px;
  color: #999;
  margin: 3px 0 0 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
    min-height: auto;
  }

  .testimonials-section .section-header h2 {
    font-size: 32px;
  }

  .testimonials-slider-wrapper {
    padding: 0 20px;
  }

  .testimonial-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 15px;
  }

  .testimonials-section .section-header h2 {
    font-size: 24px;
  }

  .testimonials-section .section-header p {
    font-size: 14px;
  }

  .testimonials-slider-wrapper {
    padding: 0 15px;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .author-info h4 {
    font-size: 14px;
  }

  .author-info p {
    font-size: 11px;
  }
}

/* Footer Section */
.footer {
  background: linear-gradient(135deg, #0b4f72 0%, #052d47 100%);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Footer Column */
.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Clinic Info */
.footer-info {
  grid-column: span 1;
}

.footer-logo {
  margin-bottom: 30px;
}

.clinic-rating {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.clinic-rating .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.clinic-rating .stars i {
  font-size: 20px;
  color: #ffc107;
}

.clinic-rating h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin: 8px 0;
}

.clinic-rating p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.clinic-rating .highlight {
  color: #1E84B5;
  font-weight: 700;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-item i {
  color: #fff;
  /* font-weight: 500; */
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item i:hover {
  color: #1E84B5;

}

.detail-item a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: #1E84B5;
}

.detail-item p {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Footer Title */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1E84B5;
  display: inline-block;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links li a:hover {
  color: #1E84B5;
  padding-left: 8px;
}

/* Latest Blogs */
.footer-blogs {
  grid-column: span 1;
}

.blog-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateX(5px);
}

.blog-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1E84B5;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  flex-grow: 1;
}

.blog-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.blog-link {
  color: #ff9800;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #ffc107;
}

/* Footer Bottom */
.footer-bottom {
  background: #0a3d5a;
  padding: 25px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  max-width: 1400px;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.developer-link {
  color: #1E84B5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-info {
    grid-column: span 2;
  }

  .footer-blogs {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-info {
    grid-column: span 1;
  }

  .footer-blogs {
    grid-column: span 1;
  }

  .footer-bottom {
    padding: 25px 20px;
  }

  .clinic-rating {
    padding: 15px;
  }

  .clinic-rating .stars i {
    font-size: 16px;
  }

  .clinic-rating h3 {
    font-size: 16px;
  }

  .footer-title {
    font-size: 16px;
  }
}

/* ===== CLINIC TOUR PAGE ===== */

/* Clinic Tour Hero Section */
.clinic-tour-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.clinic-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.clinic-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.clinic-hero-title {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.clinic-hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Clinic Info Section */
.clinic-info-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.clinic-info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.info-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  animation: fadeInUp 0.6s ease forwards;
}

.info-highlight i {
  font-size: 32px;
  color: #1E84B5;
  margin-top: 5px;
  flex-shrink: 0;
}

.info-highlight h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin-bottom: 8px;
}

.info-highlight p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.info-highlight a {
  color: #1E84B5;
  text-decoration: none;
  font-weight: 600;
}

/* Clinic Departments Section */
.clinic-departments {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7fc 0%, #fff 100%);
}

.departments-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.department-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.department-card:nth-child(1) { animation-delay: 0.1s; }
.department-card:nth-child(2) { animation-delay: 0.2s; }
.department-card:nth-child(3) { animation-delay: 0.3s; }
.department-card:nth-child(4) { animation-delay: 0.4s; }
.department-card:nth-child(5) { animation-delay: 0.5s; }
.department-card:nth-child(6) { animation-delay: 0.6s; }

.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 132, 181, 0.2);
}

.department-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
}

.department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.department-card:hover .department-image img {
  transform: scale(1.08);
}

.department-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 79, 114, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.department-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.department-content {
  padding: 25px;
}

.department-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin-bottom: 12px;
}

.department-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list i {
  color: #1E84B5;
  font-size: 14px;
}

/* Clinic Gallery Section */
.clinic-gallery {
  padding: 80px 0;
  background: #fff;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 79, 114, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Clinic Team Section */
.clinic-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7fc 0%, #fff 100%);
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 132, 181, 0.2);
}

.team-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 79, 114, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.team-social a {
  width: 50px;
  height: 50px;
  background: #1E84B5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #fff;
  color: #1E84B5;
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin-bottom: 5px;
}

.team-role {
  font-size: 13px;
  color: #1E84B5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.clinic-cta {
  padding: 80px 40px;
  /* background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%); */
  background: url(../images/hero-section/cta-banner.png) no-repeat center center/cover;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  animation: fadeInUp 0.8s ease forwards;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #1E84B5;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #f0f7fc;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive Clinic Tour */
@media (max-width: 1024px) {
  .clinic-hero-title {
    font-size: 36px;
  }

  .clinic-hero-subtitle {
    font-size: 16px;
  }

  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clinic-tour-hero {
    height: 300px;
  }

  .clinic-hero-title {
    font-size: 28px;
  }

  .clinic-hero-subtitle {
    font-size: 14px;
  }

  .clinic-info-container {
    padding: 0 20px;
    gap: 30px;
  }

  .clinic-info-container {
    grid-template-columns: 1fr;
  }

  .departments-container {
    padding: 0 20px;
  }

  .departments-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .team-container {
    padding: 0 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .clinic-departments,
  .clinic-gallery,
  .clinic-team,
  .clinic-cta {
    padding: 60px 0;
  }
}

/* ===== CONTACT PAGE ===== */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 350px;
  /* background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%); */
  background: url(../images/hero-section/bg-contact.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Contact Info Column */
.contact-info-column {
  animation: fadeInUp 0.6s ease forwards;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0b2b45;
  margin-bottom: 10px;
}

.info-header p {
  font-size: 15px;
  color: #666;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fb;
  border-radius: 12px;
  border-left: 4px solid #1E84B5;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #f0f7fc;
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(30, 132, 181, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0 0 8px 0;
}

.info-content p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.info-content a {
  color: #1E84B5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #0b4f72;
}

/* Social Connect */
.social-connect {
  margin-top: 20px;
}

.social-connect h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: #fff;
  color: #1E84B5;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(30, 132, 181, 0.3);
}

/* Contact Form Column */
.contact-form-column {
  animation: fadeInUp 0.8s ease forwards;
}

.contact-form-box {
  background: linear-gradient(135deg, #f0f7fc 0%, #fff 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0b2b45;
  margin-bottom: 10px;
}

.contact-form-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0b2b45;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1E84B5;
  box-shadow: 0 0 0 3px rgba(30, 132, 181, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 13px;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 132, 181, 0.4);
  background: linear-gradient(135deg, #0b4f72 0%, #052d47 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Map Section */
.contact-map-section {
  padding: 80px 40px;
  background: #f8f9fb;
}

.map-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.map-wrapper h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0b2b45;
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* FAQ Section */
.contact-faq {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.faq-item {
  background: #f8f9fb;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-question {
  padding: 20px;
  background: #f0f7fc;
  border-left: 4px solid #1E84B5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  background: #e8f3fa;
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0;
  flex-grow: 1;
}

.faq-question i {
  color: #1E84B5;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 36px;
  }

  .contact-container {
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .info-header h2 {
    font-size: 24px;
  }

  .contact-form-box h2 {
    font-size: 24px;
  }

  .contact-section,
  .contact-faq {
    padding: 60px 0;
  }

  .contact-map-section {
    padding: 60px 20px;
  }

  .map-wrapper h2 {
    font-size: 24px;
  }

  .map-container {
    height: 350px;
  }

  .map-container iframe {
    height: 100% !important;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DR. RAJESH PAGE STYLES
   ============================================ */

.dr-hero-section {
  background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fc 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.dr-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.shape-circle-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(30, 132, 181, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.shape-circle-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(11, 79, 114, 0.08);
  border-radius: 50%;
  bottom: 50px;
  left: -50px;
}

.shape-circle-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(30, 132, 181, 0.03);
  border-radius: 50%;
  top: 50%;
  right: 100px;
}

.dr-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dr-hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.dr-subtitle-box {
  display: inline-block;
  background: rgba(30, 132, 181, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
}

.dr-subtitle {
  color: #1E84B5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dr-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #0b2b45;
  line-height: 1.3;
  margin-bottom: 20px;
}

.dr-hero-title .highlight-blue {
  color: #1E84B5;
}

.dr-hero-description {
  font-size: 16px;
  color: #4a5f7f;
  line-height: 1.8;
  margin-bottom: 30px;
}

.dr-hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dr-btn-primary,
.dr-btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dr-btn-primary {
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  color: white;
}

.dr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 132, 181, 0.3);
  background: linear-gradient(135deg, #0b4f72 0%, #0b2b45 100%);
  color: white;
}

.dr-btn-secondary {
  background: transparent;
  color: #1E84B5;
  border: 2px solid #1E84B5;
}

.dr-btn-secondary:hover {
  background: #1E84B5;
  color: white;
  transform: translateY(-2px);
}

.dr-rating-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-stars {
  display: flex;
  gap: 5px;
  font-size: 18px;
}

.rating-stars i {
  color: #ffc107;
}

.rating-text {
  font-size: 14px;
  color: #0b4f72;
  font-weight: 500;
  margin: 0;
}

.stars-text {
  color: #1E84B5;
  font-weight: 700;
}

/* Appointment Card */
.dr-appointment-card {
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(30, 132, 181, 0.2);
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.appointment-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-input-group i {
  position: absolute;
  left: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.form-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-input option{
  color:#000;
}

.appointment-submit-btn {
  padding: 14px 32px;
  background: white;
  color: #1E84B5;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.appointment-submit-btn:hover {
  background: #f0f7fc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.decoration-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.decoration-dots .dot-1,
.decoration-dots .dot-2,
.decoration-dots .dot-3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* Dr. About Section */
.dr-about-section {
  padding: 80px 40px;
  background: #ffffff;
}

.dr-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dr-about-image {
  position: relative;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.dr-about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(30, 132, 181, 0.15);
}

.dr-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.3);
}

.dr-badge i {
  font-size: 20px;
}

.dr-about-content {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.dr-about-content h2 {
  font-size: 36px;
  color: #0b2b45;
  font-weight: 700;
  margin-bottom: 10px;
}

.dr-intro {
  color: #1E84B5;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.dr-bio {
  color: #4a5f7f;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.dr-specialties,
.dr-qualifications {
  margin-bottom: 30px;
}

.dr-specialties h3,
.dr-qualifications h3 {
  color: #0b2b45;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f0f7fc;
  border-radius: 8px;
  color: #0b4f72;
  font-weight: 500;
  transition: all 0.3s ease;
}

.specialty-item:hover {
  background: #1E84B5;
  color: white;
}

.specialty-item i {
  color: #1E84B5;
  font-size: 18px;
}

.specialty-item:hover i {
  color: white;
}

.qualifications-list {
  list-style: none;
  padding: 0;
}

.qualifications-list li {
  padding: 12px 0;
  color: #4a5f7f;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qualifications-list li i {
  color: #1E84B5;
  font-weight: 700;
}

.dr-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1E84B5;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.dr-read-more:hover {
  gap: 15px;
  color: #0b4f72;
}

/* Dr. Achievements Section */
.dr-achievements {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fc 100%);
}

.dr-achievements-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #0b2b45;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header p {
  color: #4a5f7f;
  font-size: 16px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.achievement-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
}

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 132, 181, 0.2);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.achievement-card h3 {
  font-size: 20px;
  color: #0b2b45;
  font-weight: 700;
  margin-bottom: 15px;
}

.achievement-card p {
  color: #4a5f7f;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.dr-cta-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1E84B5 0%, #0b4f72 100%);
  text-align: center;
}

.dr-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.dr-cta-container h2 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.dr-cta-container p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn-primary {
  background: white;
  color: #1E84B5;
}

.cta-btn-primary:hover {
  background: #f0f7fc;
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn-secondary:hover {
  background: white;
  color: #1E84B5;
  transform: translateY(-2px);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dr-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dr-hero-title {
    font-size: 36px;
  }

  .dr-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dr-hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .dr-hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dr-hero-title {
    font-size: 28px;
  }

  .dr-hero-description {
    font-size: 14px;
  }

  .dr-btn-primary,
  .dr-btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .dr-hero-buttons {
    flex-direction: column;
  }

  .dr-appointment-card {
    padding: 30px 20px;
  }

  .appointment-title {
    font-size: 22px;
  }

  .form-input-row {
    grid-template-columns: 1fr;
  }

  .dr-about-section {
    padding: 60px 20px;
  }

  .dr-about-content h2 {
    font-size: 28px;
  }

  .dr-achievements {
    padding: 60px 20px;
  }

  .dr-cta-section {
    padding: 60px 20px;
  }

  .dr-cta-container h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE: HAMBURGER MENU FOR MOBILE/TABLET
   ============================================ */

@media (max-width: 1024px) {
  .hamburger-menu {
    display: flex;
  }

  .navbar {
    flex: none !important;
    display: none;
  }

  .appointment-btn {
    flex: none !important;
    padding-right: 20px;
  }

  .header .logo {
    flex: 1;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    margin-right: 10px;
  }

  .navbar {
    display: none;
  }

  .appointment-btn {
    display: none;
  }

  .mobile-menu {
    max-width: 100%;
  }

  .header {
    gap: 10px;
  }

  .header .logo img {
    height: 60px;
  }

  .top-strip {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }

  .top-strip .contact-details {
    gap: 15px;
    flex-wrap: wrap;
  }
}

/* ============================================
   RESPONSIVE: INFO-STRIP SECTION
   ============================================ */

@media (max-width: 1024px) {
  .info-container {
    gap: 30px;
    padding: 0 30px;
  }

  .info-content h3 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 14px;
  }

  .appointment-button {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .info-strip {
    padding: 30px 0;
    margin-top: -10px;
  }

  .info-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .info-item {
    gap: 15px;
    justify-content: center;
    text-align: center;
  }

  .info-item:last-child {
    justify-content: center;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 20px;
  }

  .info-content h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .info-content p {
    font-size: 12px;
  }

  .appointment-button {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

.children-approach{
  padding: 40px 40px;
  /* background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fc 100%); */
}
.childrens-description {
  font-size: 16px;
  color: #4a5f7f;
  line-height: 1.8;
  /* margin-bottom: 30px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.childrens-description p{
  max-width: 800px;
}

.childrens-cards-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 4fr));
  gap: 30px;
  padding: 20px 80px;
}

@media (max-width: 768px) {
  .children-approach{
    padding: 20px;
  }
  .childrens-cards-container {
    padding: 20px;
  }

}

.children-card{
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.1);
  transition: all 0.3s ease;
}

.children-card-img img{
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.child-card-title{
  font-size: 20px;
  color: #0b2b45;
  font-weight: 700;
  margin-bottom: 15px;
}
.children-card-desc {
  color: #4a5f7f;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

* Blog cards styling */
.blog-list{padding-top:16px;padding-bottom:24px}
.blog-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(10,20,30,0.06);display:flex;flex-direction:column;height:100%}
.blog-card .blog-card-media{width:100%;aspect-ratio:16/9;overflow:hidden;background:#f2f4f6}
.blog-card .blog-card-media img{width:100%;height:100%;object-fit:cover;display:block}
.blog-card .blog-card-body{padding:18px 16px;border-top:1px solid rgba(10,10,10,0.02);margin-top:auto}
.blog-card-title{font-size:16px;font-weight:600;color:#0b2a33;margin:0 0 10px;line-height:1.3}
.blog-card-meta{font-size:14px;color:#6b6b6b;margin:0}

@media (max-width:992px){
  .blog-card-title{font-size:16px}
}


/* Blog cards styling */
.blog-list{padding-top:16px;padding-bottom:24px}
.blog-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(10,20,30,0.06);display:flex;flex-direction:column;height:100%}
.blog-card .blog-card-media{width:100%;aspect-ratio:16/9;overflow:hidden;background:#f2f4f6}
.blog-card .blog-card-media img{width:100%;height:100%;object-fit:cover;display:block}
.blog-card .blog-card-body{padding:18px 16px;border-top:1px solid rgba(10,10,10,0.02);margin-top:auto}
.blog-card-title{font-size:18px;font-weight:600;color:#0b2a33;margin:0 0 10px;line-height:1.3}
.blog-card-meta{font-size:13px;color:#6b6b6b;margin:0}

@media (max-width:992px){
  .blog-card-title{font-size:16px}
}


/* ===== Base Styles ===== */
.media-section {
  width: 100%;
  background: url("../images/hero-section/bg.jpg");
  background-position: center;
  background-size: cover;
  /* aspect-ratio: 16 / 9; */
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.media-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.media-grid {
  display: flex;
  justify-content: center;
}

.media-video {
  width: 70%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Small Devices (Mobile <576px) ===== */
@media (max-width: 575px) {
  .media-section {
    padding: 20px 15px;
  }

  .media-video {
    border-radius: 8px;
  }
}

/* ===== Tablets (576px - 768px) ===== */
@media (min-width: 576px) and (max-width: 768px) {
  .media-section {
    padding: 30px 20px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Small Laptops (769px - 992px) ===== */
@media (min-width: 769px) and (max-width: 992px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Desktop (993px - 1200px) ===== */
@media (min-width: 993px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Large Screens (1200px+) ===== */
@media (min-width: 1200px) {
  .media-wrapper {
    max-width: 1400px;
  }
}
