@import url("https://fonts.googleapis.com/css?family=Inter+Tight:400,500,700,600");
:root {
  --max-width: 1440px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter Tight", Helvetica, sans-serif;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 57px;
  max-width: 1721px;
  margin: 0 auto;
  padding: 84px 130px 0;
  animation: fadeIn 1s ease forwards;
}

.logo {
  width: 256px;
  height: 43px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 18pc;
}

.nav-item {
    font-weight: 500;
    font-size: 23px;
    color: #000000;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.nav-item:hover {
  opacity: 0.7;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.globe-icon {
    width: 33px;
    height: 48px;
    color: #000000;
}

.language-text {
    font-weight: 500;
    font-size: 23px;
    color: #000000;
    white-space: nowrap;
}

.chevron-icon {
  width: 27.25px;
  height: 24px;
  color: #000000;
}

.contact-btn {
    padding: 10px 20px;
    background-color: #000000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1720px;
  margin: 0 auto;
  padding: 100px 124px 150px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.hero-title {
    font-weight: 600;
    font-size: 69px;
    color: #ffffff;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 32px;
    background-color: #0000004a;
    padding: 24px 32px;
}

.demo-btn {
  padding: 16px 32px;
  background-color: #000000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.3s;
  animation: fadeIn 1s 0.4s ease forwards;
  opacity: 0;
}

.demo-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Mission Section */
/* Overlay Info Slider */
.info-slider {
    position: relative;
    width: 100%;
    height: 360px;
    background-image: url(https://c.animaapp.com/mjyequn21mQwRx/img/pexels-midori-344476677-20606208-1.png);
    background-size: cover;
    background-position: bottom;
}

.info-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.info-slide {
  max-width: 900px;
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  opacity: 0;
  position: absolute;
  transition: opacity 0.6s ease;
}

.info-slide.active {
  opacity: 1;
  position: relative;
}


/* Responsive */
@media (max-width: 768px) {
  .info-slider {
    height: 320px;
  }

  .info-slide {
    font-size: 26px;
    padding: 0 20px;
  }

  .slider-indicator {
    bottom: 20px;
  }
}


.divider-section {
  overflow: hidden;
}

.divider-image {
  width: 130%;
  animation: dividerScroll 15s linear infinite;
}

@keyframes dividerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}


/* Solutions Header Section */
.solutions-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 150px 50px 100px;
 /* background-image: url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-9.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.solutions-title {
  font-weight: 700;
  font-size: 58px;
  color: #ff7e1d;
  text-align: center;
  line-height: normal;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 40px;
  background-color: #000000;
  border-radius: 50px;
  transition: background-color 0.3s;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.explore-btn span {
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  white-space: nowrap;
}

.explore-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.arrow-icon {
  flex-shrink: 0;
}

/* Services Carousel Section */
.services-carousel {
  position: relative;
  width: 100%;
  padding: 0 100px 100px;
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}

.carousel-container::-webkit-scrollbar {
  height: 10px;
}

.carousel-container::-webkit-scrollbar-track {
  background: transparent;
  border-top: 1px solid transparent;
  padding: 1px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
  border-radius: 9999px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  padding-bottom: 16px;
}

.service-card {
  flex-shrink: 0;
  width: 573.33px;
  height: 448px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 60px 50px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-10.png");
}

.service-card:nth-child(2) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-11-1.png");
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-12-2.png");
  animation-delay: 0.2s;
}

.service-card:nth-child(4) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-13.png");
  animation-delay: 0.3s;
}

.service-card:nth-child(5) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-11-2.png");
  animation-delay: 0.4s;
}

.service-card:nth-child(6) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-13-1.png");
  animation-delay: 0.5s;
}

.service-card:nth-child(7) {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-12-2.png");
  animation-delay: 0.6s;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-title {
  font-weight: 700;
  font-size: 40px;
  color: #ff7e1d;
  line-height: normal;
}

.service-description {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: normal;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0;
  border-radius: 50px;
  transition: transform 0.3s;
}

.service-link:hover {
  transform: translateX(4px);
}

.service-link span {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  white-space: nowrap;
}

.carousel-btn {
  position: absolute;
  top: 194px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  color: #000000;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.carousel-btn-left {
  left: 0;
}

.carousel-btn-right {
  right: 0;
}

/* Net Zero Goals Section */
.net-zero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 150px 50px 100px;
  background: linear-gradient(
      181deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-12.png");
  background-size: cover;
  background-position: center;
}

.net-zero-title {
  font-weight: 700;
  font-size: 58px;
  color: #ffffff;
  text-align: center;
  line-height: normal;
  max-width: 1414px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1237px;
  align-items: flex-start;
  justify-content: center;
  gap: 50px 80px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.services-grid-bottom {
  animation-delay: 0.4s;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.service-item-title {
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  line-height: normal;
}

.service-item-description {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

.expert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 40px;
  background-color: #000000;
  border-radius: 50px;
  transition: background-color 0.3s;
  animation: fadeIn 1s 0.6s ease forwards;
  opacity: 0;
}

.expert-btn span {
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  white-space: nowrap;
}

.expert-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Compliance Section */
.compliance-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 150px 50px;
  background-image: url("https://c.animaapp.com/mjyequn21mQwRx/img/frame-11.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.compliance-title {
  font-weight: 700;
  font-size: 58px;
  color: #ff7e1d;
  text-align: center;
  line-height: normal;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.compliance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 40px;
  background-color: #000000;
  border-radius: 50px;
  transition: background-color 0.3s;
  animation: fadeIn 1s 0.4s ease forwards;
  opacity: 0;
}

.compliance-btn span {
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  white-space: nowrap;
}

.compliance-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* FAQ Section */
.faq-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  padding: 150px;
}

.faq-intro {
  display: flex;
  flex-direction: column;
  width: 553px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.faq-title {
  font-weight: 700;
  font-size: 58px;
  color: #000000;
  line-height: normal;
}

.faq-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: normal;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex: 1;
  animation: fadeIn 1s 0.4s ease forwards;
  opacity: 0;
}

.faq-item {
  width: 100%;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
  width: 100%;
  transition: opacity 0.3s;
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question span {
  flex: 1;
  text-align: left;
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  line-height: normal;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Footer */
.footer {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 84px;
  padding: 80px 50px;
  background-color: #000000;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.footer-logo {
  width: 288.86px;
  height: 42.61px;
}

.footer-description {
  width: 392px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: normal;
}

.footer-social {
  margin-top: 10px;
}

.footer-copyright {
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 316px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  width: 501px;
  align-items: flex-start;
  gap: 10px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.newsletter-title {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

.newsletter-description {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

.newsletter-form {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 15px 0;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  flex: 1;
  border-bottom: 1px solid #ededed;
}

.form-input {
  width: 100%;
  font-family: "Inter Tight", Helvetica;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  background-color: transparent;
  border: none;
  outline: none;
}

.form-input::placeholder {
  color: #ffffff;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background-color: transparent;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.form-submit span {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.footer-column {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.footer-column:nth-child(3) {
  animation: fadeIn 1s 0.4s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(4) {
  animation: fadeIn 1s 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(5) {
  animation: fadeIn 1s 0.8s ease forwards;
  opacity: 0;
}

.footer-column-title {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

.footer-column-content {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .header {
    padding: 80px 60px 0;
  }

  .hero-content {
    padding: 80px 60px 120px;
  }

  .mission-section {
    padding: 100px 200px;
  }

  .faq-section {
    gap: 80px;
    padding: 100px;
  }
}

@media (max-width: 1024px) {
  .header {
    flex-wrap: wrap;
    gap: 30px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 56px;
  }

  .mission-text {
    font-size: 36px;
  }

  .solutions-title {
    font-size: 48px;
  }

  .net-zero-title {
    font-size: 48px;
  }

  .faq-section {
    flex-direction: column;
    gap: 60px;
  }

  .faq-intro {
    width: 100%;
  }

  .footer {
    flex-wrap: wrap;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 40px 30px 0;
  }

  .logo {
    width: 200px;
    height: auto;
  }

  .nav-item,
  .language-text,
  .contact-btn {
    font-size: 20px;
  }

  .hero-content {
    padding: 60px 30px 100px;
  }

  .hero-title {
    font-size: 40px;
  }

  .demo-btn {
    font-size: 18px;
    padding: 12px 24px;
  }

  .mission-section {
    padding: 80px 30px;
  }

  .mission-text {
    font-size: 28px;
  }

  .solutions-header {
    padding: 100px 30px 80px;
  }

  .solutions-title {
    font-size: 36px;
  }

  .explore-btn span,
  .compliance-btn span,
  .expert-btn span {
    font-size: 20px;
  }

  .services-carousel {
    padding: 0 30px 80px;
  }

  .service-card {
    width: 400px;
  }

  .service-title {
    font-size: 32px;
  }

  .net-zero-section {
    padding: 100px 30px 80px;
  }

  .net-zero-title {
    font-size: 36px;
  }

  .service-item-title {
    font-size: 24px;
  }

  .compliance-section {
    padding: 100px 30px;
  }

  .compliance-title {
    font-size: 36px;
  }

  .faq-section {
    padding: 80px 30px;
  }

  .faq-title {
    font-size: 40px;
  }

  .faq-question span {
    font-size: 24px;
  }

  .footer {
    padding: 60px 30px;
  }

  .footer-newsletter {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
