@font-face {
  font-family: "Almarena Neue";
  src: url("/assets/fonts/almarenaneue-regular.otf") format("otf");
  font-style: normal;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Almarena Neue", sans-serif;
  background: black;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.HeroWhiteBtn {
  display: flex;
  padding: 22px 20px 20px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 0px 16px 0 0;
  border-left: 1px solid #fff;
  background: radial-gradient(
      100.18% 114.14% at 0% -5.03%,
      rgba(252, 255, 84, 0.5) 0%,
      rgba(252, 255, 84, 0) 100%
    ),
    #fff;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}
@media (max-width: 680px) {
  .HeroWhiteBtn {
    font-size: 16px !important;
    padding: 15px !important;
  }
}

/* ===== Base (yours, plus minor tweaks) ===== */
.GreenBtnOuter {
  position: relative;
  display: inline-flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;

  /* animation */
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease, filter 200ms ease;
  will-change: transform;
}

.GreenBtnInner,
.GreentBtnInner {
  /* supports both spellings */
  position: relative;
  display: flex;
  padding: 12px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  /* animate the gradient sweep */
  background-size: 200% 200%;
  background-position: 0% 50%;

  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
  color: #000;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.72px;
  text-transform: capitalize;

  /* animation */
  transition: background-position 500ms ease, box-shadow 200ms ease,
    transform 180ms ease;
  overflow: hidden; /* for the shine */
}

/* ===== Hover/Active states ===== */
.GreenBtnOuter:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(250, 243, 63, 0.25);
}

.GreenBtnOuter:hover .GreenBtnInner,
.GreenBtnOuter:hover .GreentBtnInner {
  background-position: 100% 50%; /* gradient sweep */
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    0 10px 26px rgba(151, 191, 68, 0.45); /* soft glow */
}

/* glossy shine streak */
.GreenBtnInner::before,
.GreentBtnInner::before {
  content: "";
  position: absolute;
  inset: -40% -15%;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 55%
  );
  transform: translateX(-120%) rotate(8deg);
  transition: transform 650ms ease;
  pointer-events: none;
}

.GreenBtnOuter:hover .GreenBtnInner::before,
.GreenBtnOuter:hover .GreentBtnInner::before {
  transform: translateX(120%) rotate(8deg);
}

/* pressed */
.GreenBtnOuter:active {
  transform: translateY(0) scale(0.99);
}
.GreenBtnOuter:active .GreenBtnInner,
.GreenBtnOuter:active .GreentBtnInner {
  transform: translateY(1px);
}

/* keyboard focus (accessibility) */
.GreenBtnOuter:focus-within {
  outline: none;
  box-shadow: 0 0 0 4px rgba(250, 243, 63, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.25);
}

.GreenBtnOuter--sm {
  padding: 4px;
  border-width: 3px;
  border-radius: 14px !important;
}

.GreenBtnOuter--sm .GreentBtnInner {
  padding: 8px 12px;
  border-radius: 14px !important;
}

/* reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .GreenBtnOuter,
  .GreenBtnInner,
  .GreentBtnInner,
  .GreenBtnInner::before,
  .GreentBtnInner::before {
    transition: none;
    animation: none;
  }
}

.contactInfoOuter {
  position: relative;
  display: inline-flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;

  /* animation */
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease, filter 200ms ease;
  will-change: transform;
}
.contactInforInner {
  border-radius: 60px;
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  /* animate the gradient sweep */
  background-size: 200% 200%;
  background-position: 0% 50%;

  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
  color: #000;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.72px;
  text-transform: capitalize;

  /* animation */
  transition: background-position 500ms ease, box-shadow 200ms ease,
    transform 180ms ease;
  overflow: hidden; /* for the shine */
}

/* Mobile typography sizing + letter-spacing in px */
@media (max-width: 680px) {
  .font107400 {
    /* hero heading */
    font-size: 68px !important;
    letter-spacing: -1.2px !important; /* tight for big heading */
  }

  .font80400 {
    /* section big heading */
    font-size: 32px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.8px !important; /* slight tighten */
  }

  .font37400 {
    /* large quote/testimonial */
    font-size: 20px !important;
    letter-spacing: 0.3px !important; /* slightly open for readability */
  }

  .font32400 {
    /* paragraph */
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.25px !important; /* neutral readability */
  }

  .font22400 {
    /* subhead/small title */
    font-size: 15px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.3px !important; /* small boost */
  }

  .font16400 {
    /* body/small text */
    font-size: 14px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.4px !important; /* helps small text breathe */
  }
}

.font20400 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.6px;
}

.font24400 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
}
.font24400Darker {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
}

.font22400 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.66px;
}

.font22400Darker {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.66px;
}

.font18400 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.54px;
}

.font16400 {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.64px;
}
.font107400 {
  color: #fff;
  text-align: center;
  font-size: 107.069px;
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 0 */
  letter-spacing: -5.353px;
}

.font80400 {
  color: #fff;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -4px;
}
.font32400 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}

.font37400 {
  color: #fff;
  text-align: center;
  font-size: 37px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 40.7px */
  letter-spacing: -1.48px;
  text-transform: capitalize;
}

.font37400Darker {
  color: #000;
  text-align: center;
  font-size: 37px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 40.7px */
  letter-spacing: -1.48px;
  text-transform: capitalize;
}

.font40400 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.2px;
}

.font59400 {
  color: #fff;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
  font-size: 59px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.95px;
}

.Navbar {
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17px);
}

.NavbarTwo {
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(17px);
}

.MainHeroSection {
  background: url("/assets/MainHeroBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

@media (max-width: 680px) {
  .MainHeroSection {
    background: url("/assets/HomeHeroBgMobile.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.HeroInputDIv {
  border-radius: 16px 16px 0 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(7px);
}

.CustomInputOne {
  display: flex;
  padding: 22px 20px 20px 20px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  outline: none;
  color: white;
}

.CustomInputOne::placeholder {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}

.CustomInputTwo {
  color: white;
  display: flex;
  padding: 19px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.CustomInputTwo::placeholder {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.54px;
}

.featureCard {
  border-radius: 16px;
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
  transform-origin: center;
  isolation: isolate;
}

/* Only the hovered card grows; others stay put */
.featureCard:hover {
  transform: scale(1.06);
  z-index: 3; /* lift above neighbors */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Optional: keep it calm on very small screens */
@media (max-width: 640px) {
  .featureCard:hover {
    transform: none;
    box-shadow: none;
  }
}

.HomePricingSection {
  background: url("/assets/HomePricingBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.HomePricingCard {
  border-radius: 16px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(27px);
}

.TestimonialSection {
  background: url("/assets/testimonialBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonialCard {
  border-radius: 24px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(27px);
}

/* .testimonialCard:hover {
  border-radius: 20px;
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
} */

.testimonialOuter {
  border-radius: 24px;
  border: 4px solid transparent;
}

.testimonialOuter:hover {
  border-radius: 24px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;
}

.testimonialCard:hover {
  border-radius: 20px;
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
}

.MainFooterDiv {
  background: url("/assets//footerBg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ReportHero {
  background: url("/assets/ReportPageBg.png");
  background-position: top;
  background-repeat: no-repeat;
}

.reportMainDiv {
  border-radius: 24px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(27px);
}

.formAlterBanner {
  border-radius: 16px;
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
}

/* .reportPricingCard {
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.reportPricingCard:hover {
  border-radius: 16px;
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
} */

/* your existing card styles (kept) */
.reportPricingCard {
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.reportPricingCard:hover {
  border-radius: 16px;
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
}

/* hide the native radio but keep it accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* make the card stay active when selected */
.pricingOption > input[type="radio"]:checked + .reportPricingCard {
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
}

/* keyboard focus ring on the card, not the hidden input */
.pricingOption > input[type="radio"]:focus-visible + .reportPricingCard {
  box-shadow: 0 0 0 3px rgba(252, 255, 84, 0.45);
  border: 1px solid #fcff54;
}

.PackagesHeroSection {
  background: url("/assets/PackagesPageBg.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricingPackageCard {
  border-radius: 24px;
  border: 1px solid #fcff54;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
}

/* ===== Pricing Card ↔ Button Linked Hover ===== */

/* base look (optional—adjust if you already have styles) */
.pricingPackageCardOuter {
  position: relative;
  display: flex;
  border-radius: 40px;
  border: 4px solid transparent;

  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease, filter 200ms ease, background 200ms ease,
    border-color 200ms ease;
  will-change: transform;
}
.pricingPackageCard {
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.12);
  transition: background 300ms ease, box-shadow 200ms ease, color 200ms ease;
}

/* HOVER STATE: make the CARD look like the BUTTON (outer+inner) */
.pricingPackageCardOuter:hover {
  /* same as .PackageBtnOuter */
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;
}

.pricingPackageCardOuter:hover .pricingPackageCard {
  color: #000 !important;
  /* same feel as .PackagetBtnInner */
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
}

.pricingPackageCardOuter:hover .font18400,
.pricingPackageCardOuter:hover .font40400,
.pricingPackageCardOuter:hover .font20400 {
  color: #000 !important;
  transition: color 0.3s ease;
}

/* HOVER: change the BUTTON *inside the hovered card* to your dark glass spec */
.pricingPackageCardOuter:hover .PackagetBtnInner,
.pricingPackageCardOuter:hover .PackageBtnInner {
  border-radius: 60px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 0 #fff, 0 -1px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
  color: #fff;
  text-shadow: none;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease,
    transform 180ms ease;
}

/* small extras for UX */
.pricingPackageCardOuter:hover {
  transform: translateY(-2px);
}
.pricingPackageCardOuter:active {
  transform: translateY(0);
}

/* replace tick icon on hover */
.pricingPackageCardOuter:hover .pricingPackageCard li img {
  content: url("/assets/blackTickMark.svg"); /* replace with your black tick */
  transition: content 0.3s ease;
}

/* =========== Packages Pricing Card Button =========== */
.PackageBtnOuter {
  position: relative;
  display: inline-flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;

  /* animation */
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease, filter 200ms ease;
  will-change: transform;
}

.PackageBtnInner,
.PackagetBtnInner {
  /* supports both spellings */
  position: relative;
  display: flex;
  padding: 12px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  /* animate the gradient sweep */
  background-size: 200% 200%;
  background-position: 0% 50%;

  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
  color: #000;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.72px;
  text-transform: capitalize;

  /* animation */
  transition: background-position 500ms ease, box-shadow 200ms ease,
    transform 180ms ease;
  overflow: hidden; /* for the shine */
}

/* ===== Hover/Active states ===== */
.PackageBtnOuter:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(250, 243, 63, 0.25);
}

.PackageBtnOuter:hover .PackageBtnInner,
.PackageBtnOuter:hover .PackagetBtnInner {
  background-position: 100% 50%; /* gradient sweep */
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    0 10px 26px rgba(151, 191, 68, 0.45); /* soft glow */
}

.faqSection {
  background: url("/assets/testimonialBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .faqCardInner {
    border-radius: 24px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(27px);
  } */

/* Base inner (closed) — your normal FAQ look */
.faqCardInner {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(27px);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease,
    border-color 250ms ease;
}

/* Header button (no arrow) */
.faqHeader {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

/* Smooth open/close inside the SAME inner box */
.faqA {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 350ms ease, opacity 250ms ease, margin 250ms ease;
}
.faqItem.open .faqA {
  max-height: 500px; /* large enough for your longest answer */
  opacity: 1;
  margin-top: 10px; /* subtle space between Q and A */
}

/* OPENED STATE — same visual as pricing-card hover */
.faqItem.open .faqCardOuter {
  border: 4px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(179deg, #bee451 1.01%, #faf33f 105.12%);
  box-shadow: 0 1px 0 0 rgba(255, 252, 184, 0.5) inset;
  transition: background 250ms ease, box-shadow 250ms ease,
    border-color 250ms ease;
}

.faqItem.open .faqCardInner {
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.01) 12.23%,
    rgba(252, 255, 84, 0.94) 87.27%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 1px 0 0 #fff, 0 3px 0.5px 0 #97bf44 inset,
    4px 8px 2px 0 rgba(0, 0, 0, 0.08) inset;
  color: #000;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Ensure your font utility classes flip to black when open */
.faqItem.open .faqCardInner .font22400,
.faqItem.open .faqCardInner .font16400,
.faqItem.open .faqCardInner .font20400,
.faqItem.open .faqCardInner .font18400 {
  color: #000 !important;
}

/* Optional tiny lift */
.faqItem.open .faqCardOuter {
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.ContactMainSection {
  background: url("/assets/contactPageBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ContactForm {
  border-radius: 24px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(27px);
}

.aboutHero {
  background: url("/assets/aboutHeroBg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.aboutpageContent {
  background: url("/assets/contactPageBg.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
