
      :root {
        --primary: #0ea5e9; /* Medical Teal Accent */
        --primary-dark: #0284c7;
        --secondary: #003366; /* Deep Trust Navy */
        --accent-yellow: #f8fafc;
        --dark-color: #011222;
        --bg-light: #f1f5f9;
        --bg-card: #ffffff;
        --text-main: #334155;
        --text-muted: #062b60;
        --border: #e2e8f0;
        --font-header: "Plus Jakarta Sans", sans-serif;
        --font-body: "Inter", sans-serif;
        --radius: 12px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

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

      body {
        font-family: var(--font-body);
        color: #003366;
        background-color: #ffffff;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-header);
        color: var(--secondary);
        font-weight: 700;
        line-height: 1.3;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }
	  
	  p {
	        margin-top: 15px;
	  }

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

      .container {
			max-width: 1200px;
		margin: 0 auto;
		padding: 0 24px;
      }

      /* --- Top Header Branding Section --- */
      header {
        background: linear-gradient(160deg, #9fc349 35%, #36566f 65%);
        border-bottom: 2px solid var(--primary);
      }

      .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 24px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
      }

      #top-right {
				text-align: right;
			font-size: 14px;
			/* background: rgba(255, 255, 255, 0.95); */
			padding: 5px 5px;
			/* border-radius: 8px; */
			/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); */
			/* border: 1px solid rgba(0, 0, 0, 0.05); */
			font-weight: 500;
      }
      #top-right span {
				display: flex;
				align-items: center;
				gap: 5px;
				margin-bottom: 12px;
				font-size: 14px;
				line-height: 1.4;
        font-weight: 800;
        color: #fff;
      }
      #top-right a {
        color: #fff;
        font-weight: 700;
      }
      #top-right a:hover {
        color: #ffff;
      }
	  .icon-btn i {
    font-size: 20px;
	margin-top: 2px;
}

      /* --- Navigation Bar --- */
      .navbar {
        background-color: #003366;
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      }

      .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        width: 100%;
        justify-content: flex-start;
      }

      .nav-menu li a {
        display: block;
        padding: 18px 24px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font-header);
      }

      .nav-menu li a:hover,
      .nav-menu li.active a {
        background-color: #003366;
        color: #ffff;
      }

      /* --- Mobile Toggle Menu --- */
      .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        cursor: pointer;
        position: relative;
      }

      .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #ffff;
        border-radius: 2px;
        transition:
          transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.3s ease;
        position: absolute;
      }

      .menu-toggle .bar:nth-child(1) {
        top: 0;
      }
      .menu-toggle .bar:nth-child(2) {
        top: 8px;
      }
      .menu-toggle .bar:nth-child(3) {
        top: 16px;
      }

      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      /* --- Responsive Hero Banner --- */
      .banner-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
      }
      .banner-section img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      /* --- Structural Content Framework --- */
      .main-grid {
        padding: 60px 0;
      }

      .welcome-block {
        text-align: center;
        max-width: 100%;
        margin: 10px auto 50px auto;
      }

      .welcome-block h1 {
        font-size: 33px;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
        color: var(--secondary);
      }

      .welcome-block p {
        font-size: 16.5px;
        color: var(--text-main);
        text-align: justify;
		margin-bottom: 10px;
		padding: 5px ;
		
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        position: relative;
        padding-left: 20px;
        color: var(--secondary);
        margin-top: 50px;
      }

      .section-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 15%;
        width: 6px;
        height: 70%;
        background-color: var(--primary);
        border-radius: 4px;
      }

      /* --- Treatments Grid Structure --- */
      .treatments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
      }

      .treatment-card {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 24px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      }

      .treatment-card:hover {
        transform: translateY(-3px);
        border-color: var(--primary);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
      }

      .treatment-card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: var(--bg-light);
        padding: 8px;
        border-radius: 10px;
      }

      .treatment-card a {
        font-weight: 700;
        color: var(--secondary);
        font-size: 16px;
        font-family: var(--font-header);
      }

      .treatment-card a:hover {
        color: var(--primary-dark);
      }

      /* --- Introduction Grid --- */
      .new-intro-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
        margin: 40px 0 70px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 55px;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      }
		i.fa-brands.fa-whatsapp {
			color: #3bcd41;
		}
		p.visa-process {
    color: #003366;
}
/* --- New Custom Breadcrumbs Styling --- */
.breadcrumb-wrapper {
  background-color: #f1f5f9; /* Soft background contrasting with navy & teal elements */
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  width: 100%;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-list {
  display: block; /* Switched from flex to block to allow natural word-spacing behavior */
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  display: inline; /* Renders as regular prose text so spaces are preserved accurately */
  line-height: 1.6;
}

.breadcrumb-item i {
  margin-right: 6px;
  color: #003366; /* Matching page trust navy brand accent */
}

.breadcrumb-item a {
  color: #0ea5e9; /* Matching page medical teal standard hyperlink accent */
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #0284c7;
  text-decoration: underline;
}

/* Breadcrumb item divider arrow definition */
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px;
  color: #94a3b8;
  font-size: 12px;
}

.breadcrumb-item.active {
  color: #64748b;
  font-weight: 500;
  pointer-events: none;
}

.breadcrumb-item.active strong {
  color: #003366; /* Gives explicit strong emphasis color targeting your desktop style scheme */
  font-weight: 700;
}

/* ==========================================================================
   MOBILE & SMALL SCREEN OVERRIDES (ADJUSTMENT SAFE GUARDS)
   ========================================================================== */
@media (max-width: 767px) {
  .breadcrumb-container {
    padding: 0 16px; /* Matches your safety mobile grid padding bounds */
  }
  .breadcrumb-item {
    font-size: 13px; /* Slightly scaled down text hierarchy for modern responsive display screens */
  }
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 6px;
  }
}
      @media (min-width: 992px) {
        .main-grid {
          padding: 10px 10px !important;
        }
        .new-intro-container {
          grid-template-columns: 0.9fr 1.1fr;
        }
      }

      .new-intro-image-wrapper h2 {
        font-size: 32px;
        color: var(--secondary);
        margin-bottom: 20px;
        position: relative;
      }

      .new-intro-text,
      .new-intro-image-wrapper p {
        margin-bottom: 5px;
        color: var(--text-main);
        text-align: justify;
        font-size: 15.5px;
        line-height: 1.8;
      }

      .new-intro-badge-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 25px;
      }

      .intro-mini-badge {
        background: #ffffff;
        border-left: 4px solid var(--primary);
        padding: 10px;
        border-radius: 0 10px 10px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        font-size: 14px;
        font-weight: 600;
        color: var(--secondary);
      }

      .new-intro-image-wrapper {
        position: relative;
      }

      .new-intro-image-wrapper img {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius);
        overflow: hidden;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .new-intro-image-wrapper:hover img {
        transform: scale(1.03);
      }

      .image-overlay-card {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 12px;
        border-bottom: 4px solid var(--accent-yellow);
      }

      .image-overlay-card p {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--secondary);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      /* Modern Why Choose India Section Layout */
      .why-india-section {
        background: linear-gradient(180deg, #002244 0%, #003366 100%);
        color: #ffffff;
        padding: 60px 40px;
        border-radius: 24px;
        margin: 60px 0;
        box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
      }

      .why-india-section h2 {
        color: #ffffff;
        text-align: center;
        font-size: 30px;
        margin-bottom: 15px;
      }

      .why-india-subtitle {
        text-align: center;
        color: #94a3b8;
        max-width: 750px;
        margin: 0 auto 45px auto;
        font-size: 15px;
      }

      .why-india-grid-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
      }

      @media (min-width: 992px) {
        .why-india-grid-layout {
          grid-template-columns: 100%;
        }
      }

      .why-india-media img {
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border: 4px solid rgba(255, 255, 255, 0.1);
      }

      .why-india-points-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .why-india-point-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px;
        border-radius: 16px;
        transition: var(--transition);
      }

      .why-india-point-card:hover {
        background: rgba(255, 255, 255, 0.09);
        border-color: var(--accent-yellow);
        transform: translateX(5px);
      }

      .why-india-point-card h3 {
        color: #f1f5f9;
        font-size: 19px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .why-india-point-card p {
        color: #e2e8f0;
        font-size: 14.5px;
        text-align: justify;
        line-height: 1.7;
      }

      /* Process Flow Timeline Elements */
      .process-flow-section {
        margin: 70px 0;
        background: #fdfdfd;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid var(--border);
      }

      .process-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 35px;
      }

      @media (min-width: 992px) {
        .process-split-grid {
          grid-template-columns: 1.1fr 0.9fr;
        }
      }

      .process-intro-text h3 {
        font-size: 22px;
        color: var(--secondary);
        margin-bottom: 15px;
      }

      .process-intro-text p {
        font-size: 15px;
        margin-bottom: 20px;
        text-align: justify;
        color: var(--text-main);
      }

      /* Dynamic Video Preview Integration Components */
      .kp-video-container {
        margin-top: 30px;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        position: relative;
        background-color: #000;
        border: 1px solid var(--border);
      }

      .kp-video {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
      }

      .resp-img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
      }

      /* Video overlay custom elements */
      .kp-video::after {
        content: "\f144";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 65px;
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        opacity: 0.9;
        transition: var(--transition);
        pointer-events: none;
        z-index: 5;
      }

      .kp-video::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.1),
          rgba(0, 0, 0, 0.4)
        );
        z-index: 2;
        transition: var(--transition);
      }

      .kp-video:hover .resp-img {
        transform: scale(1.02);
      }

      .kp-video:hover::after {
        color: var(--accent-yellow);
        font-size: 72px;
        opacity: 1;
      }

      .timeline-vertical-flow {
        position: relative;
        padding-left: 35px;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .timeline-vertical-flow::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: linear-gradient(
          180deg,
          var(--accent-yellow) 0%,
          var(--primary) 100%
        );
        border-radius: 2px;
      }

      .timeline-node-step {
        position: relative;
        background: #ffffff;
        padding: 22px;
        border-radius: 12px;
        border: 1px solid var(--border);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: var(--transition);
      }

      .timeline-node-step:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      }

      .why-india-point-card ul li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: -33px;
        top: 20px;
        width: 24px;
        height: 24px;
        background: #ffffff;
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 2;
      }

      .timeline-node-step:nth-child(1)::before {
        color: var(--accent-yellow);
      }

      .timeline-node-step h4 {
        font-size: 16px;
        color: var(--secondary);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .timeline-step-number {
        font-size: 12px;
        background: var(--bg-light);
        padding: 2px 10px;
        border-radius: 20px;
        color: var(--text-muted);
        border: 1px solid var(--border);
      }

      .timeline-node-step p {
        font-size: 14px;
        color: var(--text-main);
        text-align: justify;
        line-height: 1.6;
      }

      /* --- Standard Checkmark Feature Block --- */
      .feature-sheet {
        background: #ffffff;
        padding: 50px 40px;
        border-radius: var(--radius);
        margin: 40px 0;
        border: 1px solid var(--border);
        border-top: 4px solid var(--secondary);
      }

      .feature-sheet h2 {
        margin-bottom: 25px;
        color: var(--secondary);
      }

      .ui-styled-list {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
      }
	  .ui-styled-list-new{
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px;
      }

      @media (min-width: 768px) {
        .main-grid {
          padding: 10px 10px !important;
        }
        .ui-styled-list {
          grid-template-columns: 1fr 1fr;
        }
		.ui-styled-list-new {
          grid-template-columns: 2fr 2fr 2fr 2fr !important;
        }
      }

      .ui-styled-list li {
        position: relative;
        padding-left: 30px;
        font-size: 15px;
        color: var(--text-main);
      }
/*.outreach-segment {
    padding: 40px;
    background-color: #003366;
    border-radius: var(--radius);
    margin-top: 50px;
    color: #fff;
}*/
      .ui-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;
      }

      /* --- Advantages Matrix --- */
      .features-container {
        padding: 40px 0;
      }

      .features-container h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 28px;
        color: var(--secondary);
      }

      .features-matrix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
      }

      .matrix-item {
        background: #f3f3f3;
    padding: 30px;
    border-radius: var(--radius);
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    border-inline: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
      }

      .matrix-item h3 {
        font-size: 17px;
        margin-bottom: 12px;
        color: var(--secondary);
      }

      .matrix-item p {
        font-size: 14.5px;
        color: var(--text-main);
        text-align: justify;
      }

      /* --- Geo Regions Profiler --- */
      .countries-layout {
        background: #fffdf6;
        border: 1px solid #ebdcb9;
        padding: 45px;
        border-radius: 20px;
        margin: 40px 0;
      }

      .country-box {
        margin-bottom: 40px;
      }

      .country-box:last-child {
        margin-bottom: 0;
      }

      .country-box h2 {
        font-size: 26px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .country-box h2 i {
        color: var(--primary);
      }

      .country-box p {
        color: var(--text-main);
        margin-bottom: 16px;
        text-align: justify;
      }

      blockquote {
        background: var(--bg-light);
        border-left: 5px solid var(--primary);
        padding: 24px;
        margin: 30px 0;
        font-style: italic;
        border-radius: 0 var(--radius) var(--radius) 0;
        color: var(--secondary);
        font-weight: 500;
      }

      /* --- Hospital Integration UI Grid --- */
      .hospitals-section {
        background: #ffffff;
        padding: 50px 40px;
        border-radius: var(--radius);
        margin: 40px 0;
        border: 1px solid var(--border);
      }

      .hospitals-section h2 {
        text-align: center;
        margin-bottom: 35px;
        color: var(--secondary);
      }

      .hospitals-ui-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
        margin-top: 20px;
      }

      .hospital-card-link {
        display: flex;
        align-items: center;
        gap: 14px;
        background: var(--bg-light);
        padding: 16px;
        border-radius: 12px;
        border: 1px solid transparent;
      }

      .hospital-card-link:hover {
        border-color: var(--primary);
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
      }

      .hospital-card-link img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        background: #fff;
        padding: 4px;
        border-radius: 8px;
      }

      .hospital-card-link a {
        font-weight: 600;
        font-size: 14px;
        color: var(--secondary);
      }

      /* --- Operations Flow / Timeline Components --- */
      .process-flow-section {
        margin: 70px 0;
        background: #ffffff;
        padding: 45px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
      }

      .process-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 35px;
      }

      @media (min-width: 992px) {
        .process-split-grid {
          grid-template-columns: 1.1fr 0.9fr;
        }
      }

      .kp-video-container {
        margin-top: 30px;
        border-radius: var(--radius);
        overflow: hidden;
        position: relative;
        background-color: #000;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
      }

      .kp-video img {
        width: 100%;
        transition: var(--transition);
      }

      .kp-video::after {
        content: "\f144";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 60px;
        color: #ffffff;
        z-index: 5;
        transition: var(--transition);
      }

      .kp-video:hover img {
        transform: scale(1.03);
        opacity: 0.8;
      }
      .kp-video:hover::after {
        color: var(--primary);
        font-size: 68px;
      }

      .timeline-vertical-flow {
        position: relative;
        padding-left: 35px;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .timeline-vertical-flow::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: var(--border);
      }

      .timeline-node-step {
        position: relative;
        background: var(--bg-light);
        padding: 24px;
        border-radius: 12px;
      }

      .timeline-node-step::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: -34px;
        top: 24px;
        width: 20px;
        height: 20px;
        color: var(--primary);
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 2;
      }

      .timeline-node-step h4 {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
      }

      .timeline-step-number {
        font-size: 11px;
        background: #ffffff;
        padding: 2px 10px;
        border-radius: 20px;
        color: var(--text-muted);
        border: 1px solid var(--border);
      }

      /* --- Administrative Document Frames --- */
      .visa-frame {
        border: 2px dashed var(--border);
        padding: 45px;
        border-radius: var(--radius);
        background: #ffffff;
        margin: 40px 0;
      }

      .visa-frame h2 {
        margin-bottom: 20px;
      }

      /* --- Micro-Interactions Outreach Grid --- */
      .outreach-segment {
        padding: 10px;
        background-color: #eceded;
        border-radius: var(--radius);
        margin-top: 50px;
        color: #fff;
      }

      .outreach-segment h4 {
        color: #003366;
        margin-bottom: 5px;
        font-size: 18px;
      }

      .outreach-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
      }
      .outreach-links-grid1 {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
      }

      .outreach-links-grid a {
        background: rgba(255, 255, 255, 0.05);
        padding: 14px;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        font-size: 13.5px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
	  .outreach-links-grid-new a {
    background: rgba(255, 255, 255, 0.05);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    color: #334155 !important;
    border: 1px solid rgb(0 51 102);
}
      .outreach-links-grid1 a {
        background: rgba(255, 255, 255, 0.05);
        padding: 14px;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        font-size: 13.5px;
        color: #ffff;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .outreach-links-grid a:hover {
        background: #ffffff;
        color: var(--secondary);
        border-color: #fff;
      }
	  .outreach-links-grid-new a:hover {
    background: #003366;
    color: #ffff !important;
    border-color: #fff;
}
      .outreach-links-grid1 a:hover {
        background: #ffffff;
        color: var(--secondary);
        border-color: #fff;
      }

      /* --- Modular Testimonials System --- */
      .testimonials-section {
        margin: 30px 0;
      }
      .testimonials-section h2 {
        margin-bottom: 25px;
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .testimonial-card {
        background: #ffffff;
        border: 1px solid var(--border);
        padding: 35px;
        border-radius: var(--radius);
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
      }

      .testimonial-card p {
        font-style: italic;
        color: var(--text-main);
        font-size: 15px;
        margin-bottom: 15px;
      }

      .profile-info {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 25px;
        border-top: 1px solid var(--border);
        padding-top: 20px;
      }

      .profile-info img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
      }

      /* --- Global Corporate Footer --- */
      footer {
        background-color: var(--dark-color);
        color: #94a3b8;
        padding: 50px 0 5px 0;
        margin-top: 10px;
        font-size: 14px;
        border-top: 4px solid var(--primary);
      }

      .footer-top-links {
        text-align: center;
        padding-bottom: 25px;
        border-top: 1px solid #1e293b;
        margin-bottom: 5px;
        font-weight: 600;
      }

      .footer-top-links a {
        color: #f1f5f9;
        margin: 0 16px;
      }

      .footer-top-links a:hover {
        color: var(--primary);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        color: #ffffff;
        font-size: 16px;
        margin-bottom: 20px;
		text-transform: uppercase;
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column ul li {
        margin-bottom: 12px;
      }

      .footer-column ul li a:hover {
        color: #ffffff;
      }

      /* --- Interactive Modal Consultations System --- */
      .floating-form-trigger {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-dark);
        color: white;
        padding: 24px 14px;
        border-radius: var(--radius) 0 0 var(--radius);
        cursor: pointer;
        z-index: 1000;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-family: var(--font-header);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: -5px 5px 25px rgba(15, 23, 42, 0.15);
      }

      .floating-form-trigger i {
        transform: rotate(90deg);
      }

      .floating-form-trigger:hover {
        background: var(--secondary);
      }

      .form-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      .form-modal-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }

      .consultation-box {
        background: #ffffff;
        width: 100%;
        max-width: 460px;
        padding: 40px;
        border-radius: var(--radius);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        position: relative;
        max-height: 90vh;
        overflow-y: auto;
      }

      .close-modal-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--text-muted);
        cursor: pointer;
        background: var(--bg-light);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
      }

      .close-modal-btn:hover {
        background-color: #cbd5e1;
      }

      .consultation-box h3 {
        margin-bottom: 25px;
        text-align: center;
      }
	  
	  .consultation-box p {
        margin-bottom: 5px;
      }

      .consultation-box input,
      .consultation-box select,
      .consultation-box textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 5px;
        border: 1px solid var(--border);
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 14px;
        background: var(--bg-light);
      }

      .consultation-box input:focus,
      .consultation-box select:focus,
      .consultation-box textarea:focus {
        outline: none;
        border-color: var(--primary);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
      }

      .submit-btn {
        width: 100%;
		margin-top: 15px;
        padding: 16px;
        background: var(--primary-dark) !important;
        color: white;
        font-weight: 700;
        font-family: var(--font-header);
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 1px;
      }

      .submit-btn:hover {
        background-color: var(--secondary);
      }

      .contact-info-box {
        margin-top: 25px;
        padding: 20px;
        background: var(--bg-light);
        border-radius: 10px;
        font-size: 13.5px;
        border-left: 4px solid var(--accent-yellow);
      }

      /* ==========================================================================
         MOBILE ONLY SCREEN OVERRIDES (DESKTOP REMAINS COMPLETELY UNCHANGED)
         ========================================================================== */
		 
      @media (max-width: 767px) {
        /* Container safety grid spacing */
        .container {
          padding: 0 16px;
        }
		 header {
        background: linear-gradient(180deg, #9fc349 31%, #36566f 80%);
        border-bottom: 2px solid var(--primary);
      }

        /* Branding top-header spacing optimization */
        .header-top {
          flex-direction: column !important;
          text-align: center !important;
          gap: 16px !important;
          padding: 16px;
        }
        #logo img {
          margin: 0 auto;
          max-width: 200px;
        }
        #top-right {
			display: contents;
          text-align: center !important;
          width: 100% !important;
          font-size: 13px !important;
          padding: 12px !important;
          box-sizing: border-box;
        }

        /* Fixed Hamburger Layout System */
        .menu-toggle {
          display: flex !important;
        }
        .navbar-container {
          justify-content: flex-end !important;
          padding: 0 16px !important;
        }
        .nav-menu {
          display: none !important;
          flex-direction: column !important;
          position: absolute !important;
          top: 65px !important;
          left: 0 !important;
          width: 100% !important;
          background-color: #003366 !important;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
          z-index: 999 !important;
          padding: 0 !important;
        }
        .nav-menu.active {
          display: flex !important;
        }
        .nav-menu li {
          width: 100% !important;
        }
        .nav-menu li a {
          display: block !important;
          width: 100% !important;
          padding: 16px 20px !important;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
          box-sizing: border-box !important;
          background: none !important;
        }

        /* Typography sizing fixes for mobile viewports */
        .welcome-block h1 {
          font-size: 34px !important;
          line-height: 1.4 !important;
        }
        .welcome-block p {
          font-size: 15px !important;
        }
        .section-title {
          font-size: 22px !important;
          margin-bottom: 24px !important;
        }

        /* Column collapse overrides for Multi-column Grids */
        .treatments-grid {
          grid-template-columns: 1fr !important;
          gap: 12px !important;
        }
        .treatment-card {
          padding: 14px !important;
        }
        .new-intro-container {
          grid-template-columns: 1fr !important;
          gap: 24px !important;
          padding: 24px 16px !important;
        }
        .new-intro-image-wrapper h2 {
          font-size: 24px !important;
        }

        /* Framework blocks padding and spacing scale down */
        .why-india-section {
          padding: 24px 16px !important;
        }
        .why-india-section h2 {
          font-size: 24px !important;
        }
        .why-india-point-card {
          padding: 20px 16px !important;
        }
        .why-india-point-card ul {
          grid-template-columns: 1fr !important;
        }
        .feature-sheet {
          padding: 24px 16px !important;
        }
        .ui-styled-list {
          grid-template-columns: 1fr ;
          gap: 12px !important;
        }

        /* Structural interface grids wrapping configuration */
        .features-matrix,
        .hospitals-ui-grid,
        .outreach-links-grid,
        .outreach-links-grid1 {
          grid-template-columns: 1fr !important;
          gap: 14px !important;
        }
        .features-container,
        .hospitals-section,
        .countries-layout,
        .visa-frame,
        .process-flow-section {
          padding: 24px 16px !important;
          margin: 24px 0 !important;
        }
        .country-box h2 {
          font-size: 22px !important;
        }
        blockquote {
          padding: 16px !important;
          font-size: 14.5px !important;
        }
        .process-split-grid {
          grid-template-columns: 1fr !important;
          gap: 24px !important;
        }
        .timeline-vertical-flow {
          padding-left: 24px !important;
        }
        .timeline-vertical-flow::before {
          left: 6px !important;
        }
        .timeline-node-step::before {
          left: -31px !important;
          font-size: 15px !important;
        }

        /* Floating action component triggers styling */
        .floating-form-trigger {
          padding: 16px 10px !important;
          font-size: 11px !important;
          letter-spacing: 1px !important;
        }
        .consultation-box {
          padding: 24px 16px !important;
          margin: 12px !important;
          max-height: 85vh !important;
        }

     	p,ul,ol,blockquote{
	font-size: 14px !important;
    letter-spacing: -0.01em;
	font-weight: 500;
	}
	.ui-styled-list li {
	font-size: 14px !important;
    letter-spacing: -0.01em;
	font-weight: 500;}
	
	.testimonials-section {
    padding: 20px;
	}
	p.visa-process {
    font-size: 15px !important;
	font-weight: 800;
    letter-spacing: -0.02em;}
      }
	  .welcome-block h1 strong {
		  	  font-size: 35px;
			  }




.commitment-section {
  max-width: 900px;
  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: #c8102e;
  margin: 0 auto 24px;
  border-radius: 2px;
}

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


.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;
}

/* PHOTO */
.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;
}

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

/* RIGHT SIDE */
.dr-info{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding-top:4px; /* aligns badge line with top of photo frame */
}
.main-title{
  font-size:34px;
  font-weight:700;
  line-height:1.2;
  margin:0 0 14px;
  max-width:700px;
  color:#0A0B67;
}
.doctor-name{
  margin-top:0;
  text-align:center;
  font-family:'Playfair Display',serif;
  font-size:24px;
  font-weight:800;
  color:#0A0B67;
}

.dr-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 14px;
  border:1px solid #e0a458;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.03em;
  color:#1c2530;
  margin-bottom:18px;
}
.dr-badge i{ color:#e0a458; }

.dr-info h1{
  font-family:'Playfair Display',serif;
  font-weight:800;
  font-size:24px;
  margin:0 0 10px;
  color:#0A0B67;
}

.dr-subtitle{
  font-size:15px;
  line-height:1.35;
  color:#5b6b7b;
  max-width:520px;
  margin:0 0 14px;
}

.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-location i{ color:#e0a458; }

.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;
}

.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; }

.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-hero-wrap{
  padding:24px 0 6px;
  padding-left:16px;
}
.dr-hero{
  gap:16px;
}

.dr-photo-frame{
  max-width:220px;
  padding:4px;
}

.dr-info{
  padding-top:0;
}

.main-title{
  font-size:26px;
  margin:0 0 10px;
}

.dr-stats{
  gap:8px;
  margin-bottom:8px;
}
.dr-stat-card{
  padding:10px 14px;
  height:70px;
  border-radius:8px;
}
.dr-stat-number{
  font-size:19px;
}
.dr-stat-label{
  font-size:10px;
  margin-top:2px;
}

.dr-divider{
  margin:0 0 8px;
}
.dr-divider 
.dr-dot.active{
  width:40px;
}

.dr-contact{
  gap:8px;
}
.dr-contact-item{
  gap:6px;
}
.dr-icon-box{
  width:26px;
  height:26px;
  font-size:11px;
  border-radius:6px;
}
.dr-contact-label{
  font-size:9.5px;
  margin-bottom:0;
}
.dr-contact-value{
  font-size:12.5px;
}

.dr-stats{
  grid-template-columns:repeat(3, 200px);
  gap:10px;
  max-width:none;
}
.dr-stat-card{
  padding:10px 14px;
  height:70px;
}
.dr-contact-value a {
  color: inherit;
  text-decoration: none;
}

.dr-contact-value a:hover {
  color: #e0a458;
  
}
@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%; }
}


.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;
}

/* PHOTO */
.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;
}

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

/* RIGHT SIDE */
.dr-info{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding-top:4px; /* aligns badge line with top of photo frame */
}
.main-title{
  font-size:34px;
  font-weight:700;
  line-height:1.2;
  margin:0 0 14px;
  max-width:700px;
  color:#0A0B67;
}
.doctor-name{
  margin-top:0;
  text-align:center;
  font-family:'Playfair Display',serif;
  font-size:24px;
  font-weight:800;
  color:#0A0B67;
}

.dr-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 14px;
  border:1px solid #e0a458;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.03em;
  color:#1c2530;
  margin-bottom:18px;
}
.dr-badge i{ color:#e0a458; }

.dr-info h1{
  font-family:'Playfair Display',serif;
  font-weight:800;
  font-size:24px;
  margin:0 0 10px;
  color:#0A0B67;
}

.dr-subtitle{
  font-size:15px;
  line-height:1.35;
  color:#5b6b7b;
  max-width:520px;
  margin:0 0 14px;
}

.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-location i{ color:#e0a458; }

.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;
}

.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; }

.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-hero-wrap{
  padding:24px 0 6px;
  padding-left:16px;
}
.dr-hero{
  gap:16px;
}

.dr-photo-frame{
  max-width:220px;
  padding:4px;
}

.dr-info{
  padding-top:0;
}

.main-title{
  font-size:26px;
  margin:0 0 10px;
}

.dr-stats{
  gap:8px;
  margin-bottom:8px;
}
.dr-stat-card{
  padding:10px 14px;
  height:70px;
  border-radius:8px;
}
.dr-stat-number{
  font-size:19px;
}
.dr-stat-label{
  font-size:10px;
  margin-top:2px;
}

.dr-divider{
  margin:0 0 8px;
}
.dr-divider 
.dr-dot.active{
  width:40px;
}

.dr-contact{
  gap:8px;
}
.dr-contact-item{
  gap:6px;
}
.dr-icon-box{
  width:26px;
  height:26px;
  font-size:11px;
  border-radius:6px;
}
.dr-contact-label{
  font-size:9.5px;
  margin-bottom:0;
}
.dr-contact-value{
  font-size:12.5px;
}

.dr-stats{
  grid-template-columns:repeat(3, 200px);
  gap:10px;
  max-width:none;
}
.dr-stat-card{
  padding:10px 14px;
  height:70px;
}
.dr-contact-value a {
  color: inherit;
  text-decoration: none;
}

.dr-contact-value a:hover {
  color: #e0a458;
  
}
@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  {
    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  h4 {
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #81224a;
}
.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;        /* kills bullet.png */
    position: relative;                 /* needed for ::before to position */
    padding-left: 28px;
    margin-bottom: 12px;
}

.profile-ticks ul li::before {
    content: "";
    display: block;                     /* ADD THIS - makes it render */
    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;
}



  
.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;
}

  .footer-column .contact-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 15px;
      line-height: 1.5;
  }
  .footer-column .contact-row.alignment-top {
      align-items: flex-start; /* Aligns icons cleanly at the top line of text */
  }
  .footer-column .contact-icon {
      width: 18px;
      height: 18px;
      color: #33c5cc; 
      flex-shrink: 0;
  }
  
  /* Formats phone icon to align beautifully alongside the image */
  .standard-phone-icon {
      margin-top: 2px;
  }

  /* Precision sizing for the custom .gif image */
  .custom-whatsapp-img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      display: block;
  }
  
  /* Centers icons vertically relative to each other */
  .icon-group-vertical {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      padding-top: 2px;
  }

  /* Forces numbers to stack neatly "one-by-one" vertically */
  .numbers-column {
      display: flex;
      flex-direction: column;
      gap: 6px;
  }
  
  .footer-column .contact-row a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
  }
  .footer-column .contact-row a:hover {
      color: #cc3366; 
      text-decoration: underline;
  }
  .icons-group {
      display: flex; 
      align-items: center; 
      gap: 6px;
      flex-wrap: wrap;
  }
  .trust-disclaimer {
      color: #fff;
      padding: 15px;
      margin: 5px 0;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      line-height: 1.5;
  }

  /* Mobile Responsive Optimizations */
  @media (max-width: 768px) {
      .numbers-column {
		  flex-direction: row;
          font-size: 14px;
      }
  }

    /* Mobile-first overrides for the translated page */
    @media (max-width: 767px) {
      html, body {
        overflow-x: hidden;
      }

      .container {
        padding-inline: 16px;
      }

      .main-grid {
        padding: 28px 0 40px !important;
      }

      .breadcrumb-wrapper {
        padding: 10px 0;
      }

      .breadcrumb-container {
        padding-inline: 16px;
      }

      .breadcrumb-list {
        white-space: normal;
        line-height: 1.8;
      }

      .header-top {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
      }

      #top-right {
        width: 100%;
        text-align: center;
      }

      #top-right span {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 6px;
        margin-bottom: 10px;
      }

      .navbar-container {
        height: auto;
        min-height: 60px;
        padding: 0 16px;
      }

      .menu-toggle {
        margin-left: auto;
      }

      .nav-menu {
        top: 60px !important;
      }

      .nav-menu li a {
        text-align: center;
      }

      .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;
      }

      .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;
      }

      .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;
      }

      .profile-ticks,
      .commitment-section,
      .outreach-segment {
        margin-left: 0;
        margin-right: 0;
      }

      .commitment-section {
        max-width: 100%;
      }
    }

      @media (max-width: 980px) {
        .dr-hero {
          grid-template-columns: 1fr;
        }

        .dr-photo-frame {
          max-width: 300px;
        }

        .dr-stats {
          grid-template-columns: 1fr 1fr;
        }

        .dr-contact {
          grid-template-columns: 1fr;
        }

        .profile-ticks {
          gap: 20px;
        }

        .profile-ticks ul {
          min-width: 280px;
        }
      }

    @media (max-width: 480px) {
      .container {
        padding-inline: 14px;
      }

      .header-top {
        padding-inline: 14px;
      }

      .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;
      }
    }
