/* Hero Section */
.hero-section {
  position: relative;
  height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content .btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Dual News Hub */
.dual-ticker-container {
  background: var(--primary);
  border-bottom: 2px solid var(--secondary);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.dual-ticker-row {
  display: flex;
  flex-wrap: wrap;
}

.ticker-half {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

.ticker-label {
  background: var(--secondary);
  color: var(--primary);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 15px;
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.ticker-label.label-right {
  margin-right: 0;
  margin-left: 15px;
  border-radius: 50px 0 0 50px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.ticker-window {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: dualTickerMove 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-text {
  padding: 0 30px;
  font-size: 0.9rem;
  color: #eee;
  font-weight: 500;
}

.ticker-text::after {
  content: "|";
  margin-left: 60px;
  opacity: 0.3;
}

@keyframes dualTickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .hero-section {
    height: 90vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-content h2 {
    font-size: 1.75rem;
  }

  .hero-content h3 {
    font-size: 1.5rem;
  }

  .hero-content h4 {
    font-size: 1.25rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content .btn-lg {
    padding: 10px 20px !important;
    font-size: 0.85rem;
  }

  /* Section Headings Mobile */
  .intro-section {
    text-align: center;
    padding: 50px 0;
  }

  .intro-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .intro-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .intro-desc {
    text-align: center;
    font-size: 0.9rem;
  }

  .intro-badge {
    display: block;
    margin: 0 auto 20px;
    width: fit-content;
    text-align: center;
  }

  .contact-info-box {
    justify-content: center;
    margin: 0 auto 20px;
    text-align: left; /* Keep internal text left for better readability but box is centered */
  }

  .btn-whatsapp {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
  }

  .intro-img-frame {
    margin-top: 50px;
    display: block;
    text-align: center;
  }

  .experience-badge {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .section-title {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .appointment-features {
    text-align: center !important;
    margin-bottom: 40px;
    padding-right: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .appointment-features h2,
  .appointment-features p,
  .appointment-features span {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
  }

  .appointment-features .btn-submit-fancy {
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    width: 100%;
  }

  .feature-item-small {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 25px 15px;
    width: 100%;
  }

  .feature-item-small i {
    margin: 0 auto 10px auto;
  }

  /* Appointment Form Mobile */
  .appointment-form-wrapper {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .form-header-fancy {
    text-align: center;
    margin-bottom: 25px;
  }

  .form-phone-icon {
    margin: 15px auto 0;
  }

  .btn-submit-fancy {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Fancy Stats Mobile */
  .stat-card-fancy {
    padding: 30px 20px;
    margin-bottom: 15px;
  }

  .stat-icon-pod {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  /* Vision & History Mobile */
  .vision-section {
    text-align: center !important;
    padding: 50px 0;
  }

  .vision-img-wrapper {
    margin-bottom: 40px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    text-align: center;
    padding-right: 0 !important; /* Remove desktop padding */
  }

  .vision-img-frame {
    margin: 0 auto !important;
    display: block;
    max-width: 90%;
  }

  .vision-content {
    text-align: center !important;
    padding: 0 10px !important; /* Force padding to be even */
    width: 100%;
    padding-left: 0 !important;
  }

  .vision-quote {
    border-left: none;
    border-top: 3px solid var(--secondary);
    padding: 20px 0 0 0;
    margin: 20px auto 0 auto;
    text-align: center;
  }

  .authentic-notice-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
    margin: 30px auto;
    width: 100%;
  }

  .notice-close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  /* Updates Hub Mobile */
  .update-card {
    margin-bottom: 25px;
    padding: 25px 15px;
  }

  .btn-view-all {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Courses Section Mobile */
  .course-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .course-header h2 {
    font-size: 1.8rem;
  }

  .course-card {
    padding: 30px 20px;
    text-align: center;
  }

  .course-card h3 {
    font-size: 2rem;
  }

  .course-btn-float {
    position: relative;
    bottom: 0;
    right: 0;
    display: inline-block;
    margin-top: 15px;
  }

  /* Reviews Section Mobile */
  .testimonials-section {
    text-align: center;
    padding: 50px 0;
  }

  .testimonial-badge {
    display: table;
    margin: 0 auto 15px;
  }

  .google-review-card {
    padding: 20px 20px 25px 20px !important;
    margin-bottom: 20px;
    text-align: center;
    min-height: 330px !important;
    height: auto !important;
  }

  .review-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .review-user-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-user-details {
    text-align: center;
  }

  .review-rating-wrap {
    justify-content: center;
  }

  .carousel-arrow {
    display: none;
  }

  .review-carousel-wrapper {
    padding: 0 10px;
  }

  /* Blog Section Mobile */
  .blog-section {
    padding: 60px 0;
  }

  .blog-card-fancy {
    margin-bottom: 30px;
    text-align: center;
  }

  .blog-btn-more {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px !important;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 10px;
  }

  .blog-meta {
    justify-content: center;
  }

  /* Facilities Section Mobile */
  .facilities-section {
    text-align: center;
    padding: 60px 0;
  }

  .facilities-tag {
    display: table;
    margin: 0 auto 15px;
  }

  .facilities-title {
    font-size: 1.8rem;
  }

  .facilities-desc {
    max-width: 100%;
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .facility-list-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    width: 100%;
  }

  .facility-item-fancy {
    padding: 15px;
    width: 100%;
    transform: none !important; /* Disable sliding on mobile */
  }

  .facility-item-fancy:hover {
    transform: none !important;
  }

  .btn-whatsapp-hospital {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    width: fit-content;
    padding: 15px 30px !important;
  }

  .doctor-img-wrapper {
    margin-top: 50px;
    display: block;
    text-align: center;
    position: relative;
  }

  .doctor-info-card {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -25px !important;
    width: 90% !important;
    max-width: 380px !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .doctor-info-card h4 {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .doctor-info-card p {
    font-size: 0.75rem !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .appointment-features h2 {
    font-size: 1.8rem;
  }

  /* Force Centering Overrides for Vision & Appointment */
  .vision-section .text-start,
  .appointment-section .text-start,
  .vision-section h2,
  .appointment-section h2,
  .vision-section p,
  .appointment-section p {
    text-align: center !important;
  }

  .vision-quote p {
    text-align: center !important;
  }

  .ticker-half {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ticker-divider {
    display: none;
  }

  .ticker-label {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .ticker-text {
    font-size: 0.8rem;
  }
}

/* Introduction Section */
.intro-section {
  padding: 100px 0;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    url("../images/Homepage-images/intro section background image.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.intro-content-glass {
  background: rgba(255, 255, 255, 0.35); /* More transparent */
  backdrop-filter: blur(20px); /* Stronger blur */
  -webkit-backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.intro-badge {
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.intro-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.intro-subtitle {
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 15px;
}

.intro-desc {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(248, 249, 250, 0.8);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.phone-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-info-text span {
  font-size: 0.85rem;
  color: #666;
  display: block;
}

.contact-info-text h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.intro-img-frame {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.intro-img {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: none;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: translateX(-35%);
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 2px solid var(--secondary);
  padding: 0;
}

.badge-text-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotateBadge 20s linear infinite;
}

.badge-text-ring svg {
  width: 100%;
  height: 100%;
}

.badge-icon-center {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Premium Stats Section */
.stats-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.stat-card-fancy {
  background: #fff;
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card-fancy:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}

.stat-icon-pod {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  transition: all 0.5s ease;
}

.stat-icon-pod::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--secondary);
  border-radius: 50%;
  animation: rotateDotted 10s linear infinite;
}

@keyframes rotateDotted {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-card-fancy:hover .stat-icon-pod {
  transform: scale(1.1);
  color: var(--secondary);
}

.stat-card-fancy:hover .stat-icon-pod::before {
  border-color: var(--primary);
  border-style: solid;
  border-width: 1px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Updates Section */
.updates-section {
  padding: 100px 0;
}

.update-scroll-wrap {
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
}

.update-scroll-wrap marquee {
  height: 100%;
}

.update-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.update-badge {
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 0.8rem;
}

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

.update-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.update-item i {
  color: var(--secondary);
}

.update-link {
  color: #444;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-view-all {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  margin-top: 15px;
}

.btn-view-all:hover {
  background: transparent;
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

/* Ultra-Fancy Courses Section */
.courses-section {
  padding: 120px 0;
  background: #0a192f;
  position: relative;
  overflow: hidden;
}

.course-header {
  text-align: center;
  margin-bottom: 80px;
}

.course-header h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
}

.highlight-text {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.scribble-wrap {
  position: relative;
  display: inline-block;
}

.scribble-wrap::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.course-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.course-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.course-seats {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.course-btn-float {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.4);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.course-card:hover .course-btn-float {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Fancy Hospital Facilities Section */
.facilities-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.facilities-tag {
  color: #8e44ad;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.facilities-title {
  color: #f39c12;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.1;
}

.facilities-desc {
  color: #2e7d32;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.facility-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.facility-item-fancy {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(44, 62, 80, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.facility-item-fancy:hover {
  background: #fff;
  border-color: #4facfe;
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.facility-icon-wrap {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.facility-name {
  font-weight: 700;
  color: #444;
  font-size: 1.05rem;
}

.btn-whatsapp-hospital {
  background: #25d366;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-hospital:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* Doctor Image Styling */
.doctor-img-wrapper {
  position: relative;
  padding: 30px;
}

.doctor-img-frame {
  position: relative;
  z-index: 1;
}

.doctor-img-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #f39c12;
  border-radius: 20px;
  z-index: -1;
}

.doctor-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.doctor-info-card {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.doctor-info-card h4 {
  margin: 0;
  font-weight: 800;
}
.doctor-info-card p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 600;
}

/* Legacy & Vision Section - Fancy Redesign */
.vision-section-fancy {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vision-section-fancy .container {
  position: relative;
  z-index: 1;
}

/* Image Showcase */
.vision-image-showcase {
  position: relative;
  padding: 20px 30px 40px 20px;
}

.main-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.main-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.vision-main-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vision-image-showcase:hover .vision-main-img {
  transform: scale(1.05);
}

.glass-overlay-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float-up-down 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.icon-box-primary {
  width: 50px;
  height: 50px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 12px;
}

/* Content Area */
.vision-content-fancy {
  padding-left: 20px;
}

.vision-subtitle-badge {
  display: inline-block;
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.vision-heading {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #1a202c;
}

.vision-quote-fancy {
  position: relative;
  background: #fff;
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  border-left: 5px solid var(--primary);
}

.quote-icon-large {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3.5rem;
  color: var(--secondary);
  background: #fff;
  border-radius: 50%;
  line-height: 1;
  padding: 0 10px;
}

.vision-quote-fancy p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  font-style: italic;
}

.vision-quote-fancy p:last-child {
  margin-bottom: 0;
}

.vision-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.v-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2d3748;
}

.v-point i {
  font-size: 1.2rem;
}

.auth-box-elegant {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(to right, rgba(46, 125, 50, 0.05), transparent);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
}

.auth-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.auth-text h5 {
  color: var(--primary);
  font-weight: 800;
}

/* Appointment Section */
.appointment-section {
  padding: 120px 0;
  background: #f4f7f6;
  position: relative;
  overflow: hidden;
}

.appointment-features {
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.appointment-features h2 {
  color: var(--primary);
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.feature-item-small {
  background: #fff;
  padding: 15px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.feature-item-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-item-small i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.feature-item-small span {
  font-weight: 700;
  color: #444;
  font-size: 0.9rem;
}

.appointment-form-wrapper {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-header-fancy {
  background: var(--primary);
  color: #fff;
  padding: 40px;
  text-align: center;
}

.form-header-fancy h3 {
  font-weight: 800;
  margin: 0;
  font-size: 1.8rem;
}

.appointment-form-body {
  padding: 40px;
}

.form-control-fancy {
  width: 100%;
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #f9f9f9;
  margin-bottom: 20px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-fancy:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
  outline: none;
}

.btn-submit-fancy {
  width: 100%;
  background: var(--secondary);
  color: var(--primary);
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit-fancy:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Authentic & Fancy Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background-color: #fdfbf7;
  background-image: radial-gradient(
    rgba(46, 125, 50, 0.05) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(253, 251, 247, 0) 0%,
    rgba(253, 251, 247, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-badge {
  display: inline-block;
  background: rgba(243, 156, 18, 0.1);
  color: var(--secondary);
  padding: 6px 25px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border: 1px solid rgba(243, 156, 18, 0.2);
}

.review-carousel-wrapper {
  position: relative;
  z-index: 1;
}
.review-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items: flex-start;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0 20px 0;
}
.review-carousel::-webkit-scrollbar {
  display: none;
}

.google-review-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px 25px;
  height: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.google-review-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

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

.review-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-user-details h6 {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

.review-user-details span {
  font-size: 0.8rem;
  color: #999;
}

.google-logo-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.google-review-card:hover .google-logo-icon {
  transform: rotate(360deg);
}

.review-rating-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-stars {
  color: #fbbc05;
  font-size: 1rem;
}

.verified-badge {
  color: #4285f4;
  font-size: 1.1rem;
}

.review-text-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  position: relative;
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text-content::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 3rem;
  color: rgba(46, 125, 50, 0.05);
  font-family: serif;
}

/* Custom Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #fff;
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: -70px;
}
.arrow-right {
  right: -70px;
}

@media (max-width: 1300px) {
  .arrow-left {
    left: -10px;
  }
  .arrow-right {
    right: -10px;
  }
}

/* Premium Blog Section */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.blog-card-fancy {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card-fancy:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.blog-card-fancy:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.blog-date-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
  z-index: 2;
}

.blog-date-badge .day {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.blog-date-badge .month-year {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-content-fancy {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #888;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--secondary);
}

.blog-content-fancy h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-btn-more {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-btn-more:hover {
  gap: 15px;
  color: var(--primary);
}

.review-btn-view-all {
  border-width: 2px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.review-btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15) !important;
}

/* Map Card Styling (Used in contact page and appointment section) */
.map-card-premium {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(46, 125, 50, 0.08);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.05);
  padding: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.map-card-premium iframe {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  border: none;
}
