.carousel-nav-buttons {
  /* Aligns arrows to the right side of the section */
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  /* Space above arrows */
}

.arrow-button {
  /* Basic styling for the button */
  background-color: #007bff;
  /* Example: use your theme color */
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
}

.arrow-button:hover {
  background-color: #0056b3;
}

.carousel-nav-buttons {
  display: flex;
  justify-content: center;
  /* Aligns arrows to the left, like the image */
  margin-top: -10px;
  margin-left: 15px;
  /* Adjust as needed for alignment */
  margin-bottom: 30px;
}

.arrow-button {
  /* Basic styling for the button */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #7A50A2;
  /* Use your border color */
  color: #7A50A2;
  /* Use your text color */
  padding: 0;
  margin-right: 15px;
  /* Space between buttons */
  cursor: pointer;
  border-radius: 5px;
  /* Matches the rectangular shape in the image */
  font-size: 20px;
  transition: all 0.3s;
}

.arrow-button:hover {
  background-color: #7A50A2;
  color: white;
}

/* Optional: Cleanup the container margins */
.service-block {
  padding: 0 15px;
  /* To prevent items from touching due to margin:30 in JS */
}



/* Basic Reset and Container Setup */
.miracle-section {
  display: flex;
  flex-wrap: wrap;
  /* Allows columns to stack on smaller screens */
  width: 100%;
  max-width: 1200px;
  /* Example max width */
  margin: 0 auto;
  min-height: 400px;
  /* Ensure a minimum height */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* --- Left Panel Styling --- */
.left-panel {
  flex: 1 1 350px;
  /* Allows the panel to grow/shrink, with a base width of 350px */
  background-color: #2e303f;
  /* Dark background color */
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header/Title Styling */
.left-panel .header {
  margin-bottom: 20px;
}

.left-panel .icon-text {
  font-size: 1.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.left-panel .icon {
  font-size: 1.8em;
  color: #00bcd4;
  /* Light blue color for the icon */
  margin-right: 10px;
  line-height: 0;
}

/* List/Button Styling */
.left-panel .content-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.left-panel .content-item {
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 1em;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.left-panel .content-item.blue {
  background-color: #007bff;
  /* Primary blue for the first button */
}

.left-panel .content-item.green {
  background-color: #4dc2a3;
  /* Teal/Green for the second button */
}

.left-panel .content-item:hover {
  filter: brightness(1.1);
}

.left-panel .content-item .arrow {
  font-size: 1.5em;
  font-weight: bold;
}

/* View All Button Styling */
.view-all-button {
  background-color: white;
  color: #2e303f;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  /* Aligns button to the left */
  margin-top: 15px;
  transition: background-color 0.3s;
}

.view-all-button:hover {
  background-color: #f0f0f0;
}


/* --- Right Video Panel Styling --- */
.right-video-container {
  flex: 2 1 65%;
  /* Takes up the remaining space, minimum 65% width */
  position: relative;
  background-color: #333;
  /* Dark background for the video container */
}

/* Responsive video wrapper (16:9 aspect ratio) */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio (9 / 16 * 100) */
  height: 0;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  /* Fallback for when content dictates height */
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Chatbot Icon Styling */
.chatbot-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #00bcd4;
  /* Light blue */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  z-index: 10;
  /* Ensure it's above the video */
}

/* --- Media Query for Mobile Responsiveness --- */
@media (max-width: 768px) {
  .miracle-section {
    flex-direction: column;
    /* Stack the columns vertically */
  }

  .left-panel {
    padding-bottom: 20px;
  }

  /* Ensure the video takes full width when stacked */
  .right-video-container {
    flex-basis: auto;
  }

  .video-responsive {
    /* Set a fixed height on smaller screens if desired, or rely on padding-bottom */
    min-height: 300px;
  }
}

/* General Styling for the Container (no direct body/html targets) */
.interactive-section {
  position: relative;
  padding: 20px;
  background-color: #f8f8f8;
  /* Light background for the overall section */
}

/* --- Main Layout Container --- */
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  /* Allows stacking on small screens */
  width: 100%;
  max-width: 1000px;
  min-height: 450px;
  margin: 40px auto;
  background-color: white;
  /* White background for the main card container */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* --- Left Video Column (60% width) --- */
.left-video-column {
  flex: 2 1 60%;
  position: relative;
  overflow: hidden;
}

/* --- Video Wrapper for 16:9 Aspect Ratio --- */
.video-wrapper {
  position: relative;
  /* This creates the 16:9 aspect ratio */
  padding-bottom: 56.25%;
  /* (9 / 16) * 100 */
  height: 0;
  overflow: hidden;
}

.video-wrapper .embedded-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Ensure the iframe allows interaction (no pointer-events: none) */
}


/* --- Right Content Column (40% width) --- */
.right-content-column {
  flex: 1 1 40%;
  background-color: white;
  color: #333;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.column-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.column-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.column-cta-text {
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 25px;
}

/* --- CTA Button Styling --- */
.cta-button-small {
  background-color: #e9007c;
  /* Bright Pink */
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.cta-button-small:hover {
  background-color: #ff33a3;
}

/* --- Floating Buttons --- */

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  /* WhatsApp Green */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll-Up Button */
.scroll-up-button {
  position: fixed;
  bottom: 80px;
  /* Positioned above the WhatsApp button */
  right: 20px;
  background-color: #f0f0f0;
  /* Light gray */
  color: #666;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    /* Stack vertically */
    height: auto;
    margin: 20px auto;
  }

  .right-content-column {
    padding: 20px;
  }

  .cta-button-small {
    align-self: center;
    /* Center button when stacked */
  }
}

/* --- Professional Video Grid (Hospital Style) --- */
.punya-video-grid-professional {
  padding: 80px 0;
  background-color: #f9fbfe;
}

.punya-video-grid-professional .sec-title h6 {
  color: #7b51a1;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.punya-video-grid-professional .sec-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #142441;
}

.punya-video-grid-professional .sec-title h2 span {
  color: #5d9939;
}

.punya-video-grid-professional .video-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.professional-video-card {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .punya-video-grid-professional .auto-container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .professional-video-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .professional-video-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.professional-video-card .inner-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.professional-video-card .inner-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 81, 161, 0.1);
  border-color: #7b51a1;
}

.professional-video-card .image-box {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.professional-video-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  opacity: 0.9;
}

.professional-video-card .inner-box:hover .image-box img {
  transform: scale(1.05);
  opacity: 1;
}

.professional-video-card .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #5d9939;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 153, 57, 0.4);
}

.professional-video-card .inner-box:hover .play-overlay {
  background: #7b51a1;
  box-shadow: 0 10px 20px rgba(123, 81, 161, 0.4);
}

.professional-video-card .lower-content {
  padding: 20px;
}

.professional-video-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #142441;
  line-height: 1.5;
  margin-bottom: 0;
}

.professional-video-card .inner-box:hover h4 {
  color: #7b51a1;
}


/* video */
/* --- SECTION STYLING --- */
.team-section.advanced-horizontal-cards {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.advanced-card-wrap {
  display: flex;
  margin-bottom: 30px;
}

/* --- CORE CARD LAYOUT AND STYLING (Increased Min-Height) --- */
.doctor-card.horizontal-layout {
  /* *** MODIFIED: Increased minimum height for a larger box *** */
  min-height: 300px;

  display: flex;
  align-items: center;

  background: #ffffff;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  padding: 15px;
  /* MODIFIED: Increased internal padding */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}



/* --- IMAGE BLOCK STYLING (Increased Image Size) --- */
.doctor-card .image-box {
  flex-shrink: 0;
  /* *** MODIFIED: Increased width percentage for a bigger image area *** */
  width: 45%;
  /* *** MODIFIED: Increased max width for a larger overall medium size *** */
  max-width: 250px;
  margin-right: 40px;
  /* MODIFIED: Increased spacing between image and text */
}

.doctor-card .image-box .image {
  height: 100%;
}

.doctor-card .image-box img {
  width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* --- CONTENT BLOCK STYLING (Minor spacing adjustment) --- */
.doctor-card .content-box {
  flex-grow: 1;
}

.doctor-card .category-tag {
  font-size: 13px;
  /* Slightly larger tag */
  font-weight: 700;
  color: #555;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  /* Added spacing */
}

.doctor-card h2 {
  font-size: 26px;
  /* Slightly larger name */
  color: #2c3e50;
  margin-bottom: 5px;
}

.doctor-card .designation-text {
  font-size: 16px;
  /* Larger text */
  color: #007bff;
  font-weight: 500;
  margin-bottom: 20px;
  /* Increased spacing below title/role */
}

.doctor-card .bio-excerpt {
  font-size: 15px;
  /* Larger text */
  line-height: 1.6;
  color: #555;
}

/* --- RESPONSIVE ADJUSTMENTS (For mobile/stacked view) --- */
@media (max-width: 767px) {
  .doctor-card.horizontal-layout {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 40px 20px;
  }

  .doctor-card .image-box {
    width: 70%;
    /* Image larger on mobile */
    margin: 0 auto 25px auto;
    /* Center image and add space below */
    max-width: 300px;
  }

  .doctor-card .content-box {
    text-align: center;
    width: 100%;
  }
}

/* --- Global Reset/Variables (Optional but good practice) --- */
:root {
  --primary-color: #007bff;
  /* Example Brand Color */
  --text-color: #333;
  --light-bg: #f8f9fa;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
  --gap-size: 30px;
  /* Use a variable for gap/scroll consistency */
}

/* --- Section Layout --- */
.patient-testimonials-section {
  padding: 60px 0;
  /* Changed padding-left/right to 0 and added track padding below */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  /* Useful if navigation is positioned absolutely */
}

/* Header Styling - Apply horizontal padding here */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
  /* Apply padding to header content */
}

.header-container h2 {
  font-size: 2.2em;
  color: var(--text-color);
  margin: 0;
  flex-grow: 1;
}

.header-container p {
  font-size: 1.1em;
  color: #666;
  margin: 10px 0 0 0;
  flex-basis: 100%;
}

.view-all-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #0056b3;
}

/* --- ITERATIVE SLIDER: 3.x View and Functionality --- */
.testimonial-slider-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  gap: var(--gap-size);
  /* Use the variable */
  margin-bottom: 20px;

  /* CRUCIAL for the 3.x peeking effect */
  padding-left: 20px;
  padding-right: 20px;
}

/* Hide scrollbar for cleaner look (optional) */
.testimonial-slider-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slider-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- Individual Card Styling --- */
.testimonial-card {
  /* Set width for 3.x visibility on large screens */
  flex: 0 0 calc((100% - (2 * var(--gap-size)) - 40px) / 3);
  min-width: min(320px, 85vw);
  /* Ensures minimum size but allows shrinking on very small screens */

  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- VIDEO EMBED STYLES (16:9 Aspect Ratio) --- */
.video-thumbnail {
  width: 100%;
  /* Replaced fixed height with aspect ratio container */
  position: relative;
  cursor: pointer;
  background-color: #000;
  overflow: hidden;
  height: auto;
}

/* New CSS for 16:9 aspect ratio */
.video-aspect-ratio {
  position: relative;
  width: 100%;
  /* 9 / 16 = 56.25% */
  padding-top: 56.25%;
}

.video-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Content and Title Styles (No changes needed) --- */
.content {
  padding: 15px;
}

.summary-text {
  font-size: 0.85em;
  color: #555;
  line-height: 1.4;
  min-height: 40px;
}

.video-title {
  display: block;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 10px;
  font-size: 1.1em;
  transition: color 0.2s;
}

.video-title:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* --- Navigation Arrows Styling --- */
.slider-navigation {
  display: flex;
  justify-content: flex-end;
  /* Align to the right side of the track */
  padding-right: 20px;
  /* Align with the track's right padding */
}

.nav-arrow {
  background-color: #7C50A1;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.2s, transform 0.1s;
}

.nav-arrow:hover {
  background-color: #9475adff;
}

.nav-arrow:active {
  transform: scale(0.95);
}

/* --- Responsiveness for Mobile --- */
@media (max-width: 768px) {
  .header-container {
    display: block;
    text-align: center;
    padding: 0 25px !important;
  }

  .view-all-link {
    /* Keep or hide as desired */
  }

  .testimonial-slider-track {
    gap: 20px;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .testimonial-card {
    flex: 0 0 80vw;
    max-width: 400px;
  }

  .slider-navigation {
    justify-content: center;
    /* Center navigation on mobile */
    padding-right: 0;
  }
}

/* review */

/* Global Header and Menu styles have been moved to style.css to ensure consistency across all pages. */


/* --- Modern About Section (Punya Modern - Correct Brand Colors) --- */
.punya-about-modern {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.punya-about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #f8f4ff;
  /* Light brand purple */
  z-index: 0;
  border-radius: 100px 0 0 100px;
}

.punya-about-modern .auto-container {
  position: relative;
  z-index: 1;
}

.punya-about-modern .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .punya-about-modern .top-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.punya-about-modern .badge {
  display: inline-block;
  padding: 8px 20px;
  background: #7b51a1;
  /* Brand Purple */
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.punya-about-modern h2 {
  font-size: 48px;
  line-height: 1.1;
  color: #142441;
  font-weight: 800;
  margin-bottom: 30px;
}

.punya-about-modern h2 span {
  color: #5d9939;
  /* Brand Green */
}

.punya-about-modern .main-card {
  background: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  margin-bottom: 30px;
}

.punya-about-modern .main-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 30px;
}

.punya-about-modern .read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #7b51a1;
  /* Brand Purple */
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.punya-about-modern .read-more:hover {
  color: #5d9939;
  /* Brand Green */
  gap: 18px;
}

/* Feature Grid */
.punya-about-modern .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.punya-about-modern .feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(123, 81, 161, 0.05);
  border: 1px solid rgba(123, 81, 161, 0.1);
  transition: all 0.3s;
}

.punya-about-modern .feature-card:hover {
  transform: translateX(-10px);
  border-color: #5d9939;
  /* Brand Green */
  box-shadow: 0 15px 40px rgba(93, 153, 57, 0.1);
}

.punya-about-modern .icon-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #f1f8ed;
  /* Light Green */
  color: #5d9939;
  /* Brand Green */
}

.punya-about-modern .feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #142441;
  margin-bottom: 8px;
}

.punya-about-modern .feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.punya-about-modern .consult-btn {
  background: #5d9939;
  /* Brand Green */
  color: #fff !important;
  padding: 20px 40px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  transition: all 0.4s;
  border: 2px solid #5d9939;
}

.punya-about-modern .consult-btn:hover {
  background: transparent;
  color: #5d9939 !important;
}

/* Stats Row - Cleaned up for new premium counters */
.punya-about-modern .stats-row {
  margin-top: 40px;
  width: 100%;
}

/* --- Premium Counter Section (Gold/Yellow Card Design) --- */
.punya-premium-counter {
  padding: 60px 0;
  background-color: #fff;
}

.counter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.counter-grid .counter-card {
  flex: 1 1 calc(20% - 20px) !important;
  min-width: 200px !important;
  background-color: #7b51a1 !important;
  /* Brand Purple */
  border-radius: 12px !important;
  padding: 30px 20px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 15px !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(123, 81, 161, 0.2) !important;
}

.counter-grid .counter-card:hover {
  background-color: #5d9939 !important;
  /* Brand Green on hover */
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(93, 153, 57, 0.4) !important;
}

.counter-card * {}

.punya-specialities-modern .service-block-two .inner-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.punya-specialities-modern .service-block-two .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 81, 161, 0.1);
  border-color: rgba(123, 81, 161, 0.2);
}

.punya-specialities-modern .service-block-two .image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.punya-specialities-modern .service-block-two .inner-box:hover .image-box img {
  transform: scale(1.1);
}

.punya-specialities-modern .service-block-two .lower-content {
  padding: 30px 25px;
  text-align: center;
}

.punya-specialities-modern .service-block-two .lower-content h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}

.punya-specialities-modern .service-block-two .lower-content h4 a {
  color: #142441;
  text-decoration: none;
  transition: color 0.3s;
}

.punya-specialities-modern .service-block-two .lower-content h4 a:hover {
  color: #7b51a1;
}

.punya-specialities-modern .service-block-two .lower-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.punya-specialities-modern .theme-btn-two {
  background: transparent;
  border: 2px solid #5d9939;
  color: #5d9939;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.punya-specialities-modern .theme-btn-two:hover {
  background: #5d9939;
  color: #fff;
}

.punya-specialities-modern .carousel-nav-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.punya-specialities-modern .arrow-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #7b51a1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.punya-specialities-modern .arrow-button:hover {
  background: #5d9939;
  transform: scale(1.1);
}


/* --- Banner Search Bar --- */
.banner-search-container {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 100;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-input-group {
  background: #fff;
  border-radius: 50px;
  padding: 8px 15px 8px 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#banner-search-input {
  flex: 1;
  border: none !important;
  padding: 12px 0 !important;
  font-size: 16px !important;
  color: #333 !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

#banner-search-input::placeholder {
  color: #888;
  font-weight: 400;
}

.search-icon-btn {
  background: transparent;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.search-icon-btn:hover {
  color: #7b51a1;
}

/* Suggestions Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  /* Hidden by default */
  z-index: 101;
  border: 1px solid #eee;
}

.search-results-dropdown.active {
  display: block !important;
  animation: fadeInSearch 0.3s ease;
}

@keyframes fadeInSearch {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suggestion-item {
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #f9f9f9;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  text-decoration: none !important;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
  padding-left: 30px;
}

.suggestion-item i {
  color: #7b51a1;
  font-size: 18px;
}

.suggestion-item .suggestion-title {
  font-weight: 500;
  color: #333;
}

.suggestion-item .suggestion-category {
  font-size: 11px;
  color: #888;
  margin-left: auto;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #999;
  font-style: italic;
}

/* Responsive Search Bar */
@media (max-width: 767px) {
  .banner-search-container {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 90% !important;
    margin: 5px auto 25px auto !important;
    z-index: 10;
  }

  #banner-search-input {
    font-size: 14px !important;
  }

  .search-input-group {
    padding: 5px 10px 5px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
  }
}

/* Header Search specific results adjustment */
.header-search .search-results-dropdown {
  top: 100%;
  left: auto;
  right: 0;
  min-width: 300px;
}



/* ── Precise Service Slider (v2) ─────────────────────────────────────────── */
.punya-services-section {
  background-color: #eaf6ff;
  /* Exact light blue from image */
  padding: 70px 0;
}

.section-header-blue h2 {
  color: #005689;
  /* Deep blue from image */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.service-card-v2 {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 10px;
  transition: all 0.3s ease;
}

.service-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header-v2 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon-box-v2 {
  width: 35px;
  height: 35px;
  background: #0076bb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.title-v2 {
  margin: 0 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.title-v2 a {
  color: inherit;
  text-decoration: none;
}

.image-box-v2 {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
}

.image-box-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-v2 {
  margin-top: 15px;
  text-align: center;
}

.link-v2 {
  color: #ff4a6b;
  /* Precise pink from image */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.link-v2:hover {
  color: #0076bb;
}

/* Bottom Actions */
.service-bottom-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-all,
.btn-app {
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.blue-fill {
  background: #0088cc;
  color: #fff;
}

.pink-fill {
  background: #f05a8e;
  color: #fff;
}

.btn-all:hover,
.btn-app:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}

/* Pagination Dots */
.service-carousel-v2 .owl-dots {
  margin-top: 25px !important;
}

.service-carousel-v2 .owl-dot span {
  background: #d6e9f5 !important;
}

.service-carousel-v2 .owl-dot.active span {
  background: #0076bb !important;
}

/* ── Compact Service Slider ─────────────────────────────────────────── */
.service-card-compact {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  /* Compact padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2f2f2;
  transition: all 0.3s ease;
  margin: 5px;
  /* Added small margin for shadow visibility */
}

.service-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-header-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-compact {
  width: 35px;
  height: 35px;
  background: #7A50A2;
  /* Brand Purple */
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.card-header-compact h4 {
  margin: 0;
  font-size: 15px;
  /* Compact font size */
  line-height: 1.3;
  font-weight: 600;
}

.card-header-compact h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.card-header-compact h4 a:hover {
  color: #e21e26;
}

.card-image-compact {
  border-radius: 8px;
  overflow: hidden;
  height: 140px;
  /* Compact image height */
  position: relative;
}

.card-image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-compact:hover .card-image-compact img {
  transform: scale(1.05);
}

.card-footer-compact {
  text-align: center;
  margin-top: 12px;
}

.know-more-compact {
  color: #5D9937;
  /* Brand Green */
  font-weight: 600;
  font-size: 14px;
  /* Compact font size */
  text-decoration: none;
  transition: color 0.3s;
}

.know-more-compact:hover {
  color: #7A50A2;
}

/* Ensure the container dots work for the compact carousel */
.service-carousel-container .owl-dots {
  margin-top: 20px !important;
}

.service-carousel-container .owl-dot span {
  background: #d6e9f5 !important;
}

.service-carousel-container .owl-dot.active span {
  background: #7A50A2 !important;
}

/* ── Compact CTA Section Overrides ──────────────────────────────────── */
.cta-style-two {
  padding: 40px 0px !important;
  background: linear-gradient(135deg, #7A50A2 0%, #4a2d6b 100%) !important;
  color: #fff !important;
  border-radius: 20px;
  margin: 0 15px;
}

.cta-style-two .text h2 {
  color: #fff !important;
}

.cta-style-two .text h2 {
  font-size: 28px !important;
  /* Smaller, cleaner font size */
  line-height: 1.3 !important;
  font-weight: 600 !important;
  margin-bottom: 0;
}

.cta-style-two .inner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Space out text and button horizontally */
  gap: 30px;
  /* Ensure gap between text and button */
  width: 100%;
}

.cta-style-two .text {
  float: none !important;
  /* Override pull-left */
}

.cta-style-two .btn-box {
  float: none !important;
  /* Override pull-right */
  margin-top: 0 !important;
  /* Remove top margin so it aligns with text */
}

@media (max-width: 768px) {
  .cta-style-two .inner-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-style-two .text h2 {
    font-size: 24px !important;
    margin-bottom: 15px;
  }

  .cta-style-two .btn-box {
    margin-top: 15px !important;
  }
}

/* ── Global Section Spacing Fixes ───────────────────────────────────── */
/* Reduces the massive default padding between all sections on the page */
.punya-about-modern,
.service-section,
.punya-why-choose-premium,
.punya-video-grid-professional,
.patient-testimonials-section,
.news-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

@media (max-width: 991px) {

  .punya-about-modern .auto-container,
  .service-section .auto-container,
  .news-section .auto-container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .sec-title h2 {
    font-size: 28px !important;
    text-align: center !important;
  }

  .sec-title p {
    text-align: center !important;
  }
}

/* Reduce the bottom margin of section titles to tighten the layout further */
.sec-title {
  margin-bottom: 35px !important;
}

/* ── Why Choose Us Premium Section ──────────────────────────────────── */
.punya-why-choose-premium {
  background: #ffffff;
  padding: 40px 0;
  /* Reduced padding */
}

.punya-why-choose-premium .image-wrapper {
  position: relative;
  padding-right: 40px;
}

.punya-why-choose-premium .image-wrapper .image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.punya-why-choose-premium .experience-card {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: #7A50A2;
  color: #ffffff;
  padding: 20px 30px;
  /* Smaller padding */
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(122, 80, 162, 0.2);
  z-index: 2;
}

.punya-why-choose-premium .experience-card .number {
  display: block;
  font-size: 32px;
  /* Smaller font */
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.punya-why-choose-premium .experience-card p {
  font-size: 12px;
  /* Smaller font */
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.punya-why-choose-premium .content-column {
  padding-left: 40px;
}

.punya-why-choose-premium .sec-title .badge {
  background: rgba(122, 80, 162, 0.1);
  color: #7A50A2;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}

.punya-why-choose-premium .sec-title h2 {
  font-size: 32px;
  /* Reduced from 42px */
  font-weight: 800;
  margin-bottom: 20px;
}

.punya-why-choose-premium .sec-title p {
  font-size: 15px;
  margin-bottom: 25px;
}

.punya-why-choose-premium .features-list {
  margin-bottom: 30px;
}

.punya-why-choose-premium .single-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  /* Tighter spacing */
}

.punya-why-choose-premium .single-feature .icon-box {
  width: 50px;
  /* Smaller icon box */
  height: 50px;
  background: rgba(93, 153, 55, 0.1);
  color: #5D9937;
  font-size: 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.punya-why-choose-premium .single-feature h4 {
  font-size: 18px;
  /* Slightly smaller */
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.punya-why-choose-premium .single-feature p {
  font-size: 14px;
  /* Slightly smaller */
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.punya-why-choose-premium .btn-box .theme-btn-one {
  padding: 10px 25px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .punya-why-choose-premium {
    padding: 40px 0;
  }

  .punya-why-choose-premium .image-wrapper {
    padding-left: 25px !important;
    padding-right: 25px !important;
    margin-bottom: 50px;
  }

  .punya-why-choose-premium .experience-card {
    right: 15px;
    bottom: -15px;
    padding: 15px 20px;
  }

  .punya-why-choose-premium .experience-card .number {
    font-size: 26px;
  }

  .punya-why-choose-premium .content-column {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .punya-why-choose-premium .sec-title h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* --- Map and Action Section --- */
.map-action-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.map-action-section .action-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-action-section .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-action-section .action-btn {
  display: block;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.map-action-section .book-btn {
  background-color: #fce4ec;
  /* Light pink */
  color: #142441;
  border: 1px solid #f8bbd0;
}

.map-action-section .book-btn:hover {
  background-color: #f8bbd0;
}

.map-action-section .callback-btn {
  background-color: #fff;
  color: #142441;
  border: 2px solid #7b51a1;
}

.map-action-section .callback-btn:hover {
  background-color: #7b51a1;
  color: #fff;
}

.map-action-section .insurance-banner {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-action-section .insurance-banner img {
  width: 100%;
  display: block;
}

.map-action-section .map-info-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-action-section .map-container {
  height: 300px;
  width: 100%;
}

.map-action-section .info-content {
  padding: 25px;
}

.map-action-section .info-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #142441;
}

.map-action-section .info-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.map-action-section .bottom-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.map-action-section .bottom-btn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-action-section .bottom-btn:hover {
  border-color: #7b51a1;
  color: #7b51a1;
}

.map-action-section .google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  margin-left: auto;
}

.map-action-section .rating-num {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.map-action-section .stars {
  color: #fbbc04;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.map-action-section .reviews-count {
  font-size: 13px;
  color: #70757a;
}

@media (max-width: 991px) {
  .map-action-section .google-rating {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .map-action-section .bottom-actions {
    justify-content: center;
  }
}

/* --- COLORISH BRAND UPDATES --- */
.sec-title h2 span {
  color: #7A50A2 !important;
}

.service-card-compact:hover .icon-compact {
  background: #5D9937 !important;
}

/* --- Google Reviews Section --- */
.google-reviews-section {
  padding: 80px 0;
  background-color: #f9fbfe;
}

.google-review-card {
  background: #543b6d;
  border-radius: 8px;
  padding: 20px;
  color: #e8eaed;
  font-family: 'Roboto', 'Inter', sans-serif;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  min-height: 240px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.gr-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
  flex-shrink: 0;
}

.gr-info {
  flex-grow: 1;
}

.gr-name {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}

.gr-name:hover {
  text-decoration: underline;
}

.gr-stats {
  color: #9aa0a6;
  font-size: 13px;
}

.gr-icon {
  position: absolute;
  right: 0;
  top: 5px;
  color: #fff;
  font-size: 18px;
}

.gr-rating {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.gr-rating .stars {
  color: #fbbc04;
  font-size: 14px;
  margin-right: 10px;
  display: flex;
  gap: 2px;
}

.gr-date {
  color: #9aa0a6;
  font-size: 13px;
}

.gr-text {
  color: #e8eaed;
  font-size: 14px;
  line-height: 1.5;
}

.gr-more {
  color: #8ab4f8;
  text-decoration: none;
  font-weight: 500;
}

.gr-more:hover {
  text-decoration: underline;
}

.google-reviews-section .owl-dots {
  margin-top: 20px !important;
}



/* --- RESTORED CSS & 2x2 GRID FIX --- */
.counter-card .icon-box {
  font-size: 40px;
  line-height: 1;
  opacity: 1;
}

.counter-card .content-box {
  display: flex;
  flex-direction: column;
}

.counter-card .number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}

.counter-card .label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.95;
}

.punya-specialities-modern .sec-title h6 {
  color: #7b51a1;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.punya-specialities-modern .sec-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #142441;
}

.punya-specialities-modern .sec-title h2 span {
  color: #5d9939;
}

/* 2x2 Mobile Layout for Stats */
@media (max-width: 1199px) {
  .counter-grid .counter-card {
    flex: 1 1 calc(33.333% - 20px) !important;
  }
}

@media (max-width: 767px) {
  .counter-grid {
    gap: 15px !important;
  }

  .counter-grid .counter-card {
    flex: 1 1 calc(50% - 15px) !important;
    min-width: 150px !important;
  }
}

@media (max-width: 480px) {
  .counter-grid {
    gap: 10px !important;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
  }

  .counter-grid .counter-card {
    flex: 1 1 calc(50% - 5px) !important;
    min-width: 0 !important;
    max-width: calc(50% - 5px) !important;
    padding: 15px 10px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .counter-card .icon-box {
    font-size: 30px !important;
  }

  .counter-card .number {
    font-size: 22px !important;
  }

  .counter-card .label {
    font-size: 13px !important;
  }
}

/* --- Background Color Fine-tuning --- */
.punya-why-choose-premium {
  background-color: #fcfcfc !important;
  /* Very light grey */
}

.punya-specialities-modern {
  background-color: #ffffff !important;
}

.google-reviews-section {
  background-color: #f8f4ff !important;
  /* Brand light purple */
  padding: 20px 0 !important;
}

.patient-testimonials-section {
  background-color: #ffffff !important;
}

/* Cleanup Repetition */
.interactive-video-gallery {
  display: none !important;
}

/* --- UNIFIED BUTTON STYLING (Punya Brand) --- */
.punya-btn,
.consult-btn,
.action-btn.book-btn,
.action-btn.callback-btn,
.theme-btn-one {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 30px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  border: 2px solid #7A50A2 !important;
  background-color: #7A50A2 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(122, 80, 162, 0.2) !important;
  gap: 10px !important;
}

.punya-btn:hover,
.consult-btn:hover,
.action-btn.book-btn:hover,
.action-btn.callback-btn:hover,
.theme-btn-one:hover {
  background-color: #5d9939 !important;
  border-color: #5d9939 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(93, 153, 57, 0.3) !important;
}

/* Specific adjustments for section buttons to ensure they don't break layout */
.punya-about-modern .consult-btn {
  margin-top: 15px !important;
  width: auto !important;
}

.map-action-section .action-btn {
  width: 100% !important;
  margin-bottom: 10px !important;
}

/* --- HEADER BOOK BUTTON SPECIFIC --- */
.header-book-btn {
  background-color: #7A50A2 !important;
  color: #ffffff !important;
  padding: 5px 15px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  margin-left: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid #7A50A2 !important;
  height: auto !important;
  line-height: 1 !important;
}

.header-book-btn:hover {
  background-color: #5d9939 !important;
  border-color: #5d9939 !important;
  color: #ffffff !important;
}

.header-book-btn i {
  color: #ffffff !important;
  margin-right: 6px !important;
}

/* --- UNIFIED SECTION HEADINGS (42px) --- */
.sec-title h2,
.punya-about-modern h2,
.punya-why-choose-premium .sec-title h2,
.punya-specialities-modern .sec-title h2,
.punya-video-grid-professional .sec-title h2,
.punya-founders-premium .sec-title h2,
.patient-testimonials-section .sec-title h2,
.google-reviews-section .sec-title h2 {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #142441 !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  text-transform: capitalize !important;
}

.sec-title h2 span,
.punya-about-modern h2 span,
.punya-why-choose-premium .sec-title h2 span,
.punya-specialities-modern .sec-title h2 span,
.punya-video-grid-professional .sec-title h2 span,
.punya-founders-premium .sec-title h2 span,
.google-reviews-section .sec-title h2 span {
  color: #5d9939 !important;
}

/* Mobile responsive headings */
@media (max-width: 767px) {

  .sec-title h2,
  .punya-about-modern h2,
  .punya-why-choose-premium .sec-title h2,
  .punya-specialities-modern .sec-title h2,
  .punya-video-grid-professional .sec-title h2,
  .punya-founders-premium .sec-title h2,
  .patient-testimonials-section .sec-title h2,
  .google-reviews-section .sec-title h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {

  .sec-title h2,
  .punya-about-modern h2,
  .punya-why-choose-premium .sec-title h2,
  .punya-specialities-modern .sec-title h2,
  .punya-video-grid-professional .sec-title h2,
  .punya-founders-premium .sec-title h2,
  .patient-testimonials-section .sec-title h2,
  .google-reviews-section .sec-title h2 {
    font-size: 28px !important;
  }
}

/* --- INSURANCE PARTNERS SECTION --- */
.punya-insurance-partners {
  padding: 80px 0;
  background-color: #f8f4ff;
  /* Light brand purple */
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.insurance-item {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.insurance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(122, 80, 162, 0.1);
  border-color: #7A50A2;
}

.insurance-item span {
  font-weight: 700;
  color: #4a5568;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cashless-note {
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.cashless-note p {
  margin-bottom: 0;
  font-size: 15px;
  color: #666;
}

.cashless-note p i {
  color: #7A50A2;
  margin-right: 8px;
}

.cashless-note p strong {
  color: #142441;
}

@media (max-width: 767px) {
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cashless-note {
    border-radius: 15px;
    width: 100%;
    transform: none;
    left: 0;
  }
}

/* --- Video Carousel Override --- */
.video-carousel-wrap .professional-video-card {
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* --- Home Page Modern Counter Section overrides --- */
.punya-about-modern .content_block_1 .single-item::before {
  display: none !important;
}