:root {
  --theme-color: #133660;
  --secondary-color: #1699AD;
  --lavender: #e8e4f3;
  --deep-navy: #1a1535;
  --purple-dark: #2d2653;
  --accent-purple: #7c5cbf;
  --text-dark: #1a1535;
  --text-muted: #6b6480;
  --white: #ffffff;
  --card-light: #ede9f8;
  --card-border: rgba(124, 92, 191, 0.08);
  --glass-bg: rgba(40, 58, 60, 0.55);
  --glass-border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f5f3fc;
  color: var(--text-dark);
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: 'DM Serif Display', serif;
}

a {
  text-decoration: none;
}

.py-50 {
  padding: 50px 0 !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.navbar {
  background: rgba(245, 243, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 92, 191, 0.1);
  padding: 14px 0;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.navbar-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--deep-navy) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height 0.2s ease-in-out;
}

.navbar-brand .logo-cross {
  font-size: 1.5rem;
  color: var(--accent-purple);
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 55px;
  }
}


.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 16px !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent-purple) !important;
}

.btn-theme {
  background: var(--theme-color);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-theme:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

/* //////////////////// Card Section /////////////////////// */

.cards-section-header {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 24px;
    }

    .cards-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9b88d4;
      margin-bottom: 16px;
      display: block;
    }

    .cards-heading {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--text-heading);
      letter-spacing: -0.02em;
      max-width: 800px;
      margin: 0 auto;
    }

    .cards-heading span.light-text {
      color: #7c7694;
      font-weight: 300;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 30px 24px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 330px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(26, 21, 53, 0.08);
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      /* background: linear-gradient(rgba(26, 21, 53, 0.85), rgba(26, 21, 53, 0.92)), url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&q=80&w=600'); */
      background: linear-gradient(to bottom, var(--theme-color), var(--secondary-color));
      background-size: cover;
      background-position: center;
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      border: 1px solid var(--glass-border);
      opacity: 0;
      transition: opacity 0.35s ease;
      z-index: 1;
    }

    .stat-card.active::before,
    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-card .card-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .more-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      color: var(--theme-color);
      background: rgba(5, 150, 105, 0.08);
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
      transition: all 0.35s ease;
      width: fit-content;
    }

    .stat-card.active .more-badge,
    .stat-card:hover .more-badge {
      background: rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.95);
    }

    .card-title-text {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      line-height: 1.25;
      color: var(--text-heading);
      margin-bottom: 12px;
      transition: color 0.35s ease;
    }

    .stat-card.active .card-title-text,
    .stat-card:hover .card-title-text {
      color: #ffffff;
    }

    .card-body-text {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text-sub);
      flex-grow: 1;
      margin-bottom: 0;
      transition: color 0.35s ease;
    }

    .stat-card.active .card-body-text,
    .stat-card:hover .card-body-text {
      color: rgba(255, 255, 255, 0.78);
    }

    .card-citation {
      font-size: 11px;
      color: var(--text-cite);
      margin-top: 28px;
      line-height: 1.45;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 14px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      transition: all 0.35s ease;
    }

    .card-citation-text {
      flex-grow: 1;
    }

    .stat-card.active .card-citation,
    .stat-card:hover .card-citation {
      color: rgba(255, 255, 255, 0.55);
      border-top-color: rgba(255, 255, 255, 0.15);
    }

    .cite-icon {
      display: inline-block;
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      margin-top: 2px;
      opacity: 0.5;
      transition: opacity 0.35s ease;
    }

    .stat-card.active .cite-icon,
    .stat-card:hover .cite-icon {
      opacity: 0.8;
      color: rgba(255, 255, 255, 0.7);
    }

    @media (max-width: 600px) {
      .stat-card {
        min-height: 300px;
      }
    }


/*//////////////////// ── INSTA SECTION ── /////////////////////*/
.insta-section {
  min-height: 100vh;
  background: linear-gradient(160deg, #dce8ff 0%, #eaf2ff 45%, #d0e2ff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: rgba(80, 140, 255, 0.15);
  top: -120px;
  left: -120px;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: rgba(60, 110, 255, 0.12);
  bottom: -80px;
  right: -60px;
}

.left-content {
  position: relative;
  z-index: 2;
}

.left-content p {
  font-size: 1.05rem;
  color: #3b4b68;
  font-weight: 500;
  line-height: 1.7;
  max-width: 240px;
}

.stat-num {
  font-size: 5.5rem;
  font-weight: 900;
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 24px;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #57688c;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

.center-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hand-area {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.hand-image {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  opacity: 0;
  transform: translateY(120px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  will-change: transform, opacity;
}

.hand-image.in-view {
  opacity: 1;
  transform: translateY(0);
}

.right-content {
  position: relative;
  z-index: 2;
}

.preview-thumb {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1.05;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(30, 80, 200, 0.15);
  position: relative;
  overflow: hidden;
}


.preview-thumb .preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.pin-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.right-content h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
  max-width: 200px;
}

.right-content p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  max-width: 250px;
}

@media (max-width: 991.98px) {
  .preview-thumb,
  .right-content h5,
  .right-content p {
    max-width: 100% !important;
  }
}

/* ////////////////////// ── FOOTER ── //////////////////////////////////////////// */

.hero-section {
  background: linear-gradient(to bottom, var(--theme-color) 60%, var(--secondary-color) 100%);
  border-radius: 20px;
  padding: 80px 20px;
  text-align: center;
  margin: 20px;
}

.hero-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-get-started {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-get-started:hover {
  opacity: 0.85;
}

/* ── Footer Wrapper Card ── */
.footer-card-section {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  margin: 16px 20px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 92, 191, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01) !important;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.brand-logo {
  width: auto;
  height: 70px;
  display: block;
}

.footer-tagline {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
}

/* Nav columns */
.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.84rem;
  display: inline-block;
  transition: color 0.2s, transform 0.2s ease-in-out;
}

.footer-links a:hover {
  color: #111;
  transform: translateX(4px);
}

.footer-links a i.fa-caret-right {
  color: var(--secondary-color);
  margin-right: 6px;
  font-size: 0.8rem;
  display: inline-block;
}

.contact-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-links i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background-color 0.2s, transform 0.2s;
}

.contact-links li a:hover i {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.social-links li {
  margin-bottom: 0 !important;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #f0ecfc;
  border: 1px solid rgba(19, 54, 96, 0.1);
  color: var(--theme-color) !important;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  color: #fff !important;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(19, 54, 96, 0.15);
}

.social-links li:nth-child(1) a:hover {
  background-color: #1877f2 !important;
  border-color: #1877f2 !important;
}

.social-links li:nth-child(2) a:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.social-links li:nth-child(3) a:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
}

.social-links li:nth-child(4) a:hover {
  background-color: #0077b5 !important;
  border-color: #0077b5 !important;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.78rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #111;
}

/* ── Watermark inside Footer ── */
.watermark-text {
  position: absolute;
  left: 0;
  right: 0;
  font-weight: 900;
  color: rgba(180, 180, 180, 0.12);
  /* Soft watermark color matching the mockup */
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  text-align: center;
  transform-origin: center bottom;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Mobile */
@media (max-width: 575.98px) {
  .footer-card-section {
    padding: 10px;
  }

  .footer-content {
    margin-bottom: 40px;
  }

  .watermark-text {
    font-size: clamp(3rem, 15vw, 5rem);
    transform: scaleX(1.1);
    bottom: -20px;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
  .footer-content {
    margin-bottom: 60px;
  }

  .watermark-text {
    font-size: clamp(5rem, 15vw, 8.5rem);
    transform: scaleX(1.1);
    bottom: -40px;
  }
}

/* Laptop/Desktop (Medium) */
@media (min-width: 992px) and (max-width: 1200px) {
  .footer-content {
    margin-bottom: 80px;
  }

  .watermark-text {
    font-size: clamp(8rem, 15vw, 11rem);
    transform: scaleX(1.1);
    bottom: -55px;
  }
}

/* Large Laptop/Desktop */
@media (min-width: 1200px) {
  .footer-content {
    margin-bottom: 100px;
  }

  .watermark-text {
    font-size: clamp(11rem, 15vw, 14rem);
    transform: scaleX(1.1);
    bottom: -83px;
  }
}

/* ==========================================================================
   ── INDEX PAGE STYLES ──
   ========================================================================== */
/* ── HERO ── */
.hero {
  background: #ffffff;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

/* Wavy mesh-like background */
.hero-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero-wave-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  opacity: 0.95;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 991.98px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-left-col {
  flex: 0 0 68%;
  max-width: 68%;
}

.hero-right-col {
  flex: 0 0 28%;
  max-width: 28%;
  text-align: right;
  padding-bottom: 12px;
}

@media (max-width: 991.98px) {
  .hero-left-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-right-col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 32px;
  }
}

/* Badges */
.partner-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.badge-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.badge-partner:hover {
  transform: translateY(-1px);
}

.badge-enterprise {
  background: #0061e0;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 97, 224, 0.12);
}

.badge-certified {
  background: #ffffff;
  color: #0b0f19;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.badge-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #0b0f19;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #4b5563;
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Contact link styling */
.btn-contact-us {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b0f19;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-contact-us:hover {
  color: #0061e0;
}

.btn-contact-us .arrow {
  transition: transform 0.2s ease-in-out;
}

.btn-contact-us:hover .arrow {
  transform: translateX(4px);
}

.coin-left {
  width: 120px;
  height: 120px;
  left: 8%;
  bottom: 60px;
  transform: rotate(-15deg) perspective(200px) rotateY(30deg);
}

.coin-right {
  width: 100px;
  height: 100px;
  right: 10%;
  bottom: 80px;
  transform: rotate(10deg) perspective(200px) rotateY(-30deg);
  opacity: 0.8;
}

/* Small flowers */
.flower-dots span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #e0d5f5, #9b88d4);
}

/* ── WHAT IS ── */
.section-what {
  padding: 100px 0;
  background: #f8f7fb;
}

.section-what h2.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #0b0f19;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-what p.section-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #334155;
  line-height: 1.6;
  font-weight: 400;
}

.btn-explore {
  background: var(--theme-color);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-explore:hover {
  background: #1699ad;
  color: #fff;
  transform: translateY(-2px);
}

/* ── FEATURE CARDS ── */
.feat-card {
  border-radius: 24px;
  padding: 40px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(28, 24, 48, 0.08);
}

.feat-card-light {
  background: #e0e5fb;
  color: var(--theme-color);
}

.feat-card-dark {
  background: var(--theme-color);
  color: #ffffff;
}

.feat-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.feat-card-light p {
  color: var(--theme-color);
  max-width: 60%;
}

.feat-card-dark p {
  color: #cbd5e1;
  margin-top: auto;
}

.feat-card-bottom-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.feat-card-img-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44%;
  height: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 24px 0;
}

.feat-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.feat-coin-small {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8bfde, #7a65b8);
  box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.4;
}

/* ── ANIMATIONS ── */
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.coin-left {
  animation: floatUp 4s ease-in-out infinite;
}

.coin-right {
  animation: floatUp 4s ease-in-out infinite 1.2s;
}

/* Fade in on load */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-1 {
  animation-delay: 0.1s;
}

.fade-in-2 {
  animation-delay: 0.25s;
}

.fade-in-3 {
  animation-delay: 0.4s;
}

.fade-in-4 {
  animation-delay: 0.55s;
}

/* ==========================================================================
   ── ABOUT PAGE STYLES ──
   ========================================================================== */
/* ── HIGH-END HERO SECTION ── */
.about-hero {
  padding: 220px 0 160px;
  position: relative;
  overflow: hidden;
  background: #f7f6fd;
}

/* Soft blurred floating background blobs */
.about-hero .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 1;
  opacity: 0.65;
  pointer-events: none;
}

.about-hero .blob-primary {
  width: 500px;
  height: 500px;
  background: rgba(22, 153, 173, 0.3);
  top: -120px;
  right: -80px;
  animation: floatSmooth 9s ease-in-out infinite alternate;
}

.about-hero .blob-secondary {
  width: 400px;
  height: 400px;
  background: rgba(124, 92, 191, 0.25);
  bottom: -80px;
  left: -80px;
  animation: floatSmooth 13s ease-in-out infinite alternate-reverse;
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(124, 92, 191, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 191, 0.08) 1px, transparent 1px);
  z-index: 2;
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.about-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: #0b0f19;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.about-hero h1 span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

/* Elegant drawing line animation under title */
.about-hero h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.about-hero p.lead-text {
  color: #4b5563;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  max-width: 840px;
  line-height: 1.7;
}

/* ── GLASSMORPHIC STORIES ── */
.story-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

.story-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #0b0f19;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.story-text {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-highlight {
  border-left: 5px solid var(--secondary-color);
  padding-left: 24px;
  font-style: italic;
  color: #1a1535;
  font-weight: 600;
  margin: 32px 0;
  font-size: 1.15rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.story-highlight:hover {
  color: var(--secondary-color);
}

/* Modern Stats Counter Overlay on Image */
.story-img-container {
  position: relative;
  padding: 10px;
}

.story-img-wrapper {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(28, 24, 48, 0.08);
  border: 1px solid var(--glass-border);
}

.story-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-container:hover .story-img {
  transform: scale(1.06);
}

.stats-overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 32px;
  z-index: 4;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-overlay-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: #4b5563;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── NEON GLASSMISM FOR MISSION & VISION ── */
.mission-vision-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6fd 100%);
  position: relative;
}

.mv-card {
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1;
}

.mv-card-mission {
  background: linear-gradient(135deg, #133660 0%, #152c4a 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(19, 54, 96, 0.25);
}

.mv-card-vision {
  background: rgba(255, 255, 255, 0.65);
  color: #0b0f19;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Advanced Glowing Borders on Hover */
.mv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(22, 153, 173, 0.15), transparent);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
}

.mv-card:hover::before {
  transform: translateX(100%);
}

.mv-card:hover {
  transform: translateY(-12px) scale(1.015);
}

.mv-card-mission:hover {
  box-shadow: 0 35px 70px rgba(19, 54, 96, 0.35), var(--neon-glow);
}

.mv-card-vision:hover {
  box-shadow: 0 35px 70px rgba(124, 92, 191, 0.15);
  border-color: rgba(124, 92, 191, 0.35);
}

.mv-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 36px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv-card:hover .mv-icon-box {
  transform: rotate(15deg) scale(1.1);
}

.mv-icon-box-mission {
  background: rgba(255, 255, 255, 0.08);
  color: #1699ad;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-icon-box-vision {
  background: rgba(22, 153, 173, 0.08);
  color: #1699ad;
  border: 1px solid rgba(22, 153, 173, 0.15);
}

.mv-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.mv-card-mission p {
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.mv-card-vision p {
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.8;
}

.mv-shape {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 10rem;
  opacity: 0.03;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.mv-card:hover .mv-shape {
  transform: rotate(-15deg) scale(1.1);
}

/* ── GLASS CORE VALUES ── */
.values-section {
  padding: 120px 0;
  background-color: #f7f6fd;
  position: relative;
}

.value-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glass-shadow);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(124, 92, 191, 0.12);
  border-color: rgba(124, 92, 191, 0.3);
  background: #ffffff;
}

.value-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(22, 153, 173, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
  border: 1px solid rgba(22, 153, 173, 0.15);
  transition: transform 0.4s ease, background 0.4s ease;
}

.value-card:hover .value-icon-box {
  transform: scale(1.1);
  background: var(--secondary-gradient);
  color: #ffffff;
}

.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0b0f19;
  margin-bottom: 16px;
}

.value-card p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* ── PREMIUM TEAM AVATARS ── */
.team-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.team-member-card {
  text-align: center;
  margin-bottom: 40px;
  background: #fcfcfd;
  padding: 50px 30px;
  border-radius: 32px;
  border: 1px solid rgba(124, 92, 191, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(124, 92, 191, 0.08);
  border-color: rgba(124, 92, 191, 0.2);
}

.team-member-img-box {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 30px rgba(124, 92, 191, 0.12);
  position: relative;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member-card:hover .team-member-img {
  transform: scale(1.12);
}

.team-member-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0b0f19;
  margin-bottom: 8px;
}

.team-member-card p.role {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.team-member-card p.bio {
  color: #6b6480;
  font-size: 0.98rem;
  max-width: 270px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.team-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-social-links a {
  color: #98a2b3;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.team-social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

/* ── MOBILE RESPONSIVENESS OVERRIDES ── */
@media (max-width: 991.98px) {
  .about-hero {
    padding: 160px 0 100px;
  }
  .mv-card {
    padding: 40px 32px;
  }
  .story-img {
    height: 380px;
  }
  .stats-overlay-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    justify-content: center;
  }
}

/* ==========================================================================
   ── SERVICES PAGE STYLES ──
   ========================================================================== */
:root {
  --primary-gradient: linear-gradient(135deg, #133660 0%, #1a457a 100%);
  --secondary-gradient: linear-gradient(135deg, #1699ad 0%, #7c5cbf 100%);
  --glass-border: rgba(124, 92, 191, 0.12);
  --glass-shadow: 0 30px 60px rgba(28, 24, 48, 0.04);
  --neon-glow: 0 0 30px rgba(22, 153, 173, 0.15);
}

body {
  background-color: #f7f6fd;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── HERO ── */
.services-hero {
  padding: 220px 0 140px;
  position: relative;
  overflow: hidden;
  background: #f7f6fd;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 1;
  opacity: 0.65;
  pointer-events: none;
}

.blob-primary {
  width: 500px;
  height: 500px;
  background: rgba(22, 153, 173, 0.28);
  top: -120px;
  right: -80px;
  animation: floatSmooth 9s ease-in-out infinite alternate;
}

.blob-secondary {
  width: 400px;
  height: 400px;
  background: rgba(124, 92, 191, 0.22);
  bottom: -80px;
  left: -80px;
  animation: floatSmooth 13s ease-in-out infinite alternate-reverse;
}

@keyframes floatSmooth {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-40px) rotate(90deg) scale(1.1); }
}

.services-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(124, 92, 191, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 191, 0.08) 1px, transparent 1px);
  z-index: 2;
  pointer-events: none;
}

.services-hero .container {
  position: relative;
  z-index: 3;
}

.services-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: #0b0f19;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.services-hero h1 span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.services-hero h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes drawLine {
  to { transform: scaleX(1); }
}

.services-hero p.lead-text {
  color: #4b5563;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  max-width: 820px;
  line-height: 1.7;
}

/* ── TRENDY BENTO GRID SERVICES ── */
.services-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glass-shadow);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.size-lg { grid-column: span 8; }
.size-sm { grid-column: span 4; }
.size-md { grid-column: span 6; }

@media (max-width: 991.98px) {
  .size-lg, .size-sm, .size-md { grid-column: span 12; }
}

.bento-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(22, 153, 173, 0.18) 0%, transparent 70%);
  top: -75px;
  right: -75px;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
}

.bento-card:hover::after {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.28) 0%, transparent 70%);
}

.bento-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 80px rgba(124, 92, 191, 0.15);
  border-color: rgba(124, 92, 191, 0.25);
  background: #ffffff;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(22, 153, 173, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 36px;
  border: 1px solid rgba(22, 153, 173, 0.15);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, color 0.4s ease;
}

.bento-card:hover .service-icon-box {
  transform: rotate(15deg) scale(1.1);
  background: var(--secondary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--neon-glow);
}

.bento-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #0b0f19;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.bento-card p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 24px;
}

.learn-more-btn {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.3s ease;
  text-decoration: none;
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.bento-card:hover .learn-more-btn {
  color: var(--secondary-color);
}

.bento-card:hover .learn-more-btn i {
  transform: translateX(6px);
}

/* ── PROCESS TIMELINE ── */
.process-section {
  padding: 120px 0;
  background-color: #f7f6fd;
  position: relative;
}

.process-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #0b0f19;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: center;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 30px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, rgba(22, 153, 173, 0.1), rgba(124, 92, 191, 0.4), rgba(22, 153, 173, 0.1));
  z-index: 1;
}

@media (max-width: 991.98px) {
  .process-grid::before {
    display: none;
  }
}

.process-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(124, 92, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.8rem;
  color: var(--theme-color);
  box-shadow: 0 10px 25px rgba(124, 92, 191, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-badge {
  transform: scale(1.12);
  border-color: var(--secondary-color);
  color: #ffffff;
  background: var(--secondary-gradient);
  box-shadow: 0 20px 40px rgba(22, 153, 173, 0.2);
}

.process-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0b0f19;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.92rem;
  color: #6b6480;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ── HIGH-END TECH STACK BENTO GRID ── */
.tech-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

.tech-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tech-bento-card {
  background: rgba(245, 243, 252, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tech-bento-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(124, 92, 191, 0.1);
  border-color: rgba(124, 92, 191, 0.25);
}

.tech-span-4 { grid-column: span 4; }
.tech-span-8 { grid-column: span 8; }
.tech-span-6 { grid-column: span 6; }
.tech-span-12 { grid-column: span 12; }

@media (max-width: 991.98px) {
  .tech-span-4, .tech-span-8, .tech-span-6 { grid-column: span 12; }
}

.tech-bento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tech-bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(22, 153, 173, 0.08);
  color: var(--secondary-color);
  border: 1px solid rgba(22, 153, 173, 0.15);
  transition: transform 0.4s ease;
}

.tech-bento-card:hover .tech-bento-icon {
  transform: rotate(10deg) scale(1.1);
}

.tech-bento-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0f19;
  margin: 0;
}

.tech-bento-card p {
  color: #6b6480;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.tech-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  background: #f1eefc;
  color: #7c5cbf;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(124, 92, 191, 0.15);
  transition: background 0.3s, color 0.3s;
}

.tech-bento-card:hover .tech-pill {
  background: var(--theme-color);
  color: #ffffff;
  border-color: transparent;
}

/* Color variations for cards */
.tech-pill-accent {
  background: #e0f2f1;
  color: #1699ad;
  border-color: rgba(22, 153, 173, 0.15);
}

.tech-bento-card:hover .tech-pill-accent {
  background: var(--secondary-color);
  color: #ffffff;
}

/* ── MOBILE RESPONSIVENESS OVERRIDES ── */
@media (max-width: 991.98px) {
  .services-hero {
    padding: 160px 0 100px;
  }
  .bento-grid {
    gap: 20px;
  }
  .bento-card {
    padding: 36px 30px;
    border-radius: 24px;
  }
  .tech-bento-grid {
    gap: 20px;
  }
  .tech-bento-card {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
  }
  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
  }
  .process-step p {
    max-width: 260px;
  }
  .tech-bento-grid {
    display: flex;
    flex-direction: column;
  }
}

/* ==========================================================================
   ── CONTACT PAGE STYLES ──
   ========================================================================== */
/* ── CONTACT HERO SECTION ── */
.contact-hero {
  padding: 220px 0 140px;
  position: relative;
  overflow: hidden;
  background: #f7f6fd;
}

.contact-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(124, 92, 191, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 191, 0.08) 1px, transparent 1px);
  z-index: 2;
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 3;
}

.contact-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: #0b0f19;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.contact-hero h1 span {
  background: linear-gradient(135deg, #1699ad 0%, #7c5cbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.contact-hero h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #1699ad 0%, #7c5cbf 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.contact-hero p.lead-text {
  color: #4b5563;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  max-width: 820px;
  line-height: 1.7;
}

/* Contact page sections */
.contact-page-section {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.contact-page-section .container {
  position: relative;
  z-index: 2;
}

/* Cards */
.contact-cards-grid {
  margin-bottom: 80px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  border-color: #d0d5dd;
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(22, 153, 173, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  border: 1px solid rgba(22, 153, 173, 0.15);
}

.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #475467;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.5;
}

.contact-link {
  font-weight: 600;
  color: #7C5CBF;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.contact-link:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.faq-container-box {
  max-width: 768px;
  margin: 80px auto 0;
}

.faq-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #101828;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eaecf0;
}

.faq-item {
  border-bottom: 1px solid #eaecf0;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.1rem;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  flex-shrink: 0;
}

.faq-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #101828;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
  color: var(--secondary-color);
}

.faq-chevron {
  color: #98a2b3;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
}

.faq-item.active .faq-chevron {
  color: var(--secondary-color);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding-top: 12px;
  padding-left: 40px;
  color: #475467;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--secondary-color);
}

.btn-load-more {
  background: #101828;
  color: #ffffff;
  border: 1px solid #101828;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.btn-load-more:hover {
  background: #1d2939;
  border-color: #1d2939;
  transform: translateY(-1px);
}

.d-none-faq {
  display: none !important;
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 850px;
  margin: 0 auto 80px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px -2px rgba(16, 24, 40, 0.04), 0 2px 6px -1px rgba(16, 24, 40, 0.02);
  position: relative;
}

.contact-form-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #101828;
  font-size: 1.8rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-form-subtitle {
  color: #475467;
  font-size: 0.98rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #344054;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #667085;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.form-control-custom {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #101828;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.form-control-custom:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(22, 153, 173, 0.12);
}

.form-control-custom:focus + i {
  color: var(--secondary-color);
}

.form-control-textarea {
  padding-left: 14px;
  min-height: 120px;
  resize: vertical;
}

.btn-submit-form {
  background: var(--theme-color);
  color: #ffffff;
  border: 1px solid var(--theme-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.btn-submit-form:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .contact-form-container {
    padding: 24px;
    margin-bottom: 60px;
  }
}

select.form-control-custom {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23667085' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px !important;
  cursor: pointer;
}

/* Sidebar Contact Info styling */
.contact-info-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 700;
  color: #101828;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  color: #475467;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-card-sidebar {
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.contact-card-sidebar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  border-color: #d0d5dd;
}

.contact-card-sidebar .card-icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-card-sidebar .card-content-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 4px;
}

.contact-card-sidebar .card-content-box p {
  font-size: 0.92rem;
  color: #475467;
  margin-bottom: 4px;
  line-height: 1.4;
}

/* Adjust contact form container for column layout */
.contact-form-container {
  max-width: 100%;
  margin-bottom: 0;
}

/* Secondary Theme Button */
.btn-theme-outline {
  background: transparent;
  color: var(--theme-color) !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid var(--theme-color);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-theme-outline:hover {
  background: var(--theme-color);
  color: #fff !important;
  transform: translateY(-1px);
}

