body {
  transition: 400ms ease-in-out;
}
body.body--loading {
  background-color: #f0ebd8;
}
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  z-index: 1000000;
}
.notification.success {
  background-color: #4caf50;
}
.notification.error {
  background-color: #f44336;
}

/* Loader styles */
.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #161616;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Main Content Styles */
.main-content {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.main-content.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: block !important;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
}

/* Nav Styles */
.nav {
  position: fixed;
  width: 80%;
  max-width: 880px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: all 0.6s ease-out;
  border: 1px solid transparent;
  border-radius: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .nav {
    width: calc(100% - 2rem);
  }
}

.nav--loading {
  top: calc(50% - 20px);
  justify-content: center;
  background-color: #f0ebd8;
}

.nav--loaded {
  top: 5vh;
  background-color: white;
  border: 2px solid #161616;
  padding: 0.8rem;
  height: auto;
  justify-content: space-between;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  margin: 0 auto;
  padding: 0rem;
  transform: scale(0.98);
}
.nav--loading .nav__container {
  justify-content: center;
}

.nav__logo {
  transform-origin: left center;
  transform: scale(0.6);
  transition: transform 0.5s ease-out;
}
.nav__logo svg {
  width: 200px;
  height: 24px;
  display: block;
}

.nav__logo--loading {
  transform: scale(1.5);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(17px);
}

.nav__link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out,
    box-shadow 0.3s ease;
  display: none;
}

.primary-button {
  display: inline-block;
  color: #161616;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: 300px;
  border: 2px solid #161616;
  box-shadow: 5px 5px 0px #000000;
  transition: box-shadow 0.3s ease;
  white-space: nowrap;
}
.primary-button:hover {
  box-shadow: 1px 1px 0px #000000;
}

.section {
  min-height: 100vh;
}
.section-title {
  line-height: 1.1;
  font-size: 2.4rem;
}
.section-subtitle {
  font-size: 1.6rem;
}

.nav__link--visible {
  opacity: 1;
  transform: translateY(0);
  display: inline-block;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #f0ebd8;
  flex-direction: column;
  position: relative;
}

.hero .hero-content {
  margin-top: 18vh;
  position: relative;
  z-index: 2;
}
.hero .hero-content h1 {
  font-size: 3.2rem;
  position: relative;
}
.hero .hero-content h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.hero .hero-content h2 br {
  display: none;
}
.hero .hero-content .hero-cta {
  display: block;
}

.hero-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 6rem;
}
.heroBomb-wrapper {
  position: relative;
}
.hero-title #hero-bomb {
  width: 10rem;
  height: 10rem;
  position: absolute;
  bottom: -2.5rem;
  right: -6rem;
}

#hero-lottie {
  width: 100%;
  max-width: 800px;
  height: 100%;
}
@media (max-width: 767px) {
  .hero {
    overflow: hidden;
  }
  .hero .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .hero .hero-content h2 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 100%;
  }
  .hero .hero-content h2 br {
    display: inline;
  }
  .hero-title #hero-bomb {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    right: -2.8rem;
    position: absolute;
    top: -8px;
  }
  .hero-graphic {
    top: 12rem;
  }
}

/* Wave Styles */
.wave-container {
  position: relative;
  width: 100%;
  /* height: 390px; */
  height: 89px;
  overflow: hidden;
  margin-top: -2rem;
  /* Match the wave color */
}

.wave-container.wave-container--logo {
  height: 40px;
  padding: 2rem 0;
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
}

.wave-container.wave-container--logo .wave {
  gap: 4rem;
}

.wave__image {
  width: 50%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

/* Add a second wave image for seamless looping */
.wave__image--duplicate {
  width: 50%;

  object-fit: cover;
  flex-shrink: 0;
}

.container-weCreate {
  background-color: #a7ced1;
  position: relative;
}
.section-weCreate {
  padding: 2.4rem;
  padding-top: 0;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns by default */
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}

.section-weCreate h2 {
  line-height: 1.1;
  font-size: 2.4rem;
  max-width: 200px;
  color: #fdfdfb;
  opacity: 0;
}

.section-weCreate .image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-left: -24px;
  transform: rotate(45deg) translateY(60px) translateX(120px);
  opacity: 0;
}

.section-weCreate .content-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-45deg);
}

.section-weCreate p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #1e1e1e;
  opacity: 0;
}

.section-weCreate strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #161616;
  line-height: 1;
}

@media (max-width: 767px) {
  .section-weCreate {
    grid-template-columns: 1fr 1fr;
  }
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  margin-top: 2rem;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee linear infinite;
  animation-duration: var(--marquee-duration, 20s);
}
.marquee__inner img {
  height: 45px;
  margin: 0 80px;
  object-fit: contain;
  vertical-align: middle;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--marquee-width, 1000px)));
  }
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .section-weCreate > div {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-weCreate > div {
    grid-template-columns: 1fr; /* 1 column */
    gap: 2rem;
  }

  .section-weCreate h2 {
    font-size: 2rem;
  }
}

.container-impact {
  position: relative;
  overflow: hidden;
}

.container-impact .section-impact {
  padding: 4rem 2.4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns by default */
  gap: 2rem;
  align-items: center;
  position: relative;
  padding-left: 10rem;
}
.container-impact .section-impact > .impact-title {
  position: absolute;
  opacity: 0;
  transform: translateY(-50%) rotate(-90deg) translateY(30px);
  line-height: 1.1;
  font-size: 2.4rem;
  top: 50%;
  left: 0;
}
.container-impact .section-impact .impact-card {
  background: #e4dbb2;
  border: 2px solid #161616;
  border-radius: 30px;
  padding: 2.4rem;
  height: 100%;
  color: #2c2c2c;
  opacity: 0;
  transform: translateY(50px);
}
.container-impact .section-impact .impact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.container-impact .section-impact .impact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.container-impact .section-impact .impact-card p {
  font-size: 1rem;
}

.container-impact .impact-gif {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  right: -1.6rem;
  width: 200px;

  img {
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .container-impact .section-impact > .impact-title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
  .container-impact .section-impact {
    grid-template-columns: 1fr;
    padding-left: 2.4rem;
  }
  .container-impact .impact-gif {
    top: 0%;
    transform: translateY(0%) rotate(-12deg);
  }
}

.section-serve {
  height: 100vh;
  background: #e4dbb2;

  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.container-serve,
.section-serve,
#spline-serve {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
  margin: 0;
}

.spline-wrapper {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: url("./assets/Backdrop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.spline-iframe[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: 100dvh;
}

.spline-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100dvh;
  transform: translateX(-50%) translateY(-50%) translateZ(0);
  border: none;
  height: 100dvh;
  will-change: transform;
}

.container-choose {
  /* Section outer container */
  height: 100vh;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.section-choose {
  /* Section wrapper */
  /* Use display: flex or grid for layout */
}

.section-choose .choose-items {
  /* Content block (title, subtitle, list) */
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  margin-left: auto;
  padding-top: 4rem;
  padding-right: 4rem;
  color: #161616;
}

.section-choose .choose-items h2 {
  font-size: 1.6rem;
  /* Section title */
}

.section-choose .choose-items h3 {
  font-size: 1.2rem;
  /* Section subtitle */
}

.section-choose .choose-items ul {
  margin-top: 1.2rem;
  /* List container */
}

.section-choose .choose-items ul li {
  padding: 0.6rem;
  border-radius: 8px;
  background: #ffc19c;
  margin-bottom: 1.2rem;
  /* Individual list item */
  font-size: 0.9rem;
  display: inline-flex;
}

.section-choose #choose-lottie {
  /* Lottie animation container */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .section-choose {
    padding: 2.4rem;
  }
}

.container-about {
  background: #f2f2f2;
}

.section-about {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 2.4rem;
  padding-top: 6rem;
  text-align: center;
  color: #161616;
  position: relative;
}
.section-about .about-title {
  position: relative;
  z-index: 3;
  margin-bottom: 0.8rem;
}
.section-about .about-subtitle {
  position: relative;
  z-index: 3;
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 800px;
}
.section-about .about-svg {
  max-width: 1200px;
  margin-top: -24rem;
  position: relative;
  z-index: 2;
}
.section-about .about-img.mobile-only {
  flex: 1;
  display: flex !important;
  min-height: 640px;
  margin-right: -2.4rem;
  margin-left: -2.4rem;
  position: relative;
  z-index: 2;
}
.section-about .about-img img {
  object-fit: contain;
}

.section-about .about-svg svg {
  width: 100%;
}
@media (max-width: 767px) {
  .wave-container.wave-container-4 {
    margin-top: -8rem;
  }
}

.section-about .about-svg-shapes {
  position: absolute;
  top: 20rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-about .about-svg-shapes svg {
  width: 90%;
}

@media (max-width: 767px) {
  .section-about {
    height: unset;
    max-height: auto;
    padding-top: 2.4rem;
    padding-bottom: 0;
  }
  .section-about .about-svg-shapes {
    top: 8rem;
  }
  .section-about .about-svg svg {
    width: 100%;
    margin-top: -5rem;
  }
}

.contact {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #a7ced1;
  flex-direction: column;
  position: relative;
  margin-top: -4px;
}

.contact .contact-content {
  margin-top: 5vh;
  position: relative;
  z-index: 2;
}
.contact .contact-content h1 {
  font-size: 3.2rem;
  max-width: 900px;
  color: #fdfdfb;
}
.contact .contact-content h2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  max-width: 700px;
  font-weight: 500;
}
.contact .contact-content .contact-cta a {
  display: inline-block;
  background: #fdfdfb;
}

.contact-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 6rem;
}

#contact-lottie {
  width: 100%;
  max-width: 400px;
  height: 100%;
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .contact-graphic {
    position: relative;
    top: 0;
    height: auto;
    padding-bottom: 4rem;
  }
  #contact-lottie {
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin-top: 0;
  }
}

/* Floating label form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  flex: 1;
  margin-bottom: 1rem;
}

.form-group.full-width {
  flex: 3;
}
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
  }
  .form-group {
    width: 100%;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  border: none;
  border-bottom: 2px solid #161616;
  background: transparent;
  font-size: 1rem;
  outline: none;
  resize: none;
}

.contact-form label {
  position: absolute;
  left: 0.5rem;
  top: 1.2rem;
  color: #161616;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease all;
  font-weight: 600;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.2rem;
  font-size: 0.85rem;
  color: #161616;
  background: #a7ced1; /* match your bg */
  padding: 0 0.2rem;
}

.contact-form textarea {
  min-height: 2.5rem;
  max-height: 8rem;
}

.contact-form .primary-button {
  margin-top: 0.5rem;
  max-width: 12rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .contact .contact-content {
    padding: 2.4rem;
    padding-top: 2.4rem;
    margin-top: 0;
  }
  .contact .contact-content h1 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .contact .contact-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.footer-content {
  display: flex;
  align-items: center;
  background: #0e0d0d;
  width: 100%;
  justify-content: space-between;
  padding-left: calc(50% - 440px);
  padding-right: calc(50% - 440px);
  padding-top: 2rem;
  padding-bottom: 4rem;
  color: #fdfdfb;
  margin-top: -4px;
}
.footer-content .footer-logo {
  width: 40rem;
}
.footer-content .footer-logo p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}
.footer-content .footer-logo svg {
  width: 100%;
  height: auto;
}
.footer-content .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}
.footer-content .footer-links a {
  color: #fdfdfb;
  font-weight: 400;
  margin: 0 1rem;
  text-decoration: none;
}
.footer-content .footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-content {
    padding: 2.4rem;
  }
}
