body {
  background: linear-gradient(145deg, #2a4148, #1f363d);
  color:#e3f2fd;
}

/* Intro split section */
.intro-row {
  /*background: linear-gradient(145deg, #2a4148, #1f363d);*/
  min-height: auto;
  padding: 2rem 2rem 0rem 2rem;  /* Referred to text + animation, increased gap from top. */
}

.intro-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;  /* ✅ This allows wrapping! */
}

.intro-text {
  /*flex: 1;*/
  max-width: 50%;
}

.intro-anim {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==== CARDS SECTION ==== */
.cards-section {
  /*padding:8rem 0 10rem;*/
  /*background: linear-gradient(145deg, #2a4148, #1f363d);*/
  backdrop-filter:blur(10px);
}


@media(max-width:768px) {
  .intro-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-text{
    text-align:center
  }

  .intro-text,
  .intro-anim {
  flex: 1 1 0;
  max-width: 600px;  /* Optional upper bound if needed */
  }

  .intro-row{
    padding:4rem 0
  }
}

/* ─── Single‑stack hero layout ─────────────────────────── */
.hero-stack {
  background: linear-gradient(145deg,rgba(31,90,98,1),rgba(1,96,101,1));
  backdrop-filter: blur(8px);

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* top items stay at top */
}

.hero-stack .row.align-items-center {
  padding-top: 4rem;             /* optional: tweak top spacing */
}

.cards-grid {
  /*margin-top: auto;*/              /* pushes cards to the bottom of the flex column */
  padding-bottom: 10rem;          /* increade the brackground of the cards at the bottom */
  align-items: stretch;
}

.cards-grid .col {
  display: flex;
  align-items: stretch;   /* <- critical: columns take full row height */
  flex-direction: column;      /* <‑‑ IMPORTANT */
}

.cards-grid .info-card {
  flex: 1 0 100%;         /* grow+shrink, full height */
  flex: 1 1 auto;
  height: 100%;           /* for good measure */
}

.lottie-wrapper {
    font-size: 0.8rem;
}


/***  INFOCARDS ***/
.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(59, 80, 86, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #e3f2fd;
  text-shadow: none;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(0, 234, 255, 0.35);
}

.info-card::before {
  display: none;
}

.icon-lg {
  font-size: 2.3rem;
  color: #00eaff;
}
