
   
:root {
        --primary: #0ea5e9; /* Medical Teal Accent */
        --primary-dark: #0284c7;
        --secondary: #E0B04B; /* Deep Trust Navy */
        --accent-yellow: #f8fafc;
        --dark-color: #011222;
        --bg-light: #f1f5f9;
        --bg-card: #ffffff;
        --text-main: #334155;
        --text-muted: #22968e;
        --border: #e2e8f0;
        /* Updated global typography assignments to premium modern web fonts */
        --font-header: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
        --font-body: "Inter", system-ui, -apple-system, sans-serif;
        --radius: 16px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
	  

    
  
    .testimonials-section {
      display: block;
      width: 100%;
      clear: both;
      box-sizing: border-box;
    }
    .image-testimonial-slider {
      position: relative;
      padding: 0 10px;
      margin: 20px 0;
      width: 100%;
      box-sizing: border-box;
    }
    .vts-track-viewport {
      overflow: hidden;
      width: 100%;
      padding: 15px 4px; 
      margin-left: -4px;
      box-sizing: border-box;
    }
    .img-vts-track {
      display: flex;
      gap: 20px; /* Base structural track space gap */
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      box-sizing: border-box;
      will-change: transform;
    }
    .vts-img-slide {
      background: transparent;
      border: none;
      box-sizing: border-box; 
    }
    
    /* Perfect Alignment Calculations for all viewports */
    @media screen and (min-width: 1025px) {
      .vts-img-slide {
        /* Strictly locks 4 equal cards per row on desktop */
        flex: 0 0 calc((100% / 4) - 15px) !important;
        max-width: calc((100% / 4) - 15px) !important;
        height: 520px !important; 
      }
    }
    @media screen and (max-width: 1024px) and (min-width: 769px) {
      .vts-img-slide {
        flex: 0 0 calc((100% / 3) - 14px) !important;
        max-width: calc((100% / 3) - 14px) !important;
        height: 530px !important;
      }
    }
    @media screen and (max-width: 768px) and (min-width: 521px) {
      .vts-img-slide {
        flex: 0 0 calc((100% / 2) - 10px) !important;
        max-width: calc((100% / 2) - 10px) !important;
        height: 520px !important;
      }
    }
    @media screen and (max-width: 520px) {
      .vts-img-slide {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 480px;
      }
      .card-meta-content .img-card-text {
        font-size: 13px !important;
        -webkit-line-clamp: none !important;
      }
    }

    .testimonial-card-static {
      position: relative;
      width: 100%;
      height: 100%;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      background: #ffffff;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
    .patient-img-wrapper {
      width: 100%;
      height: 200px; 
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid #f1f5f9;
    }
    .testimonial-card-static .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
      object-position: center top; 
      background-color: #f8fafc; 
      transition: transform 0.5s ease;
    }
    .vts-img-slide:hover .card-img {
      transform: scale(1.04);
    }
    .card-meta-content {
      padding: 16px 14px;
      background: #ffffff;
      text-align: left;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }
    .card-meta-content .img-card-title {
      margin: 0 0 4px 0;
      font-size: 15px;
      font-weight: 700;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .img-card-procedure {
      margin: 0 0 6px 0;
      font-size: 13.5px;
      font-weight: 600;
      color: #1e293b;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-meta-content .img-card-country {
      font-size: 12px;
      color: #64748b;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 12px;
    }
    .card-meta-content .img-card-country i {
      color: #cc3366;
      font-size: 11px;
    }
    .card-meta-content .img-card-text {
      font-size: 12.5px;
      color: #475569;
      line-height: 1.6;
      margin: 0 0 auto 0; /* Pushes downstream items down automatically */
      text-align: justify;
      display: -webkit-box;
      -webkit-line-clamp: 8; 
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #cc3366;
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      margin-top: auto !important; /* Locks button cleanly on the bottom alignment line */
      padding-top: 12px;
      width: fit-content;
      transition: gap 0.2s ease;
    }
    .read-more-btn:hover {
      gap: 10px;
    }
    .img-vts-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: #ffffff;
      color: #cc3366;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .img-vts-arrow:hover {
      background: #cc3366;
      color: #ffffff;
    }
    .img-vts-arrow-prev { left: -15px; }
    .img-vts-arrow-next { right: -15px; }
    
    .img-vts-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 25px;
    }
    .vts-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #cbd5e1;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .vts-dot.active {
      background: #cc3366;
      transform: scale(1.25);
    }
  


.guide-segment h2 {
  font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    color: #fb9a40;
}
   .guide-segment{
        background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    margin: 40px 0 0 0px;
    border: 1px solid var(--secondary);
    box-shadow: 23px;
    box-shadow: 1px 3px 12px 6px rgba(0, 0, 0, 0.06)
	}
/* 1. Mobile-First Default Style (1 Column per row) */
.guide-styled-list {
       list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.guide-styled-list li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: var(--text-main);
}
.guide-styled-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0ea5e9;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}
.guide-styled-list li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: var(--text-main);
}
.guide-styled-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
/* 2. Anchor Tags Base Styling */
.guide-styled-list a {
    background: rgba(255, 255, 255, 0.05);
    /* padding: 14px; */
    /* border-radius: 10px; */
    text-align: center;
    font-weight: 800;
    font-size: 16px !important;
    color: #0ea5e9 !important;
    /*border: 1px solid rgb(0 51 102);*/
}

/* 3. Interactive Hover State */
.guide-styled-list li:hover::before {
    color: #036;
}
.guide-styled-list a:hover {
	color: #036 !Important;
}

/* 4. Responsive Desktop Adjustment (3 Columns per row) */
@media (min-width: 768px) {
    .guide-styled-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
	.guide-styled-list li {
        font-size: 14px !important;
        letter-spacing: -0.01em;
        font-weight: 500;
    }
}




  /* --- Generic Element Defaults --- */
p {
  margin-top: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Hero & Profile Header Layout --- */
.dr-hero-wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 0 6px;
  padding-left: 16px;
  font-family: 'Inter', sans-serif;
  color: #003366;
}

.dr-hero {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: start;
}

.dr-photo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dr-photo-frame {
  position: relative;
  border: 1px solid #e0a458;
  border-radius: 12px;
  padding: 6px;
  max-width: 300px;
  margin: 0 auto;
}

.dr-photo-frame .dr-inner {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1/1.05;
}

.dr-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-name {
  margin-top: 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: #0A0B67;
}

.dr-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #e0a458;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.dr-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 4px;
}

.main-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  max-width: 700px;
  color: #0A0B67;
}

/* --- Stats Cards --- */
.dr-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
}

.dr-stat-card {
  background: #fffdf6;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(20,20,20,.04);
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dr-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: #003366;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.dr-stat-number span { 
  color: #e0a458; 
}

.dr-stat-label {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #003366;
  text-transform: uppercase;
}

/* --- Section Divider --- */
.dr-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 520px;
  margin: 0 0 14px;
}

.dr-divider .dr-line { 
  flex: 1; 
  height: 1px; 
  background: #ece5d8; 
}

.dr-divider .dr-dot { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: #ece5d8; 
}

.dr-divider .dr-dot.active { 
  width: 60px; 
  height: 3px; 
  border-radius: 2px; 
  background: #e0a458; 
}

/* --- Contact Info --- */
.dr-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.dr-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dr-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1ede4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c2530;
  font-size: 13px;
  flex-shrink: 0;
}

.dr-contact-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #003366;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.dr-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: #003366;
}

.dr-contact-value a {
  color: inherit;
  text-decoration: none;
}

.dr-contact-value a:hover {
  color: #e0a458;
}

/* --- Services Checklist (Profile Ticks) --- */
.profile-ticks {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #263260;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-ticks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.profile-ticks ul li {
  list-style: none !important;
  background: none !important;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.profile-ticks ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background-image: url("https://www.tour2india4health.com/images/tick-img.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
}

/* --- Mission Statement (Commitment Section) --- */
.commitment-section {
  max-width: 1230px;
  margin: 50px auto;
  padding: 40px 45px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fffdf6;
  border: 1px solid #ebdcb9;
  border-radius: 12px;
}

.commitment-title {
  color: #0a2e5c;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
}

.commitment-divider {
  width: 70px;
  height: 4px;
  background-color: #4DB457;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.commitment-text {
  color: #003366;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE / MEDIA QUERIES APPLIED TO THESE CLASSES
   ========================================================================== */

@media (max-width: 980px) {
  .dr-hero-wrap { padding: 16px 12px; }
  .dr-hero { grid-template-columns: 1fr; gap: 20px; }
  .dr-photo-frame { max-width: 320px; margin: 0 auto; }
  .dr-info h1 { font-size: 28px; }
  .dr-stats, .dr-contact, .dr-divider { max-width: 100%; }
  .profile-ticks { gap: 20px; }
  .profile-ticks ul { min-width: 280px; }
}

@media (max-width: 767px) {
  .dr-hero-wrap {
    padding: 18px 16px 0;
    margin: 0 auto;
  }
  .dr-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }
  .dr-photo-column {
    width: 100%;
    margin: 0 auto;
  }
  .dr-photo-frame {
    max-width: 260px;
    width: 100%;
    margin-inline: auto;
  }
  .dr-info {
    width: 100%;
  }
  .doctor-name {
    font-size: 22px;
  }
  .dr-location {
    margin-bottom: 18px;
  }
  .main-title {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.35;
  }
  .dr-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dr-stat-card {
    min-height: 92px;
    height: auto;
    padding: 14px 16px;
  }
  .dr-stat-number {
    font-size: 24px;
  }
  .dr-stat-label {
    font-size: 10.5px;
    line-height: 1.4;
  }
  .dr-divider {
    max-width: 100%;
  }
  .dr-contact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dr-contact-item {
    align-items: flex-start;
  }
  .dr-contact-label {
    font-size: 9.5px;
  }
  .dr-contact-value {
    font-size: 12.5px;
    word-break: break-word;
  }
  .profile-ticks {
    gap: 18px;
    margin-left: 0;
    margin-right: 0;
  }
  .profile-ticks ul {
    min-width: 100%;
  }
  .profile-ticks ul + ul {
    margin-top: 8px;
  }
  .profile-ticks ul li {
    padding-left: 24px;
  }
  .profile-ticks ul li::before {
    width: 12px;
    height: 12px;
  }
  .commitment-section {
    margin: 28px 16px;
    padding: 24px 16px;
    max-width: 100%;
  }
  .commitment-title {
    font-size: 22px;
  }
  .commitment-text {
    font-size: 15px;
    line-height: 1.9;
  }
  h2[style] {
    font-size: 22px !important;
    line-height: 1.35;
  }
  p {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  .dr-hero-wrap {
    padding-top: 14px;
  }
  .dr-photo-frame {
    max-width: 220px;
  }
  .main-title {
    font-size: 22px;
  }
  .doctor-name {
    font-size: 20px;
  }
  .dr-stat-card {
    padding: 12px 14px;
  }
  .dr-contact-item {
    gap: 8px;
  }
  .dr-icon-box {
    width: 28px;
    height: 28px;
  }
  .profile-ticks ul li {
    padding-left: 22px;
  }
  .commitment-section {
    padding: 22px 14px;
  }
  .commitment-divider {
    margin-bottom: 18px;
  }
}
  
	