/* ==========================================================================
   Home Page Specific Styles
   ========================================================================== */

/* --- Typography Standards --- */
h1 {
  font-size: 55px;
  font-family: "TeX Gyre Pagella", serif !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "TeX Gyre Pagella", serif !important;
}

p,
span,
li,
a,
button,
input,
textarea,
label {
  font-family: "Manrope", sans-serif !important;
}

/* --- On-scroll reveal animations --- */
.home-page-gs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  visibility: hidden;
}

.home-page-gs-reveal.home-page-gs-reveal-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.home-page-gs-reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.home-page-gs-reveal.home-page-gs-reveal-active.home-page-gs-reveal-stagger>* {
  opacity: 1;
  transform: translateY(0);
}

.home-page-delay-1 {
  transition-delay: 0.1s;
}

.home-page-delay-2 {
  transition-delay: 0.2s;
}

.home-page-delay-3 {
  transition-delay: 0.3s;
}

.home-page-hero {
  position: relative;
  /* height: 700px; */
  overflow: hidden;
  padding: 160px 100px 100px;
}

#home-page-heroBgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-page-bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(36, 58, 110, 0.9) 0%,
      rgba(36, 58, 110, 0.75) 25%,
      rgba(36, 58, 110, 0.4) 50%,
      rgba(36, 58, 110, 0) 100%);
  z-index: 1;
}

.home-page-heroContent {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  max-width: 700px;
  /* padding-left: 100px; */
}

.home-page-heroContent h1 {
  font-size: 55px;
  font-weight: 100;
}

.home-page-heroContent span {
  color: var(--color-aqua);
  font-family: "Tex gyre pagella", "serif" !important;
}

.home-page-heroContent p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 5px;
}

.home-page-tagDot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #42ff9e;
}

.home-page-hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.home-page-hero-h2 {
  font-size: 21px !important;
  color: white;
  font-family: "Manrope", sans-serif !important;
  margin-top: 25px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ================= VIDEO MODAL ================= */

.home-page-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.038);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.home-page-video-modal.active {
  display: flex;
}

.home-page-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.home-page-video-modal-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}

.home-page-video-modal video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.home-page-close-modal {
  position: absolute;
  top: -15px;
  right: -15px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;

  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
}

.home-page-close-modal:hover {
  transform: scale(1.1);
  border-color: #B3F7FF;
}

/* ================== ection 2 css start============ */

.home-page-homeSection2 {
  /* margin: 40px; */
  background: #f1f2f4;
  padding: 100px;
}

.home-page-section2-section {
  background: #b3b5b9;
  text-align: center;
}

.home-page-section2-title {
  font-size: 55px;

  line-height: 1.15;
  font-weight: 300;
  text-align: center;
  color: var(--text-dark);
  max-width: 1200px;
  margin: 0 auto 30px;
}

.home-page-section2-title span {
  display: block;
  /* color: #5d74d4; */
  color: var(--color-periwinkle);
  font-style: italic;
  font-weight: 300;
  font-family: "TeX Gyre Pagella", serif;
}

.home-page-statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.home-page-stat-card {
  /* background: white; */
  border-radius: 20px;
  padding: 0px 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-page-stat-card h3 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 10px;
}

.home-page-stat-card h4 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
  font-family: "Manrope", sans-serif !important;
}

.home-page-stat-card p {
  font-size: 14px;
  text-align: center;
}

.home-page-cardOne-blue {
  border: 1px solid var(--color-periwinkle);
  background: rgba(117, 145, 255, 0.091);
}

.home-page-cardOne-blue h3,
.home-page-cardOne-blue h4 {
  color: var(--color-periwinkle);
}

.home-page-cardOne-blue h4 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.home-page-cardSecond-purple {
  border: 1px solid var(--color-lavender);
  background: rgba(165, 136, 192, 0.097);
}

.home-page-cardSecond-purple h3,
.home-page-cardSecond-purple h4 {
  color: var(--color-lavender);
}

.home-page-cardSecond-purple h4 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.home-page-cardThird-green {
  border: 1px solid var(--color-green);
  background: rgba(79, 185, 148, 0.082);
}

.home-page-cardThird-green h3,
.home-page-cardThird-green h4 {
  color: var(--color-green);
}

.home-page-cardThird-green h4 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.home-page-cardFourth-cyan {
  border: 1px solid var(--color-dark-aqua);
  background: rgba(84, 201, 255, 0.069);
}

.home-page-cardFourth-cyan h3,
.home-page-cardFourth-cyan h4 {
  color: #28aeed;
}

.home-page-cardFourth-cyan h4 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.home-page-section2-bottom {
  margin-top: 50px;
  /* background: #081f4d; */
  background: linear-gradient(90deg,
      #081d4f 0%,
      #1f3774 45%,
      #5365b7 80%,
      #b29be8 100%);
  color: white;
  padding: 30px 15px;
  border-radius: 24px;
  font-size: 36px;
  text-align: center;
  font-weight: 200;
  font-family: "TeX Gyre Pagella", serif;
}

/* ======================================== section 2 end=========================== */


/* ===========================section 3 start ==================================== */

.home-page-homeSection3 {
  padding: 100px;
  background: linear-gradient(90deg,
      #081d4f 0%,
      #1f3774 45%,
      #5365b7 80%,
      #b29be8 100%);
  overflow: hidden;
}

.home-page-homeSection3Container {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT */

.home-page-homeSection3Heading {
  font-size: 47px;
  font-weight: 100;
  line-height: 1.1;
  color: white;
}

.home-page-homeSection3Heading span {
  display: block;
  color: var(--color-aqua);
  font-family: "TeX Gyre Pagella", serif !important;
}

.home-page-homeSection3Text {
  margin-top: 20px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.688);
  font-size: 18px;
  line-height: 1.8;
}


.home-page-homeSection3Btn {
  position: relative;
  margin-top: 15px;
  padding: 15px 35px;
  border-radius: 50px;
  border: 1px solid var(--color-green);
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.35s ease;
  overflow: visible;
  margin-left: 20px;
}

/* Hover */

.home-page-homeSection3Btn:hover {
  color: var(--color-green);

  background: rgba(66, 255, 158, 0.08);

  box-shadow:
    0 0 15px rgba(66, 255, 158, 0.4),
    0 0 40px rgba(66, 255, 158, 0.2);
}

/* Stars */

.home-page-star {
  position: absolute;

  color: #6bcfff;

  opacity: 0;

  z-index: 2;

  pointer-events: none;

  text-shadow:
    0 0 8px var(--color-aqua),
    0 0 18px var(--color-green);

  transition: all 0.8s cubic-bezier(0.17, 0.67, 0.31, 1.35);
}

.home-page-star1,
.home-page-star2,
.home-page-star3,
.home-page-star4,
.home-page-star5,
.home-page-star6 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Sizes */

.home-page-star1 {
  font-size: 22px;
}

.home-page-star2 {
  font-size: 16px;
}

.home-page-star3 {
  font-size: 10px;
}

.home-page-star4 {
  font-size: 14px;
}

.home-page-star5 {
  font-size: 18px;
}

.home-page-star6 {
  font-size: 12px;
}

.home-page-homeSection3Btn:hover .home-page-star1 {
  opacity: 1;
  top: -10px;
  left: -1px;
}

.home-page-homeSection3Btn:hover .home-page-star2 {
  opacity: 1;
  top: -5px;
  left: 30%;
}

.home-page-homeSection3Btn:hover .home-page-star3 {
  opacity: 1;
  top: 80%;
  left: -1px;
}

.home-page-homeSection3Btn:hover .home-page-star4 {
  opacity: 1;
  top: 15%;
  left: 105%;
}

.home-page-homeSection3Btn:hover .home-page-star5 {
  opacity: 1;
  top: 100%;
  left: 85%;
}

.home-page-homeSection3Btn:hover .home-page-star6 {
  opacity: 1;
  top: -0px;
  left: 80%;
}

/* RIGHT */

.home-page-homeSection3Visual {
  display: flex;
  justify-content: center;
}

.home-page-homeSection3Twin {
  position: relative;

  width: 450px;
  height: 450px;
}

/* OUTER DOTTED RING */

.home-page-homeSection3OuterRing {
  position: absolute;
  inset: 0;

  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.25);

  animation: rotateRing 40s linear infinite;
}

.home-page-homeSection3OuterRing {
  z-index: 1;
  inset: 0;
}

.home-page-homeSection3TextArcs {
  z-index: 2;
  inset: 8px;
}

.home-page-homeSection3MiddleRing {
  z-index: 3;
  inset: 16px;
}

.home-page-homeSection3Circle {
  z-index: 5;
}

/* SOLID RING */

.home-page-homeSection3MiddleRing {
  position: absolute;
  inset: 40px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);

  animation: rotateRingReverse 40s linear infinite;
}

/* CURVED TEXT */

.home-page-homeSection3TextArcs {
  position: absolute;
  inset: -65px;
  z-index: 4;
  animation: rotateRing 40s linear infinite;
}

.home-page-homeSection3TextArcs text {
  fill: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 2px;

  font-weight: 300;
}

.home-page-homeSection3TextArcs svg {
  width: 100%;
  height: 100%;
}

.home-page-arcText {
  fill: rgba(255, 255, 255, 0.55);

  font-size: 18px;

  letter-spacing: 6px;
  text-transform: uppercase;

  font-family: "Manrope", sans-serif;

  font-weight: 300;
}

/* CROSS LINES */

.home-page-homeSection3Line,
.home-page-homeSection3Diagonal {
  position: absolute;
  background: rgba(255, 255, 255, 0.092);
}

.home-page-homeSection3Line.home-page-vertical {
  width: 1px;
  height: 100%;
  left: 50%;
  top: -10%;
}

.home-page-homeSection3Line.home-page-horizontal {
  height: 1px;
  width: 120%;

  top: 50%;
  left: -10%;
}

.home-page-homeSection3Diagonal {
  width: 130%;
  height: 1px;
  left: -20%;
  top: 50%;
}

.home-page-diag1 {
  transform: rotate(45deg);
}

.home-page-diag2 {
  transform: rotate(-45deg);
}

/* NODES */

.home-page-homeSection3Node {
  position: absolute;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  animation: pulseNode 2s infinite;
}

.home-page-node1 {
  left: -8px;
  top: 18px;
  background: var(--color-green);
  box-shadow:
    0 0 10px #62ffb0,
    0 0 20px #62ffb0,
    0 0 40px rgba(98, 255, 176, 0.8);
}

.home-page-node2 {
  right: 28px;
  top: 12px;
  background: var(--color-peach);
  box-shadow:
    0 0 10px var(--color-peach),
    0 0 20px #fd7cd4,
    0 0 40px rgba(253, 124, 212, 0.8);
}

.home-page-node3 {
  left: -12px;
  bottom: 10px;
  background: var(--color-pink);
  box-shadow:
    0 0 10px var(--color-pink),
    0 0 20px #ff85d8,
    0 0 40px rgba(255, 133, 216, 0.8);
}

.home-page-node4 {
  right: 30px;
  bottom: 10px;
  background: var(--color-aqua);
  box-shadow:
    0 0 10px #b8ffff,
    0 0 20px #b8ffff,
    0 0 40px rgba(184, 255, 255, 0.8);
}

/* CENTER */

.home-page-homeSection3Circle {
  position: absolute;

  width: 320px;
  height: 320px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  overflow: hidden;

  border: 2px solid var(--color-periwinkle);

  background: radial-gradient(circle,
      rgba(50, 100, 255, 0.25),
      rgba(0, 0, 0, 0.9));

  box-shadow: 0 0 50px rgba(79, 132, 255, 0.4);
}

.home-page-homeSection3Circle::before {
  content: "";

  position: absolute;
  inset: -14px;

  border-radius: 50%;
  border: 1px solid rgba(120, 180, 255, 0.4);
}

.home-page-homeSection3Body {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PARTICLES */

.home-page-homeSection3Particle {
  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #ff5fcf;

  box-shadow:
    0 0 12px #ff5fcf,
    0 0 25px #ff5fcf;

  animation: pulseParticle 2s infinite;
}

.home-page-p1 {
  top: 110px;
  left: 110px;
}

.home-page-p2 {
  top: 180px;
  right: 90px;
}

.home-page-p3 {
  top: 220px;
  left: 130px;
}

.home-page-p4 {
  top: 90px;
  right: 100px;
}

.home-page-p5 {
  top: 110px;
  left: 140px;
}

.home-page-p6 {
  top: 70px;
  right: 140px;
}

/* ANIMATIONS */

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulseParticle {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(2);
  }
}

/* ========================== section 3 end ===================================== */

/* ========================== section 4 start ========================== */
.home-page-homeSection4 {
  padding: 100px;
  background: #f3f4f5;
}

/* ==========================
   HEADING
========================== */

.home-page-section4-header {
  max-width: 1000px;
}

.home-page-section4-header h2 {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--text-dark);
}

.home-page-section4-header h2 span {
  display: block;
  color: var(--color-periwinkle);
  font-weight: 200;
  font-family: "TeX Gyre Pagella", serif !important;
  margin-top: 5px;
}

.home-page-section4-header p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #222;

}

/* ==========================
   CARDS
========================== */

.home-page-section4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}

/* ==========================
   BOTTOM BANNER
========================== */

.home-page-platform-banner {
  margin-top: 35px;
  background: #0a2250;
  border-radius: 28px;
  padding: 25px;
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;

  color: white;
}

.home-page-banner-content span {

  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;

  color: var(--color-aqua);
}

.home-page-banner-content h3 {
  text-align: center;

  font-size: 35px;
  font-weight: 300;
  margin: 10px 0;
}

.home-page-banner-content p {
  color: #d4d9e8;
}

.home-page-banner-content sup {
  font-size: 14px;
}

.home-page-platform-content {
  text-align: center;
  /* display: flex; */
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page-platform-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-page-platform-list li {
  display: flex;
  align-items: center;
  color: #d4d9e8;
}

.home-page-platform-list li:not(:first-child)::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-periwinkle);
  margin: 0 12px;
}

/* ==========================
   BUTTON
========================== */
.home-page-explore-btn {
  position: relative;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(128, 128, 128, 0.147);
  background: #071f4e;
  color: white;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

/* Rotating glow ring */
.home-page-explore-btn::before {
  content: "";

  position: absolute;
  inset: -2px;

  border-radius: inherit;
  filter: blur(2px);
  background: conic-gradient(from 0deg,
      transparent,
      #4ed9c7,
      #7f97ff,
      #4ed9c7,
      transparent);

  animation: rotateBorder 3s linear infinite;

  z-index: -2;
}

/* Inner mask */
.home-page-explore-btn::after {
  content: "";

  position: absolute;
  inset: 2px;

  border-radius: inherit;

  background: #071f4e;

  z-index: -1;
}

.home-page-explore-btn:hover::before {
  filter: blur(4px);
}

.home-page-explore-btn:hover {
  box-shadow:
    0 0 20px rgba(78, 217, 199, 0.4),
    0 0 40px rgba(78, 217, 199, 0.25);
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

/* ========= section 4css end =====================*/

/*=========================== section 5 css start ==============================*/

.home-page-section5 {
  padding: 100px;
  background: #fff;
}

.home-page-section5-header {
  width: 100%;
  margin-bottom: 60px;
}

.home-page-tag {
  color: var(--color-green);
  font-size: 16px;
}

.home-page-section5-heading {
  max-width: 1100px;
  line-height: 1.05;
  font-weight: 100;
  color: var(--color-periwinkle);
  margin-top: 15px;
}

.home-page-section5-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px;
}

.home-page-section5-left {
  flex: 1;
}

/* ===========================
   ACCORDION
=========================== */

.home-page-section5-item {
  border-top: 1px solid #d9dee9;
  border-bottom: 1px solid #d9dee9;
  transition: all 0.35s ease;
}

.home-page-section5-title {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
}

.home-page-section5-title h3 {
  font-size: 18px;
  color: #0d224c;
  font-weight: 700;
  font-family: "Manrope", sans-serif !important;
  margin: 0;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.home-page-section5-icon {
  font-size: 28px;
  color: var(--color-periwinkle);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CONTENT */

.home-page-section5-panel {
  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-12px);

  transition:
    max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.45s ease;
}

.home-page-section5-panel p {
  padding: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #404d67;
  max-width: 90%;
}

/* ACTIVE STATE */
.home-page-section5-item.active .home-page-section5-title h3 {
  color: var(--color-periwinkle);
}

/* .section5-item.active .section5-icon {
  transform: rotate(45deg);
} */

.home-page-section5-item.active .home-page-section5-panel {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

/* ===================== right side========================== */
.home-page-section5-right {
  width: 550px;
  flex-shrink: 0;
}

.home-page-section5-dark {
  color: var(--text-dark);
  font-family: "TeX Gyre Pagella", serif !important;
}

.home-page-section5-card {
  background: #fff;
  width: 550px;
  border-radius: 25px;
  padding: 30px;
  border: 1px solid #ececec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.home-page-section5-card-top {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 30px;
  gap: 6px;
}

.home-page-section5-card-top h4 {
  font-size: 17px;
  color: #0d224c;
}

.home-page-section5-card-top span {
  color: #9aa4c3;
}

.home-page-section5-card-top p {
  font-size: 16px;
  color: #b5bad0;
}

.home-page-section5-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.home-page-section5-row h5 {
  font-size: 18px;
  color: #0d224c;
}

.home-page-section5-count {
  font-weight: 700;
}

.home-page-section5-progress {
  height: 8px;
  background: #edf0f5;
  border-radius: 20px;
  overflow: hidden;
}

.home-page-section5-fill {
  width: 0;
  height: 8px;
  border-radius: 20px;
  transition: width 1.5s ease;
}

.home-page-section5-green {
  background: var(--color-green);
}

.home-page-section5-blue {
  background: var(--color-periwinkle);
}

.home-page-section5-pink {
  background: #ff43c5;
}

.home-page-section5-regimen {
  margin-bottom: 22px;
}

.home-page-section5-green+.home-page-section5-count {
  color: #13c391;
}

.home-page-section5-warning {
  color: #d85a9f;
  margin-top: 10px;
}

.home-page-section5-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #ececec;

  display: flex;
  justify-content: space-between;
}

.home-page-section5-footer span {
  color: #a0a7bb;
}

.home-page-section5-footer a {
  color: var(--color-periwinkle);
  text-decoration: none;
  font-weight: 600;
}

/* =================================================setion 5 css end ========================================*/


/* ====================blog start================================= */

/* SECTION */
.blog-wrapper {
  width: 100%;
  margin: auto;
  background-color: #f3f4f5;
  padding: 100px;
}



.blog-section {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}

/* CARD */

.blog-card {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fff;

  border: 1px solid #e8edf7;

  border-radius: 20px;

  padding: 35px;

  transition: .35s;

  position: relative;

  overflow: hidden;
}


/* Top Accent */

.blog-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg,
      var(--color-dark-aqua),
      var(--color-periwinkle),
      var(--color-dark-lavender));
}

.blog-meta {
  /* display:flex; */
  /* flex-direction: column; */
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-date {
  color: #6b7280;
  font-size: .9rem;
  font-weight: 500;
}

/* Hover */

.blog-card:hover {

  transform: translateY(-8px);

  border-color: var(--color-periwinkle);

  box-shadow:
    0 20px 45px rgba(104, 142, 251, .12);
}

.blog-content {
  width: 82%;
}

/* Category */

.blog-category {

  display: inline-block;

  padding: 7px 16px;

  background: rgba(179, 247, 255, .45);

  color: var(--text-dark);

  border-radius: 40px;

  font-size: .85rem;

  font-weight: 600;

  margin-bottom: 18px;
}

/* Heading */

.blog-content h3 {

  color: var(--text-dark);

  font-size: 1.6rem;

  line-height: 1.35;

  margin-bottom: 14px;
}

/* Text */

.blog-content p {

  color: #60708b;

  line-height: 1.7;

  font-size: 1rem;
}

/* Arrow */

.blog-arrow {

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: #f4f7fc;

  border: 1px solid #dbe5f5;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--color-periwinkle);

  font-size: 30px;

  transition: .35s;
}

.blog-card:hover .blog-arrow {

  background: var(--color-periwinkle);

  color: #fff;

  transform: translateX(6px);
}

/* Responsive */

@media(max-width:768px) {}

/* ====================blog end =================================*/

/* =================================================setion 6 css start ========================================*/

.home-page-section6 {
  padding: 100px;
  background: #f3f4f5;
}

.home-page-section6-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-page-section6-header span {
  color: var(--color-green);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-page-section6-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}

.home-page-section6-card {
  position: relative;

  min-height: 420px;
  height: auto;

  background: #fafafa;
  border-radius: 24px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);

  transition: all 0.4s ease;
}

.home-page-section6-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 25px rgba(111, 130, 255, 0.08);
}

.home-page-section6-quote {
  height: 180px;
  flex: 1;
  color: #314b78;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  position: relative;
}

/* Card 1 Quote */
.home-page-section6-card:nth-child(1) .home-page-section6-quote::before {
  content: "❝";
  display: block;
  color: var(--color-periwinkle);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

/* Card 2 Quote */
.home-page-section6-card:nth-child(2) .home-page-section6-quote::before {
  content: "❝";
  display: block;
  color: #00d1ff;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

/* Card 3 Quote */
.home-page-section6-card:nth-child(3) .home-page-section6-quote::before {
  content: "❝";
  display: block;
  color: var(--color-lavender);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

.home-page-section6-divider {
  height: 1px;
  background: #e1dede;
  margin: 20px 0;
}

.home-page-section6-profile {
  margin-top: auto;

  display: flex;
  align-items: center;
  gap: 18px;
}

.home-page-section6-avatar {
  width: 54px;
  height: 54px;

  border-radius: 50%;
  flex-shrink: 0;
}

.home-page-avatar-blue {
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid var(--color-periwinkle);
}

.home-page-avatar-cyan {
  background: rgba(0, 209, 255, 0.15);
  border: 1px solid #00d1ff;
}

.home-page-avatar-purple {
  background: rgba(187, 133, 255, 0.15);
  border: 1px solid var(--color-lavender);
}

.home-page-section6-profile h4 {
  font-size: 17px;
  color: #091c43;
  font-weight: 600;
  margin-bottom: 2px;
}

.home-page-section6-card:nth-child(1) .home-page-section6-profile span {
  color: var(--color-periwinkle);
}

.home-page-section6-card:nth-child(2) .home-page-section6-profile span {
  color: #00d1ff;
}

.home-page-section6-card:nth-child(3) .home-page-section6-profile span {
  color: var(--color-lavender);
}

.home-page-section6-profile p {
  color: #5b6f95;
  font-size: 14px;
  margin-top: 2px;
}

/* =================================================setion 6 css end ========================================*/

/* --- Namespaced Card Styles (copied from global to ensure isolation) --- */
.home-page-card {
  position: relative;
  min-height: 300px;
  background: #ffffff;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 29, 70, 0.07);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 29, 70, 0.12);
}

.home-page-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}

.home-page-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "TeX Gyre Pagella", serif !important;
}

.home-page-card p {
  font-size: 16px;
  color: #51617f;
}

/* ==================================
     Media Query 
======================================*/
@media screen and (max-width: 500px) {

  /* HERO */
  .home-page-section5-card-top p {
    text-align: right;
  }

  .home-page-hero {
    height: auto;
    min-height: 500px;
    padding: 150px 20px;
  }

  .home-page-heroContent {
    height: auto;
    min-height: 500px;
    /* padding: 120px 20px 60px; */
    max-width: 100%;
  }

  .home-page-heroContent h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .home-page-heroContent p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-page-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .card h3 {
    font-size: 26px;
  }

  .home-page-explore-btn {
    font-size: 14px;
  }

  /* modal */
  /* .close-modal {
        top: 15px;
        right: 15px;
        font-size: 35px;
    } */
  /* SECTION 2 */

  .home-page-homeSection2 {
    padding: 60px 20px;
  }

  .home-page-section2-title {
    font-size: 32px;
  }

  .home-page-statsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page-stat-card {
    min-height: 180px;
  }

  .home-page-stat-card h3 {
    font-size: 38px;
  }

  .home-page-stat-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .home-page-section2-bottom {
    font-size: 18px;
    padding: 20px;
  }

  /* SECTION 3 */

  .home-page-homeSection3 {
    padding: 60px 20px;
  }

  .home-page-homeSection3Container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-page-homeSection3Content {
    text-align: center;
  }

  .home-page-homeSection3Heading {
    font-size: 32px;
  }

  .home-page-homeSection3Text {
    font-size: 16px;
  }

  .home-page-banner-content sup {
    font-size: 10px;
  }





  .home-page-homeSection3Btn {
    width: 80%;
    padding: 10px;
  }

  .home-page-homeSection3Twin {
    width: 320px;
    height: 320px;
  }

  .home-page-homeSection3Circle {
    width: 220px;
    height: 220px;
  }

  .home-page-homeSection3MiddleRing {
    inset: 30px;
  }

  .home-page-homeSection3TextArcs {
    inset: -35px;
  }

  .home-page-arcText {
    font-size: 10px;
    letter-spacing: 2px;
  }

  /* SECTION 4 */

  .home-page-homeSection4 {
    padding: 60px 20px;
  }

  .home-page-section4-header h2 {
    font-size: 32px;
  }

  .home-page-section4_card {
    height: 250px;
  }

  .home-page-section4_card .card .home-page-blueCard {
    border-top: 6px solid #6c63ff !important;
  }

  .home-page-card-icon {
    width: 45px;
    height: 45px;
  }

  .card {
    min-height: 250px !important;
  }

  .home-page-section4-grid {
    grid-template-columns: 1fr;
  }

  .home-page-platform-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .home-page-banner-content h3 {
    font-size: 18px;
  }

  .home-page-platform-content {
    flex-direction: column;
    gap: 10px;
  }

  .home-page-platform-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* SECTION 5 */

  .home-page-section5 {
    padding: 60px 20px;
  }

  .home-page-section5-header {
    margin-bottom: 20px;
  }

  .home-page-section5-heading {
    line-height: 1.1;
    margin-top: 10px;
  }

  .home-page-section5-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .home-page-section5-left,
  .home-page-section5-right {
    width: 100%;
  }

  .home-page-section5-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .home-page-section5-footer {
    font-size: 15px;
  }

  .home-page-tag {
    font-size: 13px;
  }

  /* blog */

  /* ================= BLOG SECTION ================= */

  .blog-wrapper {
    padding: 60px 20px;
  }

  .blog-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    padding: 24px;
    border-radius: 18px;
  }

  .blog-content {
    width: 100%;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .blog-category {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 0;
  }

  .blog-date {
    font-size: 12px;
  }

  .blog-content h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .blog-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .blog-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
    align-self: flex-end;
  }

  /* Section Heading */

  .home-page-section6-header {
    margin-bottom: 30px;
  }

  .home-page-section6-header span {
    font-size: 12px;
    letter-spacing: 1px;
  }


  /* SECTION 6 */

  .home-page-section6 {
    padding: 60px 20px;
  }

  .home-page-section6-header {
    margin-bottom: 40px;
  }

  .home-page-section6-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .home-page-section6-card {
    width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .home-page-section6-quote {
    min-height: auto;
    font-size: 16px;
    line-height: 1.8;
  }

  .home-page-section6-profile {
    gap: 14px;
  }

  .home-page-section6-avatar {
    width: 48px;
    height: 48px;
  }

  .home-page-section6-profile h4 {
    font-size: 15px;
  }

  .home-page-section6-profile span,
  .home-page-section6-profile p {
    font-size: 14px;
  }
}

@media screen and (min-width: 501px) and (max-width: 800px) {
  .home-page-hero {
    padding: 160px 40px;
  }

  .home-page-heroContent {
    max-width: 85%;
  }

  .home-page-hero-tag {
    font-size: 16px !important;
  }

  .home-page-heroContent h1 {
    font-size: 40px;
  }

  .home-page-hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-page-heroContent p {
    font-size: 20px;
  }

  .home-page-hero-tag {
    font-size: 17px;
  }

  /* SECTION 2 */

  .home-page-homeSection2 {
    padding: 80px 40px;
  }

  .home-page-section2-title {
    font-size: 40px;
  }

  .home-page-platform-content {
    display: block;
  }

  .home-page-banner-content span {
    font-size: 20px;
  }

  .home-page-section2-bottom {
    font-size: 21px;
    padding: 20px 10px;
  }

  .home-page-statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page-section2-title {
    font-size: 41px !important;
  }

  /* SECTION 3 */

  .home-page-homeSection3 {
    padding: 80px 40px;
  }

  .home-page-homeSection3Container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .home-page-homeSection3Content {
    text-align: center;
  }

  .home-page-homeSection3Heading {
    font-size: 45px;
  }

  .home-page-homeSection3Text {
    /* margin-top: 30px; */
    margin: 20px 35px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.688);
    font-size: 17px !important;
  }

  /* SECTION 3 BULLETS */

  .home-page-homeSection3bullets {
    margin: 30px auto 40px;
    max-width: 600px;
    width: fit-content;
  }

  .home-page-homeSection3Bullet {
    gap: 12px;
    text-align: left;
  }

  .home-page-homeSection3Bullet p {
    font-size: 16px;
  }

  .home-page-bulletDot {
    width: 9px;
    height: 9px;
  }

  .home-page-homeSection3Twin {
    width: 420px;
    height: 420px;
  }

  .home-page-homeSection3Circle {
    width: 290px;
    height: 290px;
  }

  /* SECTION 4 */

  .home-page-homeSection4 {
    padding: 80px 40px;
  }

  .home-page-section4-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page-section4-header h2 {
    font-size: 45px;
  }

  .home-page-platform-banner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  /* SECTION 5 */

  @media screen and (min-width: 501px) and (max-width: 800px) {
    .home-page-section5 {
      padding: 80px 40px;
    }

    .home-page-section5-heading {
      font-size: 45px;
      line-height: 1.1;
    }

    .home-page-section5-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      margin-top: 50px;
    }

    .home-page-section5-left,
    .home-page-section5-right {
      width: 100%;
    }

    .home-page-section5-card {
      width: 100%;
      /* max-width: 600px; */
      margin: auto;
    }
  }

  /* blog */
  .blog-wrapper {
    padding: 80px 40px;
  }

  .blog-card {

    flex-direction: column;

    align-items: flex-start;

    gap: 25px;
  }

  .blog-content {

    width: 100%;
  }

  .blog-arrow {
    align-self: flex-end;
  }

  /* SECTION 6 */

  .home-page-section6 {
    padding: 80px 40px;
  }

  .home-page-section6-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .home-page-section6-card {
    width: calc(50% - 10px);
  }

  .section6-card:last-child {
    width: 100%;
  }

  .home-page-section6-quote {
    min-height: 140px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  /* HERO */

  .home-page-heroContent {
    padding-left: 50px;
    max-width: 650px;
  }

  .home-page-heroContent h1 {
    font-size: 56px;
  }

  /* SECTION 2 */

  .home-page-homeSection2 {
    padding: 80px 50px;
  }

  .home-page-statsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* SECTION 3 */

  .home-page-homeSection3 {
    padding: 90px 50px;
  }

  .home-page-homeSection3Heading {
    font-size: 48px;
  }

  .home-page-homeSection3bullets {
    margin: 35px 0 45px;
  }

  .home-page-homeSection3Bullet p {
    font-size: 17px;
  }

  .home-page-homeSection3Twin {
    width: 430px;
    height: 430px;
  }

  .home-page-homeSection3Circle {
    width: 300px;
    height: 300px;
  }

  /* SECTION 4 */

  .home-page-homeSection4 {
    padding: 90px 50px;
  }

  .home-page-section4-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SECTION 5 */

  .home-page-section5-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* SECTION 6 */

  .home-page-section6 {
    padding: 80px 50px;
  }

  .home-page-section6-grid {
    gap: 20px;
  }

  .home-page-section6-card {
    width: 31%;
    min-width: 280px;
  }
}

@media screen and (max-width: 900px) {
  .home-page-homeSection3Container {
    grid-template-columns: auto;
  }

  .home-page-section6-grid {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Validation Section Styles
   ========================================================================== */

.home-page-validation-section {
  background: linear-gradient(90deg, #081d4f 0%, #1f3774 45%, #5365b7 80%, #b29be8 100%);
  color: #ffffff;
  padding: 100px;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Layout Structural Containers */
.home-page-validation-section .validation-content-container {
  /* max-width: 1152px; */
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Top Tagline Label */
.home-page-validation-section .validation-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-aqua);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.home-page-validation-section .validation-tagline .divider {
  margin: 0 8px;
  color: white;
}

/* Heading & Typography Rules */
.home-page-validation-section .validation-main-heading {
  font-size: 55px;
  font-family: "TeX Gyre Pagella", Georgia, Cambria, serif !important;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 45rem;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
  /* fallback */
}

.home-page-validation-section .validation-description {
  color: white;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Outer Scroll Wrapper to protect narrow screens without stacking */
.home-page-validation-section .validation-process-wrapper {
  width: 100%;
  margin-bottom: 48px;
  padding-top: 15px;
  padding-bottom: 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.home-page-validation-section .validation-process-wrapper::-webkit-scrollbar {
  display: none;
}

/* Continuous Side-by-Side Flex Layout Row */
.home-page-validation-section .validation-process-flow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;

}

/* Standalone Card Blueprint */
.home-page-validation-section .validation-card {
  flex: 1;
  min-height: 230px;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid transparent;
}

.home-page-validation-section .validation-card:hover {
  transform: translateY(-8px) scale(1.02);
  overflow: hidden;
}

.home-page-validation-section .validation-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-page-validation-section .validation-icon-wrapper {
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.home-page-validation-section .validation-icon-wrapper img,
.home-page-validation-section .validation-icon-wrapper i {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page-validation-section .validation-card:hover .validation-icon-wrapper img,
.home-page-validation-section .validation-card:hover .validation-icon-wrapper i {
  transform: scale(1.1);
}

.home-page-validation-section .validation-step-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.home-page-validation-section .validation-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.home-page-validation-section .validation-card-text {
  font-size: 14px;
  color: white;
  line-height: 1.6;
  max-width: 190px;
}

/* Customized Theme Profiles for Cards */
.home-page-validation-section .card-molecule {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--color-green);
  border-radius: 20px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-page-validation-section .card-molecule:hover {
  border-color: rgba(16, 185, 129, 0.8);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-page-validation-section .card-molecule .validation-icon-wrapper {

  background: transparent;

  color: #10b981;
}

.home-page-validation-section .card-molecule .validation-step-label,
.home-page-validation-section .card-twin .validation-step-label,
.home-page-validation-section .card-trial .validation-step-label,
.home-page-validation-section .card-efficacy .validation-step-label {
  color: white !important;
  font-size: 12px;
}

.home-page-validation-section .card-molecule .validation-step-title {
  color: var(--color-green);
  font-size: 22px;
}

.home-page-validation-section .card-twin {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--color-periwinkle);
  border-radius: 20px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-page-validation-section .card-twin:hover {
  border-color: rgba(59, 130, 246, 0.8);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-page-validation-section .card-twin .validation-icon-wrapper {
  background-color: rgba(59, 130, 246, 0.08);
  background: transparent;

  color: #3b82f6;
}

.home-page-validation-section .card-twin .validation-step-title {
  color: var(--color-periwinkle);
  font-size: 22px;
}

.home-page-validation-section .card-trial {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--color-lavender);
  border-radius: 20px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-page-validation-section .card-trial:hover {
  border-color: rgba(168, 85, 247, 0.8);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(168, 85, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-page-validation-section .card-trial .validation-icon-wrapper {
  background-color: rgba(168, 85, 247, 0.08);
  color: var(--color-lavender);
}

.home-page-validation-section .card-trial .validation-step-title {
  color: var(--color-lavender);
  font-size: 22px;
}

.home-page-validation-section .card-efficacy {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1.5px solid var(--color-aqua);
  border-radius: 20px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.home-page-validation-section .card-efficacy:hover {
  border-color: rgba(99, 102, 241, 0.8);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 40px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-page-validation-section .card-efficacy .validation-icon-wrapper {
  background-color: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}



.home-page-validation-section .card-efficacy .validation-step-title {
  color: var(--color-aqua);
  font-size: 22px;
}

/* Mid-Step Structural Grid Connecting Arrows */
.home-page-validation-section .validation-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  opacity: 0.6;
}

.home-page-validation-section .validation-flow-arrow i {
  width: 18px;
  height: 18px;
}

.home-page-validation-section .validation-flow-arrow:nth-of-type(2) {
  color: var(--color-periwinkle);
}

.home-page-validation-section .validation-flow-arrow:nth-of-type(3) {
  color: #6366f1;
}

/* Call-to-Action Buttons Styling */
.home-page-validation-section .validation-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.home-page-validation-section .validation-cta-button {
  background: transparent;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1px solid #334155;
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #cbd5e1;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-page-validation-section .validation-cta-button:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.02);
}

/* Compliance Footer Subtext */
.home-page-validation-section .validation-compliance-footer {
  font-size: 14px;
  color: white;
  max-width: 50rem;
  line-height: 1.6;
}

/* Immersive Decorative Background Radial Gradient Flare */
.home-page-validation-section .validation-ambient-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: linear-gradient(to left, rgba(147, 51, 234, 0.07), transparent, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Media Queries for Validation Section */

/* 801px to 1024px Screen: Adapt the horizontal flow row to fit */
@media screen and (min-width: 801px) and (max-width: 1024px) {
  .home-page-validation-section {
    padding: 80px 40px;
  }

  .home-page-validation-section .validation-main-heading {
    font-size: 45px;
  }

  .home-page-validation-section .validation-process-flow {
    min-width: 100%;
    gap: 8px;
  }

  .home-page-validation-section .validation-card {
    padding: 16px 12px;
    min-height: 210px;
  }

  .home-page-validation-section .validation-card-text {
    font-size: 13px;
    max-width: 100%;
  }

  .home-page-validation-section .card-molecule .validation-step-title,
  .home-page-validation-section .card-twin .validation-step-title,
  .home-page-validation-section .card-trial .validation-step-title,
  .home-page-validation-section .card-efficacy .validation-step-title {
    font-size: 18px;
  }

  .home-page-validation-section .validation-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .home-page-validation-section .validation-icon-wrapper img,
  .home-page-validation-section .validation-icon-wrapper i {
    width: 44px;
    height: 44px;
  }
}

/* 501px to 800px Screen: Stack cards vertically, arrows point down */
@media screen and (min-width: 501px) and (max-width: 800px) {
  .home-page-validation-section .validation-button-group {
    justify-content: center !important;
  }

  .home-page-validation-section {
    padding: 80px 30px;
  }

  .home-page-validation-section .validation-main-heading {
    font-size: 40px;
  }

  .home-page-validation-section .validation-process-flow {
    flex-direction: column;
    align-items: center;
    min-width: 100%;
    gap: 12px;
  }

  .home-page-validation-section .validation-card {
    width: 89%;
    max-width: 500px;
    min-height: 180px;
    padding: 24px;
  }

  .home-page-validation-section .validation-card-text {
    max-width: 100%;
    font-size: 14px;
  }

  .home-page-validation-section .validation-flow-arrow {
    margin: 6px 0;
  }

  .home-page-validation-section .validation-flow-arrow i,
  .home-page-validation-section .validation-flow-arrow svg {
    transform: rotate(90deg);
  }
}

/* 0px to 500px Screen: Mobile stack, scaled down fonts and padding */
@media screen and (max-width: 500px) {
  .home-page-validation-section .validation-button-group {
    justify-content: center !important;
  }

  .home-page-validation-section {
    padding: 50px 16px;
  }

  .home-page-validation-section .validation-tagline {
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }

  .home-page-validation-section .validation-main-heading {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .home-page-validation-section .validation-description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .home-page-validation-section .validation-process-flow {
    flex-direction: column;
    align-items: center;
    min-width: 100%;
    gap: 8px;
  }

  .home-page-validation-section .validation-card {
    width: 89%;

    min-height: 180px;
    padding: 20px 16px;
  }

  .home-page-validation-section .validation-card-text {
    max-width: 100%;
    font-size: 15px;
  }

  .home-page-validation-section .card-molecule .validation-step-title,
  .home-page-validation-section .card-twin .validation-step-title,
  .home-page-validation-section .card-trial .validation-step-title,
  .home-page-validation-section .card-efficacy .validation-step-title {
    font-size: 20px;
  }

  .home-page-validation-section .validation-flow-arrow {
    margin: 4px 0;
  }

  .home-page-validation-section .validation-flow-arrow i,
  .home-page-validation-section .validation-flow-arrow svg {
    transform: rotate(90deg);
  }

  .home-page-validation-section .validation-compliance-footer {
    font-size: 12px;
  }
}

.validation-main-heading span {
  color: var(--color-aqua);
}

.home-section-grid {
  display: inline;

}

.home-section-grid p {
  margin-top: 0;
}

.home-section-grid button {
  margin-top: 10px;
  margin-left: 10px;
}

.home-section-new {
  display: inline !important;
}

/* ===================================================================
   BETTER DECISIONS. BETTER CARE. — Platform Section
   =================================================================== */

.bdc-platform-section {
  position: relative;
  overflow: hidden;
  padding: 100px;
  background: linear-gradient(90deg, #081d4f 0%, #1f3774 45%, #5365b7 80%, #b29be8 100%);
}

/* Subtle radial glow like in the screenshot */
.bdc-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(120, 60, 200, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 95% 30%, rgba(80, 40, 180, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bdc-content {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ---- Heading block ---- */
.bdc-text-block {
  max-width: 1100px;
}

.bdc-heading {

  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px;
  font-family: "TeX Gyre Pagella", serif !important;
}

.bdc-green {
  border-color: var(--color-green) !important;
}

.bdc-lavender {
  border-color: var(--color-lavender) !important;
}

.bdc-periwinkle {
  border-color: var(--color-periwinkle) !important;
}

.bdc-aqua {
  border-color: var(--color-aqua) !important;
}

.bdc-heading-span {
  display: block;
  color: var(--color-aqua);
  font-style: italic;
  font-size: 40px;
  margin-top: 30px;
}

.bdc-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255);
  line-height: 1.7;
  margin: 0;
  font-family: "Manrope", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.bdc-subtext em {
  font-style: normal;
  font-size: 15px;
  font-family: "Manrope", sans-serif !important;
}

/* ---- Pill tabs ---- */
.bdc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bdc-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: "Manrope", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: rgb(10, 34, 80);
  backdrop-filter: blur(6px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.bdc-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(160, 120, 255, 0.7);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ---- CTA Button ---- */
.bdc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  /* padding: 14px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
  font-family: "Manrope", sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: transparent;
  width: fit-content;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease; */
}

.bdc-heading sup {
  font-size: 20px;
}

/* ---- Responsive ---- */
@media screen and (min-width:501px) and (max-width: 800px) {
  .bdc-heading-span {
    font-size: 30px;
  }

  .bdc-platform-section {
    padding: 70px 30px 60px;
  }

  .bdc-heading {
    font-size: 36px;
  }

  .bdc-pills {
    gap: 10px;
  }

  .bdc-pill {
    font-size: 12px;
    padding: 9px 18px;
  }
}

@media screen and (min-width:0) and (max-width: 500px) {
  .bdc-heading-span {
    font-size: 22px;
  }

  .bdc-platform-section {
    padding: 60px 20px 50px;
  }

  .bdc-heading {
    font-size: 30px;
  }
}