/* ============================= */
/* ABOUT SANJAY — FINAL PREMIUM */
/* ============================= */

.about-sanjay {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Glow background */
.about-sanjay::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,106,43,0.15) 0%, transparent 70%);
  z-index: 0;
}

/* Ensure layering */
.about-sanjay * {
  position: relative;
  z-index: 2;
}

/* ================= IMAGE ================= */

.about-sanjay img {
  border-radius: 24px;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.35),
    0 10px 25px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 40px rgba(255,106,43,0.08);
  transition: all 0.4s ease;
}

.about-sanjay img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.45),
    0 15px 30px rgba(0,0,0,0.35);
}

/* ================= RIGHT COLUMN ================= */

.about-sanjay .wp-block-kadence-column:last-child {
  padding-top: 20px;
  transition: all 0.3s ease;
}

.about-sanjay:hover .wp-block-kadence-column:last-child {
  transform: translateY(-6px);
}

/* ================= TYPOGRAPHY ================= */

.about-sanjay h2 {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Accent line */
.about-sanjay h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a2b;
  margin-top: 12px;
  border-radius: 2px;
}

/* Paragraph */
.about-sanjay p {
  font-size: clamp(16px, 1vw, 17px);
  color: #cbd5f5;
  line-height: 1.7;
  max-width: 750px;
}

/* Label */
.about-sanjay .wp-block-kadence-advancedheading:first-child {
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ================= BUTTON ================= */

/* ===== CTA BASE ===== */
.about-sanjay .wp-block-button {
  margin-top: 30px;
}

/* ===== DEFAULT STATE ===== */
.about-sanjay .wp-block-button__link {
  background: #F15025;
  color: #FFFFFF;
  border: 2px solid #F15025;

  border-radius: 12px;
  padding: 14px 28px;

  font-weight: 600;
  letter-spacing: 0.3px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(241, 80, 37, 0.25);
}

/* ===== HOVER STATE ===== */
.about-sanjay .wp-block-button__link:hover {
  background: #FFFFFF;
  color: #F15025;
  border: 2px solid #F15025;

  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(241, 80, 37, 0.2);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

  .about-sanjay {
    padding: 80px 20px;
  }

  .about-sanjay .wp-block-kadence-column {
    text-align: center;
  }

  .about-sanjay .wp-block-kadence-column:last-child {
    padding-top: 20px;
  }

}

@media (max-width: 768px) {

  .about-sanjay {
    padding: 60px 20px;
  }

  .about-sanjay h2 {
    font-size: 26px;
  }

  .about-sanjay p {
    font-size: 15px;
  }

  .about-sanjay img {
    margin-bottom: 20px;
  }

}
/* ===== SECTION BASE ===== */
.testimonials-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 180px 20px 140px;

  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  text-align: center;
  overflow: visible;
}

/* ===== BACKGROUND TEXT (FIXED ONLY) ===== */
.testimonials-bg-text {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 10vw, 115px);
  font-weight: 600;
  letter-spacing: 3px;
  white-space: nowrap;

  color: rgba(255, 255, 255, 0.16);
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);

  z-index: 5;
  pointer-events: none;
}

/* ===== SLIDER ===== */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  z-index: 3;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ===== CARD ===== */
.testimonial-card {
  min-width: 100%;
  background: #ffffff;
  padding: 70px 50px;
  border-radius: 20px;

  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);

  position: relative;
  z-index: 3;

  /* OVERLAP EFFECT */
  transform: translateY(-60px) scale(0.92);
  opacity: 0.5;

  transition: all 0.5s ease;
}

.testimonial-card.active {
  transform: translateY(-100px) scale(1);
  opacity: 1;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Inter', sans-serif;
}

/* Quote */
.quote {
  font-size: 60px;
  color: #f77f00;
  margin-bottom: 20px;
}

/* Paragraph */
.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

/* Name */
.testimonial-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: #0d1b2a;
  margin-bottom: 5px;
}

/* Role */
.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* ===== DOTS ===== */
.slider-dots {
  margin-top: 40px;
}

.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots span.active {
  background: #f77f00;
  transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .testimonials-bg-text {
    font-size: clamp(56px, 9vw, 110px);
    letter-spacing: -1px;
    white-space: nowrap;

    /* CLEAN PREMIUM LOOK */
    color: rgba(255, 255, 255, 0.10);

    text-shadow:
      0 6px 20px rgba(255, 255, 255, 0.12),
      0 2px 6px rgba(255, 255, 255, 0.08);

  }
}




/* CTA BUTTON ONLY - DO NOT TOUCH FORM */

.fluentform .ff-btn-submit {
  background: #f15025 !important;
  color: #ffffff !important;
  border: 2px solid #f15025 !important;
  border-radius: 6px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  font-family: 'Sora', sans-serif !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.25) !important;
}
/* Remove Kadence default underline */
.header-navigation .menu > li > a:after {
    display: none !important;
}

/* Create custom extended underline */
.header-navigation .menu > li > a {
    position: relative;
    padding-bottom: 8px;
}

/* New underline */
.header-navigation .menu > li > a::before {
    content: '';
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: 0;
    height: 2px;
    background-color: #FF6A3D;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Hover effect */
.header-navigation .menu > li > a:hover::before {
    transform: scaleX(1);
}

/* Active menu item */
.header-navigation .menu > li.current-menu-item > a::before {
    transform: scaleX(1);
}
.kadence-header-button a,
.header-button-wrap .kb-button,
.header-button-wrap a {
    transition: all 0.25s ease !important;
}

.kadence-header-button a:hover,
.header-button-wrap .kb-button:hover,
.header-button-wrap a:hover {
    background-color: #ffffff !important;
    color: #F15025 !important;
    border: 1px solid #F15025 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08) !important;
    transform: translateY(-1px);
}



/* Smooth hover transitions */
.main-navigation .menu-container > ul > li > a {
    transition: color 0.2s ease !important;
}


.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    position: relative;
    padding-left: 60px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F15025;
}

.hero-eyebrow:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #F15025;
    transform: translateY(-50%);
}

/* ===== MOBILE HERO FIX ===== */

@media (max-width: 767px) {

    .hero-section {
        background-image: none !important;
        background-color: #F7F7F7;
    }

    .hero-section .kt-row-layout-inner {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 15px;
    }
}

/* GLOBAL HEADING */
h1 {
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.15;
}

/* GLOBAL PARAGRAPH */
p {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
}
/* ===== DeepHealth Cards FINAL (CENTERED + STABLE) ===== */

.dh-cards-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;

  width: 100%;
  max-width: 1140px;

  margin: 50px auto 0 auto;
  padding: 0 20px;

  justify-content: center;
}
.dh-card-wrap {
  width: 100%;
  max-width: 260px;
	margin: 0 auto;}

/* OUTER WRAPPER (GLOW) */
.dh-card-wrap {
  width: 100%;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;

  box-shadow: 0 40px 80px rgba(0,0,0,0.06);
}

/* INNER CARD */
.dh-card {
  width: 100%;
  box-sizing: border-box;

  background: #ffffff;
  border-radius: 16px;
  padding: 34px 22px;
  text-align: center;

  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.dh-card img {
  width: 56px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* TITLE */
.dh-card h3 {
  font-size: 18px;
  color: #101B4B;
  margin-bottom: 8px;
  line-height: 1.3;

  word-break: normal;
  overflow-wrap: normal;
}

/* TEXT */
.dh-card p {
  font-size: 14px;
  color: #16303B;
  line-height: 1.5;

  word-break: normal;
  overflow-wrap: normal;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1024px) {
  .dh-cards-section {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    max-width: 700px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
  .dh-cards-section {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}






/* =========================
   CONTAINER (SCOPED)
========================= */
.dh-custom-grid {
  position: relative;
  height: 540px;

  margin-left: -40px; /* 👈 reduced from -60 (less aggressive, more stable) */
}

/* =========================
   CARD DESIGN (WIDER)
========================= */
.dh-custom-grid .dh-card {
  position: absolute;
  width: 414px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  z-index: 1;
}

/* =========================
   CASCADE POSITIONING (BALANCED)
========================= */

/* Card 1 */
.dh-custom-grid .dh-card:nth-child(1) {
  top: 0;
  left: 0;
}

/* Card 2 */
.dh-custom-grid .dh-card:nth-child(2) {
  top: 132px;
  left: 280px; /* 👈 tighter + cleaner */
}

/* Card 3 */
.dh-custom-grid .dh-card:nth-child(3) {
  top: 270px;
  left: 0; /* 👈 aligned with card 1 (clean column feel) */
}

/* Card 4 */
.dh-custom-grid .dh-card:nth-child(4) {
  top: 390px;
  left: 280px; /* 👈 aligned with card 2 */
}

/* =========================
   HOVER
========================= */
.dh-custom-grid .dh-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(241, 80, 37, 0.18);
  border-top: 3px solid #F15025;
  z-index: 10;
}

/* =========================
   TYPOGRAPHY
========================= */
.dh-custom-grid .dh-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: #101B4B;
  margin-bottom: 10px;
}

.dh-custom-grid .dh-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .dh-custom-grid {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-left: 0;
  }

  .dh-custom-grid .dh-card {
    position: static;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dh-custom-grid {
    grid-template-columns: 1fr;
  }

  .dh-custom-grid .dh-card {
    padding: 18px;
  }
}

/* =========================
   LEFT CONTENT (STRUCTURAL FIX)
========================= */
.dh-programs-content {
  max-width: 460px;
  margin-left: auto; /* 👈 KEY FIX: pushes content toward cards */

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 540px;
}

/* =========================
   HEADING
========================= */
.dh-programs-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  color: #101B4B;
  margin-bottom: 12px;
}

/* =========================
   SUBTEXT
========================= */
.dh-programs-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* =========================
   CTA (PREMIUM BUTTON STYLE)
========================= */
.dh-programs-content .wp-block-button__link {
  background: #F15025;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 500;
  border: 2px solid #F15025;
  transition: all 0.3s ease;
}

/* HOVER: invert + lift + shadow */
.dh-programs-content .wp-block-button__link:hover {
  background: transparent;
  color: #F15025;
  border: 2px solid #F15025;

  transform: translateY(-3px); /* 👈 slight lift */
  box-shadow: 0 10px 25px rgba(241, 80, 37, 0.18); /* 👈 soft glow */
}
/* =========================
   HEADING ACCENT LINE
========================= */
.dh-programs-content h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #F15025;
  margin-top: 10px;
  border-radius: 2px;
}



/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 767px) {

  /* LEFT CONTENT */
  .dh-programs-content {
    
		height: auto;
    margin-left: 0;
    max-width: 100%;
		
		
	  margin-bottom: 12px;
    
    padding: 0 20px;
    margin-bottom: 24px; /* space before cards */
		
  }

  /* HEADING */
  .dh-programs-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  /* SUBTEXT */
  .dh-programs-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  /* CTA */
  .dh-programs-content .wp-block-button__link {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* GRID RESET */
  .dh-custom-grid {
    position: static;
    height: auto;
    margin-left: 0;

    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px 30px;
  }

  /* CARDS */
  .dh-custom-grid .dh-card {
    position: static;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
  }
}

.footer-widget-area ul li {
  margin-bottom: 10px;
}

/* Footer headings */
.footer-widget-area h2 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* Footer links */
.footer-widget-area a {
  color: #16303B;
  text-decoration: none;
}

/* Hover effect */
.footer-widget-area a:hover {
  color: #F15025;
}