/* ================= HERO ================= */
.imps-hero {
  position: relative;
  height: 420px;
  margin-top: 62px;
}

.imps-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imps-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.imps-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #eaffc7, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.imps-hero-content p {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= IMPS OVERVIEW ================= */
.imps-overview {
  padding: 140px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* WRAPPER */
.imps-overview-wrap {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.imps-overview-content {
  text-align: left;
}

/* ICON */
.overview-icon {
  margin-bottom: 22px;
}

.overview-icon img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.15));
}

/* TITLE */
.imps-overview-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #020617;
  margin-bottom: 18px;
}

/* TEXT */
.imps-overview-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 14px;
  max-width: 520px;
}

/* ================= RIGHT IMAGE ================= */
.imps-overview-visual img {
  width: 100%;
  max-width: 520px;

  border-radius: 28px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);

  box-shadow:
    0 35px 90px rgba(15,23,42,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);

  animation: floatImage 6s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .imps-overview-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .imps-overview-content {
    text-align: center;
  }

  .imps-overview-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .imps-overview {
    padding: 100px 18px;
  }

  .imps-overview-content h2 {
    font-size: 26px;
  }

  .overview-icon img {
    width: 110px;
  }

  .imps-overview-visual img {
    max-width: 320px;
  }
}


.enquiry-footer-cards {
  padding: 100px 20px;
}

.footer-card-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-card {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* ================= IMPS STATS (100% SAME PROPERTIES) ================= */

.imps-stats {
  padding: 20px 20px 20px;
}

/* GRID — SAME AS footer-card-grid */
.imps-card-grid {
  /* max-width: 900px; */
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.imps-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.imps-card {
  position: relative;
  padding: 28px 25px;
  border-radius: 26px;

  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  backdrop-filter: blur(14px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  text-align: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  font-size: 14px;
  line-height: 1.6;
  color: rgb(157, 157, 184);
}

/* HOVER — SAME */
.imps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* STRONG TEXT — SAME FEEL AS h4 */
.imps-card strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 6px;
  color: #ffffff;
}

/* ================= RESPONSIVE (same logic) ================= */

/* Mobile */
@media (max-width: 767px) {
  .imps-stats {
    padding: 20px 16px 90px;
  }

  .imps-card {
    padding: 32px 26px;
  }
}

@media (max-width: 600px) {
  .imps-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .imps-card-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= IMPS FLOW ================= */
.imps-flow {
  padding: 80px 20px;
  text-align: center;

  background: conic-gradient(
    from 60deg at 50% 50%,
    #198754,
    rgba(0, 240, 140, 0.55),
    rgb(40 58 200),
    rgb(113 61 174),
    #198754
  );
}

.imps-flow h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #ffffff;
}

/* ================= TRACK ================= */
.flow-track {
  position: relative;
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CONNECTING LINE */
.flow-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #8cff00,
    #22c55e,
    transparent
  );

  background-size: 300% 100%;
  animation: flowLine 3s linear infinite;
}

@keyframes flowLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ================= STEP ================= */
.flow-step {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: transform 0.4s ease;
}

.flow-step:hover {
  transform: translateY(-6px);
}

/* ================= DOT ================= */
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 14px;

  background: #22c55e;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ================= CARD ================= */
.flow-card {
  padding: 22px 22px;
  max-width: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);

  border-radius: 18px;

  box-shadow:
    0 16px 35px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);

  font-size: 14px;
  font-weight: 600;
  color: #020617;

  animation: floatCard 4s ease-in-out infinite;
}

/* staggered float */
.flow-step:nth-child(2) .flow-card { animation-delay: 0.3s; }
.flow-step:nth-child(3) .flow-card { animation-delay: 0.6s; }
.flow-step:nth-child(4) .flow-card { animation-delay: 0.9s; }
.flow-step:nth-child(5) .flow-card { animation-delay: 1.2s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================= ICON ================= */
.flow-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  border-radius: 12px;

  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #1e40af;

  box-shadow: 0 10px 22px rgba(37,99,235,0.25);
}

/* ================= FINAL STEP ================= */
.flow-card.highlight {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
}

.flow-card.highlight .flow-icon {
  background: #196944;
  color: #ffffff;
  box-shadow: 0 0 24px rgba(255,255,255,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .flow-track {
    flex-direction: column;
    gap: 44px;
  }

  .flow-track::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: auto;

    background: linear-gradient(
      180deg,
      transparent,
      #8cff00,
      #22c55e,
      transparent
    );
  }

  .flow-card {
    max-width: 240px;
  }
}


/* ================= FEATURES ================= */
.imps-features {
  padding: 120px 20px;
  background: #f7f8fa;
  text-align: center;
}

.imps-features h2 {
  font-size: 32px;
}

/* GRID */
.features-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 34px 32px;
  border-radius: 24px;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* LEFT ACCENT BAR */
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2563eb, #7c3aed);
}

/* HOVER */
.feature-card:hover {
  background: linear-gradient(40deg, rgb(4, 25, 18), rgb(0, 60, 42));

  cursor: pointer;
  color: white;
  transform: translateY(-10px); 
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
/* TEXT */
.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.feature-card:hover h4 {
  color: #ecfdf5;
}

.feature-card:hover p {
  color: #bbf7d0;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .imps-features h2 {
    font-size: 26px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= USE CASES ================= */
.imps-usecases {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #f8fafc, #ffffff);
}

.imps-usecases-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.imps-usecases-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imps-usecases-image img {
  max-width: 250px;        
  width: 100%;
  height: auto;

  border-radius: 28px;    

  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);

  box-shadow:
    0 30px 70px rgba(15,23,42,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);

  /* 🔥 ADD THIS */
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.imps-usecases-image img:hover {
  transform: scale(1.12); 
  box-shadow:
    0 45px 110px rgba(15,23,42,0.35),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .imps-usecases-image img {
    max-width: 320px;      /* mobile me aur compact */
    border-radius: 22px;
  }
}


/* RIGHT CONTENT */
.imps-usecases-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 50px;
  text-align: left;
}

/* GRID */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD (unchanged premium look) */
.usecase-card {
  position: relative;
  text-align: center;
  padding: 34px 28px;
  border-radius: 26px;
  font-size: 15px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* animated border */
.usecase-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    #25ebb7,
    #7c3aed,
    transparent
  );
  opacity: 0.25;
  animation: borderFlow 6s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.16);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .imps-usecases-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .imps-usecases-content h2 {
    text-align: center;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= USP ================= */
.imps-usp {
  padding: 140px 20px;
  background: #f7f8fa;
  text-align: center;
}

.usp-grid {
  max-width: 1100px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.usp-card {
  position: relative;
  padding: 38px 34px;
  border-radius: 28px;
  background: #fff;
  font-size: 15px;
  color: #0f172a;

  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.1);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* glow pulse */
.usp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top,
    rgba(124, 58, 237, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.usp-card:hover::after {
  opacity: 1;
}

.usp-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 46px 100px rgba(0, 0, 0, 0.18);
}

/* ================= CTA WITH VIDEO ================= */
.video-cta {
  position: relative;
  padding: 150px 20px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  z-index: 1;
}

/* OVERLAY for readability */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 15, 10, 0.75),
    rgba(2, 15, 10, 0.55)
  );
  z-index: 2;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: auto;
}

.imps-cta h2 {
  font-size: 36px;
}

.imps-cta p {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* BUTTON */
.cta-btn {
  margin-top: 34px;
  padding: 18px 60px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;

  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  cursor: pointer;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .video-cta {
    padding: 110px 20px;
  }

  .imps-cta h2 {
    font-size: 28px;
  }
}
