/* Homepage CSS */

/* Header Section */

.header-section {
  position: relative;
  /* background: #000008; */
  background: #0c0c0d;
  background-image: radial-gradient(at top right, #132859 0%, #1570ef00 60%);
  color: white;
}

.background-overlay {
  position: absolute;
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    #15ebef9c 0%,
    #0c0c0d00 75%
  );
  opacity: 0.2;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo .logo-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* .text-content {
  animation: fadeInUp 1s ease-in-out;
} */

.subheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.heading {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  font-size: 18px;
  color: #ffffffbf;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #00bfae;
  color: white;
  padding: 15px 30px !important;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #008d85;
}

/* Wrapper */
.features-wrapper {
  margin-top: 20px;
}

/* Each item */
.feature-item {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Text */
.feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* Dot container */
.ping-dot {
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner core */
.ping-core {
  width: 6px;
  height: 6px;
  background-color: #e0e7ff;
  border-radius: 50%;
  z-index: 2;
}

/* Animated ring */
.ping-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #6366f1;
  border-radius: 50%;
  opacity: 0.6;
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Animation */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  80%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stack Cards Section */

/* ── Section ── */
.pl-solutions-section {
  background: #ffffff;
  padding: 80px 0 120px;
  overflow: hidden;
}

.pl-solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 560px;
}

/* ── Left heading ── */
.pl-solutions-left {
  flex: 0 0 500px;
  max-width: 500px;
  padding-top: 20px;
}

.pl-solutions-heading {
  /* font-family: Georgia, "Times New Roman", serif; */
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  color: #003832;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.pl-solutions-body {
  font-size: 15px;
  line-height: 1.65;
  color: #5a6e6b;
  margin: 0;
  max-width: 320px;
}

/* ── Desktop stack ── */
.pl-solutions-right {
  flex: 1;
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pl-cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.pl-card-wrapper {
  position: absolute;
  width: 285px;
  height: 400px;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease;
  transform-origin: bottom center;
  will-change: transform;
}

.pl-card-inner {
  border-radius: 28px;
  background: #f0f2ee;
  width: 100%;
  height: 100%;
  background: #f0f2ee;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}

.pl-card-title {
  /* font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Poppins, sans-serif; */
  font-size: 16px;
  font-weight: 600;
  color: #003832;
  text-align: center;
  padding: 0 20px 12px;
  flex-shrink: 0;
}

.pl-card-img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.pl-card-img {
  width: 92%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Card positions */
.pl-card-pos-1 {
  left: 10px;
  bottom: 0px;
  z-index: 5;
  transform: rotate(-12deg) translate(0px, 60px);
}
.pl-card-pos-2 {
  left: 100px;
  bottom: 30px;
  z-index: 4;
  transform: rotate(-6deg) translate(0px, 30px);
}
.pl-card-pos-3 {
  left: 210px;
  bottom: 60px;
  z-index: 3;
  transform: rotate(0deg) translate(0px, 0px);
}
.pl-card-pos-4 {
  left: 320px;
  bottom: 40px;
  z-index: 2;
  transform: rotate(5deg) translate(0px, 20px);
}
.pl-card-pos-5 {
  left: 420px;
  bottom: 20px;
  z-index: 1;
  transform: rotate(10deg) translate(0px, 40px);
}

/* Hover states */
.pl-card-hovered {
  border-radius: 28px;
  background: #f0f2ee;
  z-index: 20 !important;
  transform: rotate(0deg) translate(0px, -40px) scale(1.05) !important;
  box-shadow: 0 32px 64px rgba(0, 56, 50, 0.18) !important;
}
.pl-card-pos-1.pl-card-lift-left {
  transform: rotate(-16deg) translate(-30px, 80px) !important;
}
.pl-card-pos-2.pl-card-lift-left {
  transform: rotate(-9deg) translate(-20px, 50px) !important;
}
.pl-card-pos-3.pl-card-lift-left {
  transform: rotate(-4deg) translate(-10px, 20px) !important;
}
.pl-card-pos-4.pl-card-lift-left {
  transform: rotate(-1deg) translate(-5px, 10px) !important;
}
.pl-card-pos-2.pl-card-lift-right {
  transform: rotate(-3deg) translate(10px, 40px) !important;
}
.pl-card-pos-3.pl-card-lift-right {
  transform: rotate(3deg) translate(15px, 10px) !important;
}
.pl-card-pos-4.pl-card-lift-right {
  transform: rotate(8deg) translate(20px, 30px) !important;
}
.pl-card-pos-5.pl-card-lift-right {
  transform: rotate(14deg) translate(30px, 60px) !important;
}

/* ── Show/hide helpers ── */
.pl-desktop-only {
  display: flex;
}
.pl-mobile-only {
  display: none;
}

/* ── Mobile Swiper ── */
.pl-mobile-swiper-wrap {
  padding: 0 0 48px;
}

.pl-mobile-swiper {
  padding-bottom: 40px !important;
}

.pl-mobile-card {
  background: #f0f2ee;
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}

.pl-mobile-card-title {
  /* font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Poppins, sans-serif; */
  font-size: 16px;
  font-weight: 600;
  color: #003832;
  text-align: center;
  padding: 0 20px 12px;
  flex-shrink: 0;
}

.pl-mobile-card-img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.pl-mobile-card-img {
  width: 88%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Swiper pagination dots — green to match brand */
:global(.pl-mobile-swiper .swiper-pagination-bullet) {
  background: #003832;
  opacity: 0.25;
  width: 8px;
  height: 8px;
}
:global(.pl-mobile-swiper .swiper-pagination-bullet-active) {
  background: #003832;
  opacity: 1;
}

/* ── Responsive breakpoints ── */
@media (max-width: 991px) {
  .pl-desktop-only {
    display: none !important;
  }
  .pl-mobile-only {
    margin-top: 2rem;
    display: block !important;
  }

  .pl-solutions-section {
    padding: 60px 0 0;
  }
  .pl-solutions-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    min-height: auto;
    gap: 36px;
  }
  .pl-solutions-left {
    flex: none;
    max-width: 100%;
    padding-top: 0;
  }
  .pl-solutions-heading {
    font-size: 36px;
  }
  .pl-solutions-body {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pl-solutions-heading {
    font-size: 30px;
  }
  .pl-mobile-card {
    height: 300px;
  }
}

/* ── Tablet: show stack smaller ── */
@media (min-width: 992px) and (max-width: 1200px) {
  .pl-solutions-heading {
    font-size: 42px;
  }
  .pl-solutions-left {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .pl-card-wrapper {
    width: 230px;
    height: 330px;
  }
  .pl-card-pos-1 {
    left: 0px;
  }
  .pl-card-pos-2 {
    left: 80px;
  }
  .pl-card-pos-3 {
    left: 165px;
  }
  .pl-card-pos-4 {
    left: 250px;
  }
  .pl-card-pos-5 {
    left: 330px;
  }
}

/* Cred Section */

.cred-section {
  position: relative;
  overflow: hidden;
  margin: auto;
  height: 90vh;
  /* font-family: "Inter", sans-serif; */
}

.cred-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PREMIUM OVERLAY */
.cred-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.65)
  );
}

/* CONTENT CENTER */
.cred-content {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 20px;
}

/* TITLE (LUXURY FONT) */
.cred-title {
  /* font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Poppins, sans-serif; */
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #f5f5f5;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* DESCRIPTION */
.cred-desc {
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 400;
}

/* BUTTON (SUBTLE GLASS STYLE) */
.cred-btn {
  margin-top: 32px;
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.cred-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .cred-title {
    font-size: 4.2rem;
  }

  .cred-desc {
    font-size: 1.1rem;
  }
}

/* Scroll Animation Section */

/* ══════════════════════════════════════
           SCROLL ANIMATION — POLISHED v3
        ══════════════════════════════════════ */

/* ── Ambient glow ── */
.sa-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition: background 0.9s ease;
}

/* ── Section header ── */
.sa-header {
  text-align: center;
  padding: 100px 24px 52px;
  position: relative;
  z-index: 2;
}
.sa-header-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0099ff;
  background: rgba(0, 153, 255, 0.08);
  border: 1px solid rgba(0, 153, 255, 0.22);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.sa-header-h2 {
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 800;
  /* ✅ FIX: solid dark color — no more ghost/fade */
  color: #0f1117;
  letter-spacing: 0px;
  line-height: 1.1;
  margin: 0 auto 14px;
}
.sa-header-accent {
  background: linear-gradient(135deg, #0099ff, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sa-header-sub {
  color: #6b7280;
  font-size: 18px;
  /* max-width: 400px;
  margin: 0 auto;
  line-height: 1.65; */
}

/* ── Tabs ── */
.sa-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 24px 44px;
  position: relative;
  z-index: 2;
}
.sa-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.sa-tab:hover {
  color: #111;
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.06);
}
.sa-tab.active {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.sa-tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: sa-pulse 2s ease infinite;
}
@keyframes sa-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ── Scroll container ── */
.sa-scroll-container {
  position: relative;
  z-index: 2;
}
.sa-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Grid ── */
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* gap: 72px; */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

/* ── Content (left) ── */
.sa-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sa-enter {
  animation: sa-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sa-exit-up {
  animation: sa-outU 0.18s ease forwards;
}
.sa-exit-down {
  animation: sa-outD 0.18s ease forwards;
}

@keyframes sa-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sa-outU {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-18px);
  }
}
@keyframes sa-outD {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* Tag */
.sa-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid;
  width: fit-content;
  margin-bottom: 16px;
}

/* ✅ FIX: Headline — both words fully opaque & crisp */
.sa-headline {
  font-size: clamp(42px, 3.8vw, 70px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 0 0 14px;
}
/* The plain word (e.g. "Gift", "AeronPay") */
.sa-headline-word {
  color: #0f1117;
  opacity: 1;
}
/* The accented word */
.sa-headline-accent {
  opacity: 1;
  transition: color 0.35s ease;
}

/* Accent bar */
.sa-accent-line {
  height: 3px;
  width: 56px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Description */
.sa-desc {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 430px;
}

/* Bullets */
.sa-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sa-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: sa-bIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes sa-bIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.sa-bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
/* ✅ FIX: bullet text is dark & fully opaque */
.sa-bullet-text {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* ✅ FIX: CTA button — pill shape, bold, no washed-out look */
.sa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 26px;
  letter-spacing: -0.1px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  position: relative;
  overflow: hidden;
}
.sa-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}
.sa-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.sa-cta:hover::after {
  background: rgba(255, 255, 255, 0.08);
}
.sa-cta:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

/* CTA arrow wrapper */
.sa-cta-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sa-cta:hover .sa-cta-arrow {
  transform: translateX(3px);
}

/* Progress pills */
.sa-progress {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sa-pill {
  height: 4px;
  width: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sa-pill:hover {
  background: rgba(0, 0, 0, 0.22);
}
.sa-pill.active {
  width: 32px;
}

/* ── Visual (right) ── */
.sa-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}
.sa-visual-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  /* // filter: blur(90px); */
  opacity: 0.5;
  pointer-events: none;
  transition: background 0.6s ease;
  animation: sa-breathe 4s ease infinite;
}
@keyframes sa-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.65;
  }
}
.sa-visual-card {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 460px; */
  max-width: 580px;
  height: 460px;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(16px); */
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

/* Corner bracket accent */
.sa-card-corner {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-radius: 4px 0 0 0;
  opacity: 0.45;
  z-index: 3;
}
.sa-visual-card::after {
  /* content: ""; */
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 0;
}

.sa-visual-enter {
  animation: sa-vIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sa-visual-exit {
  animation: sa-vOut 0.18s ease forwards;
}
@keyframes sa-vIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes sa-vOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}

/* Badge on card */
.sa-visual-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  z-index: 4;
}
.sa-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sa-pulse 2s ease infinite;
}

/* Orbit rings */
.sa-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.5s ease;
}
.sa-orbit-1 {
  width: 560px;
  height: 560px;
  animation: sa-spin 22s linear infinite;
}
.sa-orbit-2 {
  width: 680px;
  height: 680px;
  animation: sa-spin 34s linear infinite reverse;
}
@keyframes sa-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ════════════════════════════════
           MOBILE — plain stacked layout
           no sticky / scroll animation
        ════════════════════════════════ */
.sa-mobile-stack {
  display: none;
}

@media (max-width: 768px) {
  .heading {
    font-size: 45px;
  }
  /* Hide the scroll-driven layout */
  .sa-scroll-container,
  .sa-tabs,
  .sa-ambient {
    display: none !important;
  }

  /* Show plain stacked cards */
  .sa-mobile-stack {
    display: block;
    padding: 0 20px 60px;
  }

  .sa-header {
    padding: 60px 20px 36px;
  }
  .sa-header-h2 {
    font-size: 35px;
    letter-spacing: -1.2px;
    font-weight: 600;
  }
  .sa-header-sub {
    font-size: 15px;
  }

  .sa-m-card {
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
  }
  .sa-m-img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sa-m-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sa-m-tag {
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid;
    margin-bottom: 12px;
  }
  .sa-m-headline {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.05;
    color: #0f1117;
    margin: 0 0 10px;
  }
  .sa-m-accent-line {
    height: 3px;
    width: 44px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .sa-m-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .sa-m-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sa-m-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sa-m-bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .sa-m-bullet-text {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    line-height: 1.45;
  }
  .sa-m-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    border-radius: 999px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
  }
  .sa-m-cta-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Desktop responsive tweaks */
@media (min-width: 769px) and (max-width: 1100px) {
  .sa-grid {
    /* gap: 48px; */
    padding: 0 36px;
  }
  .sa-visual-card {
    height: 400px;
  }
  .sa-orbit-1 {
    width: 440px;
    height: 440px;
  }
  .sa-orbit-2 {
    width: 560px;
    height: 560px;
  }
}

/* Glow Card Section */

.fancy-text {
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(20px, 2.5vw, 40px);
  margin-bottom: 48px;
}

/* Initial state: ALL words visible but dim */
.fancy-text span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
  transform: translateY(0px);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.6s ease;
}

/* Animation trigger */
.fancy-text.animate span {
  transform: translateY(-8px);
  color: rgba(255, 255, 255, 0.95);

  /* smooth stagger (NOT fast) */
  transition-delay: calc(var(--i) * 0.08s);
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  background: #0e193d;
  border-radius: 26px;
}

/* Torch light effect */
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 20%) var(--y, 0%),
    rgba(79, 172, 254, 0.25),
    rgba(0, 242, 254, 0.15),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Border gradient glow */
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.6),
    rgba(99, 102, 241, 0.6),
    rgba(168, 85, 247, 0.6)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glow-section {
  border-top-right-radius: 88px;
  border-top-left-radius: 88px;
}

@media (max-width: 768px) {
  .glow-section {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
  }
}

/* .spotlight-card:hover::before,
.spotlight-card:hover::after {
  opacity: 1;
} */

/* Community HUB Section */

.community {
  background: #f0f4f8;
  background-image:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(46, 164, 79, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(45, 156, 219, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(108, 99, 255, 0.06) 0%,
      transparent 50%
    );
  padding: 100px 20px 80px;
  text-align: center;
  /* font-family: "DM Sans", sans-serif; */
  position: relative;
  overflow: hidden;
}

.community__bg-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

/* .container-xl {
  max-width: 1160px;
  margin: auto;
  position: relative;
} */

/* Badge */
.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a7a3a;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid rgba(46, 164, 79, 0.25);
  box-shadow: 0 2px 12px rgba(46, 164, 79, 0.1);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ea44f;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Title */
.title {
  /* font-family: "Sora", sans-serif; */
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.title span {
  color: #2ea44f;
  position: relative;
}

.subtitle {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  /* margin: 0 auto 60px; */
  max-width: 580px;
}

/* Cards Layout */
.community-hub-cards {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Card Base */
.community-hub-card {
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.whatsapp .card__glow {
  background: rgba(46, 164, 79, 0.2);
}
.telegram .card__glow,
.linkedin .card__glow {
  background: rgba(10, 102, 194, 0.18);
}

.social-glow {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.2),
    rgba(255, 122, 122, 0.2)
  );
}

.whatsapp {
  background: linear-gradient(160deg, #f0faf3 0%, #fff 60%);
  border-color: rgba(46, 164, 79, 0.2);
}

.social.featured {
  background: linear-gradient(160deg, #f5f3ff 0%, #fff8f8 60%, #fff 100%);
  border-color: rgba(108, 99, 255, 0.2);
  padding-top: 32px;
  padding-bottom: 32px;
}

.linkedin {
  background: linear-gradient(160deg, #f0f7ff 0%, #fff 60%);
  border-color: rgba(10, 102, 194, 0.2);
}

/* Icon */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.whatsapp .icon-box {
  background: #e6f7ec;
  color: #25a244;
}

.linkedin .icon-box {
  background: #e7f0fb;
  color: #0a66c2;
}

.icon-box.gradient {
  background: linear-gradient(135deg, #6c63ff 0%, #ff7a7a 100%);
  color: #fff;
}

/* Card Content */
.card__content {
  position: relative;
}

.card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.community-hub-card h3 {
  /* font-family: "Sora", sans-serif; */
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}

.pill.green {
  background: #d1fae5;
  color: #065f46;
}
.pill.purple {
  background: #ede9fe;
  color: #5b21b6;
}
.pill.blue {
  background: #dbeafe;
  color: #1e40af;
}

.community-hub-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 10px;
}

.whatsapp h4 {
  color: #2ea44f;
}
.social h4 {
  color: #7c6cff;
}
.linkedin h4 {
  color: #0a66c2;
}

.community-hub-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Social Icons Row */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.12);
  opacity: 0.9;
}

.social-icon.facebook {
  background: #1877f2;
}
.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-icon.twitter {
  background: #000;
}
.social-icon.youtube {
  background: #ff0000;
}

/* Buttons */
.community-hub-btn {
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  color: white;
  cursor: pointer;
  font-size: 14px;
  /* font-family: "DM Sans", sans-serif; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.community-hub-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.community-hub-btn.green {
  background: #2ea44f;
  box-shadow: 0 4px 14px rgba(46, 164, 79, 0.3);
}
.community-hub-btn.blue {
  background: #0a66c2;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}
.community-hub-btn.gradient {
  background: linear-gradient(90deg, #6c63ff 0%, #ff7a7a 100%);
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.35);
}

/* Footer */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}

.footer {
  color: #94a3b8;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer-dot {
  color: #cbd5e1;
  font-size: 13px;
}

@media (max-width: 900px) {
  .community-hub-cards {
    grid-template-columns: 1fr;
  }
  .title {
    font-size: 36px;
  }
}

/* Homepage Blogs Section */

.fs-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -40px;
  left: -80px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.28);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Image cards */
.fs-img-card {
  border-radius: 16px;
  overflow: hidden;
}

.fs-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Small card hover lift */
.fs-img-card-hover {
  transition:
    transform 0.3s ease,
    0.3s ease;
  cursor: default;
}

.fs-img-card-hover:hover {
  transform: translateY(-4px);
}

/* Intro text */
.fs-intro-text {
  font-size: 17px;
  font-weight: 400;
  color: #1e293b;
  line-height: 1.75;
  max-width: 680px;
}

/* Headline */
.fs-headline {
  font-size: 22px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Sub text */
.fs-sub {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Learn more link */
.fs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4f46e5;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fs-link:hover {
  color: #4338ca;
  text-decoration: none;
}

.fs-link svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.fs-link:hover svg {
  transform: translate(2px, -2px);
}

/* Call To Action Homepage */

/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap"); */

.hero-section {
  /* font-family: "Poppins", sans-serif; */
  position: relative;
  background-color: #0b0b1a;
}

/* Background radial */
.hero-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 42, 172, 0) 60%, #372aac 100%);
  z-index: 0;
}

/* Navbar blur */
.backdrop-blur {
  backdrop-filter: blur(10px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.3s;
  z-index: 1000;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

/* Badge */
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #666;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

/* Typography */
.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

.hero-subtitle {
  max-width: 500px;
  margin: 10px auto;
  color: #ccc;
}
