
      :root {
        --primary: #0284c7;
        --primary-dark: #0369a1;
        --secondary: #003366;
        --accent-yellow: #ffaf02;
        --dark-color: #0f172a;
        --bg-light: #f8fafc;
        --bg-card: #ffffff;
        --text-main: #334155;
        --text-muted: #64748b;
        --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: var(--text-main);
        background-color: #ffffff;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
      }

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

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }

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

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

      /* --- Yellow Header Top Section --- */
      header {
        background-color: var(--accent-yellow);
        border-bottom: 3px solid #e09900;
      }

      .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: 15px;
				line-height: 1.4;
        font-weight: 800;
        color: var(--secondary);
      }
      #top-right a {
        color: #003366;
        font-weight: 700;
      }
      #top-right a:hover {
        color: #003366;
      }
	  .icon-btn i {
    font-size: 20px;
	margin-top: 2px;
}

      /* --- Navigation Menu Bar --- */
      .navbar {
        background-color: var(--secondary);
        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: rgba(255, 255, 255, 0.08);
        color: var(--accent-yellow);
      }

      /* --- Refactored Adaptive Mobile Menu Button Toggle --- */
      .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: white;
        border-radius: 2px;
        transition:
          transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.3s ease;
        position: absolute;
      }

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

      /* Animation Transformation into dynamic 'X' close indicator */
      .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);
      }

      /* --- Banner Area (Full Width Mode) --- */
      .banner-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
      }
      .banner-section img {
        width: 100%;
        height: auto;
        border-radius: 0;
      }

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

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

      .welcome-block h1 {
        font-size: 35px;
        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(--accent-yellow);
        border-radius: 4px;
      }

      .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(--dark-color);
        font-size: 16px;
        font-family: var(--font-header);
      }

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

      /* Refined Introduction Section Layout */
      .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) {
	.floating-form-trigger.openFormBtn{
		top: 75%;
	}
  .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: #93c5fd;
        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: var(--accent-yellow);
        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);
      }

      .timeline-node-step::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;
      }

      /* --- Styled System Lists --- */
      .feature-sheet {
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 50px 40px;
        border-radius: 20px;
        margin: 40px 0;
        border-left: 6px 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);
      }

      .ui-styled-list li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #10b981;
        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: 28px;
        border-radius: var(--radius);
        border-top: 4px solid var(--accent-yellow);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
      }

      .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: 24px;
        color: #78350f;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .country-box p {
        color: #57534e;
        margin-bottom: 16px;
        text-align: justify;
      }

      blockquote {
        background: #ffffff;
        border-left: 5px solid var(--accent-yellow);
        padding: 24px;
        margin: 30px 0;
        font-style: italic;
        border-radius: 0 var(--radius) var(--radius) 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        color: #1e293b;
      }

      /* --- Affiliated Hospital Networks UI Grid --- */
      .hospitals-section {
        background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 50px 40px;
        border-radius: 20px;
        margin: 40px 0;
        border: 1px solid #cbd5e1;
      }

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

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

      .hospital-card-link {
        display: flex;
        align-items: center;
        gap: 14px;
        background: var(--bg-card);
        padding: 16px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-weight: 600;
        font-size: 14px;
      }

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

      /* --- Archival Visa Frame Layout --- */
      .visa-frame {
        border: 2px dashed #94a3b8;
        padding: 45px;
        border-radius: var(--radius);
        background: var(--bg-light);
        margin: 40px 0;
      }

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

      /* --- High-Quality Modular Testimonial Profiles --- */
      .testimonials-section {
        margin: 60px 0;
      }

      .testimonials-section h2 {
        color: var(--secondary);
        margin-bottom: 30px;
      }

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

      @media (min-width: 768px) {
        .testimonials-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .main-grid {
          padding: 10px 10px !important;
        }
      }

      .testimonial-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 30px;
        border-radius: var(--radius);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      }

      .profile-info {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
      }

      .profile-info img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
      }

      .profile-info h4 {
        font-size: 16px;
        color: var(--secondary);
      }

      .testimonial-card p {
        font-style: italic;
        color: var(--text-muted);
        font-size: 14.5px;
        text-align: justify;
      }

      /* --- Locations Interface System --- */
      .outreach-segment {
            padding: 10px;
    background-color: #eceded;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 45px;
      }

      .outreach-segment h4 {
            margin-bottom: 5px;
          font-size: 18px;
        color: var(--secondary);
      }

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

      .outreach-links-grid a {
        background: #ffffff;
        padding: 12px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        border: 1px solid #edf2f7;
      }

      .outreach-links-grid a:hover {
        border-color: var(--primary);
        color: var(--primary);
      }

      /* --- System Footer --- */
      footer {
        background-color: #425379;
        color: #fff;
        padding: 60px 0 5px 0;
        margin-top: 80px;
        font-size: 14px;
      }

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

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

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

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 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;
      }

      /* --- Action Floating Consultation Overlay --- */
      .floating-form-trigger {
        position: fixed;
        right: 0;
        top: 70%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #003366 0%, #0284c7 100%);
        color: white;
        padding: 22px 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(0, 0, 0, 0.15);
      }

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

      .floating-form-trigger:hover {
        background: linear-gradient(135deg, #0284c7 0%, #003366 100%);
      }

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

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

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

      .close-modal-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 20px;
        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;
        font-size: 24px;
        color: var(--secondary);
      }

      .consultation-box input,
      .consultation-box select,
      .consultation-box textarea {
        width: 100%;
        padding: 14px 16px;
        margin-bottom: 16px;
        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(--secondary) !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: #002244;
      }

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

      .contact-info-box p {
        margin-bottom: 8px;
      }

      /* --- Responsive Breakpoints --- */
      @media (max-width: 767px) {
        .main-grid {
          padding: 10px 10px !important;
        }
        .container {
          padding-left: 16px;
          padding-right: 16px;
        }
        .header-top {
          flex-direction: column;
          text-align: center;
          gap: 16px;
        }
        #logo img {
          max-width: 180px;
          width: 100%;
          height: auto;
        }
        #top-right {
		  padding: 5px 9px !important;
          text-align: center;
          width: 100%;
        }
		 #top-right span {
				gap: 5px;
				margin-bottom: 12px;
		 font-size: 13px; 
			 flex-wrap: wrap;
			 justify-content: center;
		 }
		  #top-right .email-span{
				padding: 0 25px !important; 
		 }
        .menu-toggle {
          display: flex;
        }
        .navbar-container {
          justify-content: flex-end;
        }
        .nav-menu {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 60px;
          left: 0;
          width: 100%;
          background: var(--secondary);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          z-index: 999;
        }
        .nav-menu.active {
          display: flex;
        }
        .nav-menu li {
          width: 100%;
        }
        .nav-menu li a {
          padding: 14px 16px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb-container {
          padding: 0 16px;
        }
        .breadcrumb-item {
          font-size: 12px;
          line-height: 1.45;
        }
        .welcome-block h1 {
          font-size: 28px;
        }
        .features-container,
        .hospitals-section,
        .feature-sheet,
        .countries-layout,
        .visa-frame,
        .new-intro-container,
        .why-india-section,
        .process-flow-section {
          padding: 30px 20px;
        }
        .new-intro-badge-container {
          grid-template-columns: 1fr;
        }
    .new-intro-container,
    .why-india-section,
    .process-flow-section,
    .feature-sheet,
    .countries-layout,
    .hospitals-section,
    .visa-frame,
    .commitment-section {
      padding: 24px 16px;
    }
    .section-title,
    .features-container h2,
    .hospitals-section h2,
    .testimonials-section h2,
    .why-india-section h2 {
      font-size: 24px;
    }
    .treatments-grid,
    .features-matrix,
    .hospitals-ui-grid,
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .ui-styled-list-new {
      grid-template-columns: 1fr !important;
    }
    .profile-ticks {
      flex-direction: column;
      gap: 18px;
    }
    .profile-ticks ul {
      min-width: 0;
      width: 100%;
    }
    .profile-ticks ul li {
      padding-left: 24px;
    }
    .dr-hero-wrap {
      padding-left: 0;
      padding-right: 0;
    }
    .dr-photo-frame {
      max-width: 260px;
    }
    .dr-info h1 {
      font-size: 24px;
    }
    .dr-stat-card {
      padding: 14px 16px;
    }
    .dr-contact {
      gap: 12px;
    }
    .treatment-card {
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
    }
    .footer-grid {
      gap: 24px;
    }
    .floating-form-trigger {
      top: auto;
      bottom: 86px;
      right: 12px;
      left: auto;
      transform: none;
      writing-mode: horizontal-tb;
      text-orientation: initial;
      border-radius: 999px;
      padding: 12px 16px;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .floating-form-trigger i {
      transform: none;
    }
    .form-modal-overlay {
      padding: 16px;
      align-items: flex-end;
    }
    .consultation-box {
      max-width: 100%;
      max-height: calc(100vh - 32px);
      padding: 28px 16px 20px;
      border-radius: 18px 18px 0 0;
    }
    .close-modal-btn {
      top: 12px;
      right: 12px;
    }
		.welcome-block p {
    padding: 10px;
    }
	
	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;}
	.new-intro-container {
		    gap: 10px;
	}

      }

      @media (max-width: 480px) {
        .welcome-block h1 {
          font-size: 24px;
        }
        .main-title {
          font-size: 22px;
        }
        .section-title,
        .features-container h2,
        .hospitals-section h2,
        .testimonials-section h2,
        .why-india-section h2 {
          font-size: 22px;
        }
        .dr-stats {
          gap: 10px;
        }
        .dr-stat-card {
          min-height: 80px;
          padding: 12px 14px;
        }
        .dr-contact-item {
          align-items: flex-start;
        }
        .floating-form-trigger {
          bottom: 78px;
          right: 10px;
          padding: 11px 14px;
          font-size: 11px;
        }
      }
}
      




.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-stats{ grid-template-columns:1fr; }
  .dr-contact{ grid-template-columns:1fr; }
  .dr-stat-card{ height:auto; min-height:88px; }
}



	

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




      .scroll-top-btn {
        position: fixed;
        bottom: 25px;
        right: 20px;
        width: 45px;
        height: 45px;
        background-color: var(--primary, #0284c7);
        color: #ffffff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
      }
      .scroll-top-btn:hover {
        background-color: var(--primary-dark, #0369a1);
        transform: translateY(-3px);
      }
      @media (max-width: 767px) {
        .scroll-top-btn {
          bottom: 20px;
          right: 5px;
          width: 40px;
          height: 40px;
          font-size: 16px;
        }
      }

