/* Custom CSS for AXON ADHD Website */

:root {
  --primary-color: #256acc;
  --primary-dark: #357abd;
  --secondary-color: #00695c;
  --light-blue: #e3f2fd;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
  --bg-Steel: rgba(62, 84, 115, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.navbar {
  transition: all 0.3s ease;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-item {
  font-family: "Inter", sans-serif;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Mobile view navbar item bottom border */
@media (max-width: 992px) {
  .navbar-nav .nav-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
  }

  .dropdown-menu .dropdown-item {
    border-bottom: none !important;
  }
}

/* Hero Section */
.hero-section {
  /* padding: 120px 0 40px; */
  background: linear-gradient(101.38deg, #f4f9ff 0%, #e5f0fe 100%) !important;
  /* height: 600px; */
  align-content: center;
}

/* FIX: Remove fixed height on mobile so image doesn't overlap */
@media (max-width: 991px) {
  .hero-section {
    height: auto !important;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    /* width: 11.333%; */
  }
}

.bg-white {
  --bs-bg-opacity: 1;
  background: rgba(255, 255, 255, 1);

  width: 100%;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fixed hero image responsiveness */
.hero-images img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.custom-tag {
  color: rgba(38, 127, 253, 1);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 120%;
}

.hero-heading {
  color: rgba(11, 37, 75, 1);
  font-family: "Geist", sans-serif;
  font-size: 32px !important;
  font-weight: 500 !important;
  line-height: 120% !important;
}

.hero-para {
  color: rgba(11, 37, 75, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6;
}

.heroimg {
  margin-top: 12px;
}

.Trusted {
  color: rgba(136, 141, 146, 1);
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 120% !important;
  text-align: center;
  /* margin-top: 100px !important; */
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .hero-images {
    height: auto;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-images {
    height: auto;
  }

  .hero-images img {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-images img {
    max-width: 100%;
  }
}

/* Partners Section */
.logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  gap: 50px;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 27px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* 🛑 Hover केल्यावर scroll थांबेल */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.our {
  font-size: 32px;
  font-weight: 600 !important;
  color: rgba(14, 20, 27, 1);
  font-family: "Geist", sans-serif;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.my-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(48, 53, 58, 1);
  font-family: "Inter", sans-serif;
  text-align: center;
}
.my-titlee {
  font-size: 15px;
  font-weight: 400;
  color: rgba(94, 105, 117, 1);
  font-family: "Ek Mukta", sans-serif;
  text-align: center;
}

.service-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(51, 56, 64, 1);
  font-family: "Inter", sans-serif;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important; */
}

.feature-icon,
.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.5rem !important;
  }
}

.pp {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 10px;
  margin: 0 auto;
}

.feature-icon .fs-1 {
  font-size: 1.5rem !important;
}

.Comprehensive {
  color: rgba(112, 119, 125, 1) !important;
  font-size: 18px;
  font-weight: 400;
  font-family: "Ek Mukta", sans-serif;
}

.fw-boldd {
  color: rgba(16, 24, 40, 1);
  font-size: 16px;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.adhs {
  background: rgba(246, 248, 251, 1);
  /* padding: 88px; */
  margin-top: 20px;
}

.Diagnosis {
  color: rgba(48, 53, 58, 1);
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  text-align: center;
  /* margin-top: 95px; */
}

/* Step layout styling */
.steps-section {
  background: #ffffff;
}

/* Step card */
.step-card {
  padding: 10px;
  text-align: center;
}

/* Round number */
.step-number {
  width: 72px;
  height: 72px;
  background: rgba(242, 246, 249, 1);
  border-radius: 80px;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 600;
  color: rgba(49, 71, 92, 1);
  display: flex;
  font-family: "Geist", sans-serif;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.step-number span {
  font-size: 12px;
  color: rgba(112, 119, 125, 1);
  font-weight: 400;
}

/* Title + Description */
.step-title {
  font-weight: 500;
  font-size: 18px;
  color: rgba(30, 36, 42, 1);
  font-family: "Inter" !important;
}

.step-desc {
  color: rgba(93, 97, 105, 1);
  font-weight: 400;
  font-size: 16px;
  font-family: "Inter" !important;
}

/* Step Images */
.step-image {
  /* width: 100%; */
  border-radius: 16px;
  color: rgba(232, 242, 255, 1);
}

@media (max-width: 576px) {
  .step-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .step-image {
    width: 100%;
  }
}

.section-divider {
  border: none;
  height: 2px;
  background-color: #ccc;
  margin: 20px 0;
}

.start {
  background: rgba(33, 103, 195, 1);
  border: 1px solid rgba(33, 103, 195, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  gap: 8px;
}
.not {
  font-size: 18px;
  font-weight: 500 !important;
  font-family: "Geist", sans-serif;
  color: rgba(14, 20, 27, 1);
  gap: 10px;
  margin-top: 30px;
}

.Ready {
  font-size: 28px;
  font-weight: 500 !important;
  font-family: "Geist", sans-serif;
  color: rgba(255, 255, 255, 1);
}

.Ready1 {
  font-size: 16px;
  font-weight: 400 !important;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 1);
}
/* ------- ARROW BETWEEN STEPS (Exact like your uploaded image) ------- */

.arrow-line {
  position: absolute;
  top: 50px; /* aligns with the center of the round step badge */
  right: -46px; /* space between circles */
  width: 60px; /* arrow line */
  height: 2px;
  background: rgba(152, 171, 197, 1);
  border-radius: 5px;
}

.arrow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(152, 171, 197, 1);
  border-right: 2px solid rgba(152, 171, 197, 1);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* Hide arrows on mobile */
@media (max-width: 992px) {
  .arrow-line {
    display: none;
  }
}

/* Steps Section */
.steps-section {
  padding: 80px 0;
}

.step-card {
  padding: 20px;
}

/* CTA Banners */
.cta-banner-1,
.cta-banner-2,
.blue-banner,
.dark-teal-banner {
  padding: 80px 0;
}

.cta-banner-2 {
  background: rgba(239, 246, 255, 1);
  padding: 64px 120px 48px 120px;
  gap: 32px !;
}

.Frequently {
  color: rgba(30, 36, 42, 1);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
.help {
  color: rgba(136, 141, 146, 1);
  font-family: "Ek Mukta", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.blue-banner {
  background: linear-gradient(135deg, #256acc 0%, #1a4d99 100%);
}

/* Why Diagnosis Matters Section */
/* .diagnosis-matters {
   padding: 80px 0; 
} */

.diagnosis-card {
  border: 1px solid #e0e0e0 !important;
  transition: all 0.3s ease;
  height: 100% !important;
  border: 1px solid rgba(215, 221, 230, 1) !important;
  border-radius: 16px !important;
  /* padding: 32px !important; */
  gap: 28px;
}

/* .Diagnosis {
  color: rgba(48, 53, 58, 1);
  font-family: "Inter" sans-serif !important;
  font-weight: 400;
  font-size: 16px;
} */

.Diagnos {
  color: rgba(136, 141, 146, 1);
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  font-size: 16px;
}
.Diagnosiss {
  color: rgba(30, 36, 42, 1);
  font-family: "Inter", sans-serif !important;
  font-weight: 600;
  font-size: 20px;
}
.Diagnosish {
  color: rgba(14, 20, 27, 1) !important;
  font-family: "Geist", sans-serif !important;
  font-weight: 600;
  font-size: 32px;
}
/* 
.diagnosis-card:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(37, 106, 204, 0.1);
} */

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.Testimonialstext {
  color: rgba(122, 112, 125, 1) !important;
  font-family: "Ek Mukta", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  margin-top: -34px;
}

.testimonials-section .card {
  height: 100%;
  border: 1px solid rgba(213, 219, 230, 1) !important;
  background: white;
}

.testimonials-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  /* ⭐ Scrollbar hidden */
  scrollbar-width: none; /* Firefox */
}

.testimonials-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Remove old scrollbar styling (no longer needed)
.testimonials-scroll-container::-webkit-scrollbar-track {}
.testimonials-scroll-container::-webkit-scrollbar-thumb {}
.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {}
*/

.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  padding: 10px 0;
}

.testimonial-card {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .testimonials-scroll {
    gap: 1rem;
  }

  .testimonial-card .card {
    width: 280px !important;
  }
}

.Readyfor {
  font-family: "Geist", sans-serif !important;
  font-size: 32px;
  font-weight: 600 !important;
  color: rgba(14, 20, 27, 1);
}
.Readyforf {
  font-family: "Ek Mukta", sans-serif !important;
  font-size: 18px;
  font-weight: 400 !important;
  color: rgba(125, 122, 112, 1);
}

/* FAQ Section Styles */
/* FAQ Title */
.faq-heading {
  font-size: 32px;
  font-weight: 600;
  color: rgba(30, 36, 42, 1);
  font-family: "Roboto", sans-serif;
}

.faq-subtitle {
  font-size: 16px;
  color: rgba(136, 141, 146, 1);
  font-weight: 400;
  font-family: "Ek Mukta", sans-serif;
}

/* FAQ Item Container */
.faq-item {
  border: 1px solid rgba(192, 214, 233, 1);
  border-radius: 12px;
  background: rgba(244, 247, 250, 1);
  margin-bottom: 16px;
  transition: 0.2s ease;
}

/* Plus (+) icon */
.faq-btn.collapsed::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 33px; /* perfect size */
  font-weight: 300; /* thin like Figma */
  color: rgba(30, 36, 42, 1);
  line-height: 1; /* vertical perfect alignment */
}

/* Active (open) style — Like Image #2 */
.faq-btn:not(.collapsed) {
  background: rgba(244, 247, 250, 1) !important;
  color: rgba(244, 247, 250, 1);
  border-left: 4px solid #2563eb;
  border-radius: 12px 12px 0 0;
}

/* X icon when opened */
.faq-btn::after {
  content: "×";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 33px;
  font-weight: 300;
  color: rgba(30, 36, 42, 1);
  line-height: 1;
}

/* Remove outline */
.faq-btn:focus {
  box-shadow: none;
}

/* FAQ Body (Answer Box) */
.faq-body {
  padding: 18px 24px;
  color: rgba(82, 94, 111, 1);
  line-height: 1.7;
  background: rgba(244, 247, 250, 1) !important;
  font-size: 15px;
  border: none !important;
  position: relative;
  font-size: 16px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
}

/* Hover: button + icon both change color AND background */
.faq-item:hover .faq-btn.collapsed {
  background: rgba(82, 94, 111, 1) important; /* light blue shade (same as first image) */
  color: rgba(51, 122, 183, 1) !important;
}

/* Hover: plus icon color change */
.faq-item:hover .faq-btn.collapsed::after {
  color: rgba(51, 122, 183, 1) !important;
}

/* FAQ Section Styles end */

.Teal {
  background: linear-gradient(92.15deg, #173742 1.81%, #3b8da8 149.07%);
  padding: 64px 120px 48px 120px;
  gap: 40px;
  margin-bottom: 57px;
}
.Teall {
  color: rgba(255, 255, 255, 1);
  font-weight: 600 !important;
  font-size: 32px;
  font-family: "Geist", sans-serif !important;
}

.Discover {
  color: rgba(216, 233, 239, 1);
  font-weight: 400;
  font-size: 16px;
  font-family: "EK Mukta", sans-serif !important;
}
/* Contact Section Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: #334155;
}

.contact-section {
  background: linear-gradient(117.2deg, #ebf1f8 0.01%, #efefef 173.66%);
  padding: 104px 88px 104px 88px;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--Grey-10, rgba(43, 43, 43, 1));
  font-family: "Geist", sans-serif;
}

.contact-section .lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--Grey-08, rgba(80, 80, 80, 1));
  font-family: "Ek Mukta", sans-serif;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(232, 242, 255, 1);
}

.feature-icon img {
  object-fit: contain;
}

.feature-text {
  flex: 1;
}

.feature-text strong {
  color: var(--Grey-09, rgba(57, 57, 57, 1));
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

/* Support Box */
.support-box {
  border-radius: 12px;
  padding: 14px;
  margin-top: 2rem;
  background: rgba(155, 155, 155, 0.1);
  border: 1px solid var(--Stroke-04, rgba(209, 209, 214, 1));
  width: 50%;
}

@media (min-width: 320px) and (max-width: 767.98px) {
  .support-box {
    width: 100%;
  }
}

.support-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.support-email {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.support-email:hover {
  color: #2563eb;
}

.support-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-subtitle strong {
  color: #1e293b;
}

/* Form Elements */
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444;
}

.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

/* Input with Icon */
.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.input-icon-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.input-with-icon .form-control {
  padding-left: 2.75rem;
}

.input-with-icon .input-icon-right ~ .form-control {
  padding-left: 1rem;
  padding-right: 2.75rem;
}

/* Submit Button */
.btn-primary {
  background: #2563eb;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Form Footer */
.form-footer-text {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-top: 1rem;
}

.form-footer-text a {
  color: #2563eb;
  text-decoration: none;
}

.form-footer-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-form-card {
    margin-top: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer-section {
  background: linear-gradient(81.25deg, #061a36 0.51%, #1d3c67 100%);
  color: white;
  font-family: "Inter", sans-serif;
  padding-top: 75px !important;
  text-align: left !important;
}

/* Text Common */
.footer-link,
.footer-about-text,
.footer-about-text1,
.footer-news-text,
.footer-contact,
.footer-bottom-text {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 2.3;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* Titles */
.footer-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: rgba(232, 242, 255, 1);
}

.footer-news-text {
  line-height: 1.6;
  font-size: 14px;
}

.footer-contact {
  line-height: 1.6;
}

/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Newsletter email */
.footer-email {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(208, 212, 215, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 14px;
  border-radius: 6px;
}

/* Subscribe Button */
.footer-btn {
  background: #256acc;
  border: 1px solid #256acc;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

/* Divider */
.footer-divider {
  border-color: rgb(144, 139, 232);
}

/* Icons */
.footer-icon {
  color: white;
  margin-left: 10px;
}

.footer-icon:hover {
  opacity: 0.8;
}

/* Bottom Text */
.footer-bottom-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
}

.footer-about-text1 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: rgba(160, 165, 169, 1);
  padding-right: 50px;
}

/* FOOTER MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .footer-section {
    text-align: left !important;
  }

  .footer-about,
  .footer-links,
  .footer-company,
  .footer-newsletter {
    text-align: left !important;
    margin-bottom: 20px;
  }

  .footer-input-group {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .footer-input-group input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    text-align: left;
  }

  .footer-bottom .col-md-4 {
    margin-bottom: 15px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-icon i {
    font-size: 22px;
  }

  .footer-certifications {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 15px;
  }

  .footer-about-text,
  .footer-news-text,
  .footer-link,
  .footer-contact {
    font-size: 13px;
  }

  .footer-input-group {
    width: 100%;
  }

  .footer-bottom-text {
    font-size: 12px;
  }

  .footer-bottom-links span {
    display: none;
  }

  .footer-bottom-links a {
    display: block;
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .footer-certifications img {
    height: 35px;
  }

  .footer-icon i {
    font-size: 20px;
  }

  .footer-email {
    font-size: 13px;
  }
}

/* Scroll To Top Button */
.scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: #0e223f;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.scroll-btn.show {
  opacity: 1;
  visibility: visible;
  border-radius: 9px;
}

.scroll-btn:hover {
  background: #1a3861;
}

/* Buttons */
.btn {
  border-radius: 8px;
  /* padding: 0.75rem 1.5rem; */
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 16px;
  background: rgba(37, 106, 204, 1);
  border: 1px solid rgba(37, 106, 204, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
}

.btn-primary:hover {
  background: rgba(102, 156, 228, 1);
  border: 1px solid rgba(102, 156, 228, 1);
}

.btn-primary:active {
  border: 1px solid rgba(16, 69, 141, 1);
  background: rgba(16, 69, 141, 1);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 10px 16px;
  border: 1px solid rgba(37, 106, 204, 1);
  background: rgba(239, 246, 255, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
}

.btn-outline-primary:hover {
  border: 1px solid rgba(37, 106, 204, 1);
  background: rgba(248, 251, 255, 1);
}

.btn-outline-primary:active {
  border: 1px solid rgba(16, 69, 141, 1);
  background: rgba(232, 242, 255, 1);
}

.btn-outline-primary.no-hover:hover,
.btn-outline-primary.no-hover:focus,
.btn-outline-primary.no-hover:active {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: none;
  box-shadow: none;
}

/* .btn-lg {
  font-size: 1.1rem;
} */

/* Typography */
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  line-height: 1.2;
}

.BlueBanner {
  background: linear-gradient(91.82deg, #256acc 23.38%, #133566 101.8%);
  gap: 80px !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Fix padding in responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }

  .navbar .d-flex {
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .hero-section .row {
    text-align: center;
  }

  .hero-images {
    margin-top: 40px;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .navbar-nav {
    text-align: left;
  }

  .navbar .d-flex {
    flex-direction: column;
    width: 100%;
  }

  .navbar .d-flex .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .display-6 {
    font-size: 1.5rem;
  }

  .hero-images {
    height: auto;
  }

  .hero-images img {
    max-width: 80%;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .services-section,
  .steps-section,
  .testimonials-section,
  .faq-section,
  .blog-section,
  .contact-section {
    padding: 60px 0;
  }

  .cta-banner-1,
  .cta-banner-2,
  .blue-banner,
  .dark-teal-banner {
    padding: 60px 0;
  }

  .partner-logo {
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0 30px;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .display-6 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-images {
    height: auto;
  }

  .btn {
    margin-bottom: 0.5rem;
  }

  .navbar-brand span {
    display: none;
  }

  .d-flex.gap-3 {
    flex-direction: column;
  }

  .d-flex.gap-3 .btn {
    width: 100%;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form validation */
.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #28a745;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* blog  */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: #334155;
  background-color: #f8f9fa;
}

.blog-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.blog-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.blog-section .lead {
  font-size: 18px;
  color: #64748b !important;
  margin: 0 auto;
}

.ii {
  margin-right: 15px;
}
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d9d9;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-category {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-category.education {
  background: rgba(232, 242, 255, 1);
  color: rgba(37, 106, 204, 1);
}

.blog-category.lifestyle {
  background-color: #ccfbf1;
  color: #0f766e;
}

.blog-category.treatment {
  background-color: #dbeafe;
  color: #1e40af;
}

.blog-date {
  font-size: 0.85rem;
  color: #64748b;
}

.blog-title {
  font-size: 16px;
  font-weight: 400;
  color: rgba(16, 24, 40, 1);
  line-height: 24px;
  font-family: "Arial", sans-serif;
}

.blog-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-link {
  color: rgba(37, 106, 204, 1);
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  font-family: "Arial", sans-serif !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 2rem;
  }

  .blog-image-wrapper {
    height: 200px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.Latest {
  font-weight: 600 !important;
  font-size: 32px !important;
  color: rgba(14, 20, 27, 1) !important;
  font-family: "Geist", sans-serif;
}
.Latestt {
  font-weight: 400;
  font-size: 18px !important;
  color: rgba(112, 119, 125, 1) !important;
  font-family: "EK Mukta", sans-serif;
}

/* CTA Banner 2 - Circle Decorations */
.cta-banner-2 {
  position: relative;
  overflow: hidden;
  background: rgba(239, 246, 255, 1);
}

/* Multiple concentric circles centered */
.circle-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-1 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(178, 213, 231, 0.5);
}

.circle-2 {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(178, 213, 231, 0.5);
}

.circle-3 {
  width: 350px;
  height: 350px;
  border: 1px solid rgba(178, 213, 231, 0.5);
}

.circle-4 {
  width: 450px;
  height: 450px;
  border: 1px solid rgba(178, 213, 231, 0.5);
}

.cta-banner-2 .container {
  position: relative;
  z-index: 10;
}

/* Diagnosis Section - Left Aligned Content */
.diagnosis-card {
  text-align: left !important;
}

.diagnosis-card .benefit-icon {
  text-align: left;
  margin-bottom: 1rem;
}

.diagnosis-card .benefit-icon i {
  display: inline-block;
}

.diagnosis-card h5 {
  text-align: left;
}

.diagnosis-card p {
  text-align: left;
}

.circle-bg {
  position: relative;
  overflow: hidden;
}

/* Bottom-origin curved circles */
.circle-bg::after {
  content: "";
  position: absolute;
  bottom: -20%; /* circles circle cha center खाली नेतो */
  right: -10%; /* थोडं right ला */
  width: 60%;
  height: 150%;
  pointer-events: none;

  background-image: repeating-radial-gradient(
    circle at 100% 100%,
    /* CIRCLE CENTER = bottom-right */ rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px,
    transparent 55px /* circle gap like screenshot */
  );

  /* left fade */
  mask: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 20%,
    black 60%
  );

  opacity: 0.9;
}

.ff {
  color: rgba(74, 85, 101, 1) !important;
  font-size: 14px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
}

.adhss {
  background: rgba(248, 251, 255, 1);
}

.startbtn {
  padding: 12px 20px 12px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
.takebtn {
  padding: 10px 30px 16px 28px;
  background: rgba(239, 246, 255, 1);
  border: 1px solid rgba(37, 106, 204, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 18px;
  font-weight: 500;
  color: rgba(37, 106, 204, 1);
  border-radius: 6px;
}

@media (max-width: 576px) {
  .takebtn {
    padding: 0 !important;
  }
}

.stratbtn {
  background: rgba(37, 106, 204, 1);
  border: 1px solid rgba(37, 106, 204, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 12px 20px 12px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
}

/* Accordion wrapper box */
.faq-item {
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: none;
}

/* Question button */
/* Each FAQ Box with border */
.faq-item {
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #dbe3f0; /* NORMAL BORDER */
}

/* Question button */
.faq-btn {
  width: 100%;
  background: rgba(244, 247, 250, 1);
  border: 1px solid rgba(192, 214, 233, 1) !important;
  border: none !important;
  padding: 18px 20px !important;
  font-size: 18px;
  font-weight: 500;
  color: #0e141b !important;
  text-align: left;
  position: relative;
  box-shadow: none !important;
  font-family: "Roboto", sans-serif !important;
}

.faq-body::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #256acc;
  border-radius: 2px;
}

.btn2 {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 12px 20px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.services-section .card {
  --bs-card-bg: none !important;
}

/* Pricing section */
/* Outer container – overflow hide so items slide inside */
.testimonials-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-scroll {
  display: flex;
  gap: 25px;
  animation: testimonialSlide 35s linear infinite;
  will-change: transform; /* smooth animation */
}

.testimonials-scroll:hover {
  animation-play-state: paused;
  border: 1px salmon;
}

@keyframes testimonialSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
}

/* Mobile speed fix */
@media (max-width: 768px) {
  .testimonials-scroll {
    animation: testimonialSlide 15s linear infinite !important;
  }
}

.dd {
  color: rgba(14, 20, 27, 1);
  font-family: "Geist", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
/* Pricing section end*/

/* contact buttton css  */
.toggle-btn-box {
  display: inline-flex;
  padding: 4px;
  border-radius: 14px;
  gap: 6px;
  background: rgba(223, 231, 242, 1);
  border: 1px solid rgba(245, 245, 245, 1);

  /* RESPONSIVE FIX */
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 6px 18px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: rgba(73, 80, 86, 1);
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 400;
  font-family: "Inter", sans-serif !important;
  font-size: 16px;

  white-space: nowrap;
}

/* Active State */
.toggle-btn.active {
  color: rgba(37, 106, 204, 1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 3px rgba(16, 23, 40, 0.1);
}

/* Hover State = active look */
.toggle-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 3px rgba(16, 23, 40, 0.1);
  color: rgba(37, 106, 204, 1);
}

/* EXTRA RESPONSIVE FIX FOR SMALL SCREENS */
@media (max-width: 480px) {
  .toggle-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .toggle-btn-box {
    gap: 4px;
    padding: 3px;
  }
}

.Ready2 {
  color: var(--Grey-10, rgba(43, 43, 43, 1));
  font-size: 32px;
  font-weight: 600 !important;
  font-family: "Geist", sans-serif;
}

/* hero strat */
/* ============================
   RATING BOX MAIN WRAPPER
============================ */
.rating-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* ============================
   TRUSTPILOT ICON
============================ */
.trust-star {
  height: auto;
}

/* ============================
   STARS + RATING TEXT (COLUMN)
============================ */
.rating-stars-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 6px; /* ⭐ perfect spacing between stars & rating text */
  margin-top: -3px; /* stars thode var yetat */
}

/* STAR ICONS */
.stars-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star-icon {
  font-size: 20px;
  color: #fbbf24;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* RATING TEXT BELOW STARS */
.rating-text {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}

/* ============================
   DIVIDER
============================ */
.divider {
  width: 1px;
  height: 22px;
  background: #d0d7e2;
}

/* ============================
   PATIENT AVATARS
============================ */
.patients-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.patients-text {
  font-size: 16px;
  font-weight: 500;
  color: #1e242a;
  font-family: "Inter", sans-serif;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 576px) {
  .rating-box {
    flex-wrap: wrap;
    gap: 12px;
  }

  .rating-stars-box {
    gap: 4px; /* mobile वर balanced spacing */
  }

  .divider {
    display: none;
  }
}

/* hero section  */
.custom-tag {
  display: inline-block;
  background: linear-gradient(90deg, #48a258 0%, #256acc 100%);
  color: #ffffff !important;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ===========================
      RESPONSIVE 
=========================== */
@media (max-width: 768px) {
  .custom-tag {
    font-size: 13px;
    padding: 5px 16px;
  }
}

@media (max-width: 576px) {
  .custom-tag {
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 40px;
  }
}

.adhsss {
  background: linear-gradient(101.38deg, #f4f9ff 0%, #e5f0fe 100%) !important;
}

.what {
  background: rgba(246, 246, 246, 1);
}

.whyan {
  background: white;
}
