
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 66px;
  scroll-margin-top: 300px;
  background: url(/images/grids.svg) no-repeat ;


}

.hero-content-container {
  width: 70vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.word-scroll-wrapper {
  display: flex;
  align-items: center;
}

.words {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 64px;
  font-weight: 600;
  font-display: swap;
}

.words-active {
  animation: textScroll 4.5s ease 0s infinite ;
  will-change: auto;
}

.first-word {
  background: #168B72;
  background: linear-gradient(to bottom, #168B72 10%, #06251E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-wrap {
  height: 80px;
  overflow: hidden;
  margin: 8px 0 18px;
}

@keyframes textScroll {
  0% { transform: translateY(0); }
  11.11% { transform: translateY(0); }
  33.33% { transform: translateY(-33%); }
  44.44% { transform: translateY(-33%); }
  66.67% { transform: translateY(-67%); }
  77.78% { transform: translateY(-67%); }
  89% { transform: translateY(0); }
  100% { transform: translateY(0); }
}


@media (max-width: 450px) {

}

/* VALUE SECTION */
.value-section {
  margin: 128px auto;
  width: 100%;
  padding: 0 64px;
  max-width: 1200px;
}

.value-section h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.value-heading-text {
  color: rgb(204, 204, 204);
  margin-bottom: 64px;
  text-align: center;
  font-size: 20px;
}

.value-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.value-card {
  display: flex;
  gap: 16px;
}

.value-card-icon img{
  width: 25px;
  display: block;
}

.value-card-icon-bg {
  background-color: #11705b;
  padding: 8px;
  border-radius: 8px;

}

.value-card-icon {
  padding-top: 6px;
}

.value-card-info h2 {
  font-weight: 500;
  font-size: 24px;
  
  letter-spacing: 0%;
  margin-bottom: 14px;
}

.value-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -2%;
  color: rgb(204, 204, 204);
}


/* PROCESS SECTION */

.process-section {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin: 90px auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 64px;
  scroll-margin-top: 80px;
}

.process-heading {
  background-color: rgba(15, 93, 76, 1);
  padding: 16px 32px;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  gap: 14px;
}

.process-steps div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.process-steps div img {
  width: 42px;
}

.process-steps div p {
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 5%;
}

.process-cards-container {
  display: flex;
  gap: 24px;
}

.process-card {
  background-color:rgb(32, 32, 32);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  flex: 1;
}

.process-card h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}

.process-card-strong-text {
  font-weight: 600;
  color: rgb(21, 163, 133);
}

.process-card p {
  color: rgb(204, 204, 204);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -2%;
}


/* PROJECTS SECTION */

.projects-section {
  margin: 90px auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 84px;
  width: 100%;
  max-width: 1200px;
}

.project-bg-image-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%);

  animation: lightBlink 1.5s infinite alternate;
}



.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.hover-image {
  opacity: 0;

}

.project-bg-image-container:hover .hover-image {
  opacity: 1;
}

.project-bg-image-container:hover .default {
  opacity: 0;
}

.projects-section h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 87px;
  z-index: 1;
}

.project-container {
  display: flex;
  gap: 40px;
}

.project-info {
  width: 50%;
}

.project-info h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 24px;
}

.project-info p {
  color: rgb(204, 204, 204);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -2%;
  margin-bottom: 18px;
}

.project-info button {
  background-color: rgba(61, 158, 137, 1);
  padding: 18px 24px;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
}

.project-image-container {
  width: 50%;
}

.project-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* FAQ SECTION */

.faq-section {
  margin: 90px auto 0;
  background-color: rgba(16, 16, 16, 1);
  padding-bottom: 43px;

}

.faq-heading {
  background-color: rgba(15, 93, 76, 1);
  padding: 57px 0;
  text-align: center;
}

.accordion {
  color: #fff;
  border-radius: 20px;
  margin: 43px auto;
  padding: 0 32px;
  max-width: 1200px;
  width: 100%;
}

.accordion-item {
  border-radius: 12px;
  background: rgba(33, 33, 33, 1);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.accordion-header .highlight {
  color: rgba(138, 197, 184, 1);
}

.accordion-header .icon {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.accordion-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: -2%;

  max-height: 0;
  transition: max-height 0.3s ease, padding 0.2s ease;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.2s ease, opacity 0 ease;
}

.accordion-content p {
    color: rgb(219, 219, 219);
}

.accordion-item.active .accordion-content{
  max-height: 142px;
  padding: 0 20px 20px;
  opacity: 1;
}


/* CONTACT US SECTION */

.contact-section {
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  background-color: rgba(33, 33, 33, 1);
}

.contact-section h1 {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
}

.social-handles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  margin: 59px 0 42px;
}

.social-handles span {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 400;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: 0%;
}

.booking-button {
  padding: 12px 37px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
}



@media (max-width: 1280px) {
  .hero-left-section p,
  .project-info p {
    font-size: 18px;
  }

  .value-card h2 {
    font-size: 24px;
  }

  .value-card p {
    font-size: 16px;
  }

  .process-card p {
    font-size: 16px;
  }

  .process-card h2 {
    font-size: 20px;
  }

  .project-info p {
    font-size: 16px;
  }

}

@media (max-width: 730px) {
  .project-bg-image-container,
  .default {
    width: 450px;
    height: auto;
  }
  .projects-section h1 {
    margin-top: 48px;
  }

  .value-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .project-container {
    flex-direction: column;
  }

  .project-info {
    width: 100%;
  }

  .project-image-container {
    width: 100%;

  }

  .process-cards-container img {
    height: 334px;
    width: 100%;

  }

}


@media (max-width: 900px) {
  .process-cards-container {
    flex-direction: column;
  }

  .value-cards-container {
    flex-direction: column;
  }
  .value-cards-row2 .value-card {
    width: 50%;
  }

  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 32px 64px;
    border-radius: 10px;
  }
}


@media (max-width: 600px) {
  .value-cards-row1,
  .value-cards-row2 {
    flex-direction: column;
  }

  .process-steps {
    padding: 0;
  }

  .process-heading {
    font-size: 28px;
  }

  .process-steps div img {
    width: 32px;
  }

  .process-steps div p {
    font-size: 12px;
  }
}


@media (max-width: 450px) {
  .process-section,
  .projects-section,
  .value-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .words {
    font-size: 48px;
  }
  .text-wrap {
    height: 53px;
  }
  
  .header-mobile {
    padding: 32px 32px;
  }

  .hero-left-section p,
  .project-info p {
    font-size: 18px;
  }

  .value-section h1 {
    font-size: 28px;
  }
  
  .value-heading-text {
    font-size: 16px;
  }

  .value-card h2 {
    font-size: 20px;
  }

  .value-card p {
    font-size: 14px;
  }

  .process-card h2 {
    font-size: 20px;
  }


  .default,
  .project-bg-image-container {
    width: 300px;
  }

  .projects-section h1 {
    font-size: 32px;
  }

  .project-info h2 {
    font-size: 24px;
  }

  .project-info p {
    font-size: 16px;
  }

  .process-heading {
    font-size: 24px;
  }

  .process-steps div img {
    width: 32px;
  }
  .process-steps div p {
    font-size: 12px;
  }

  .accordion-header {
    font-size: 14px;
  }

  .accordion-content {
    font-size: 12px;
  }

  .contact-section h1 {
    font-size: 24px;
  }

  .social-handles span {
    font-size: 16px;
  }

  .faq-heading {
    font-size: 14px;
  }

  footer {
    margin: 90px 32px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* #globe-container {
  width: 600px;
  height: 600px;
  position: relative;
}

canvas {
  display: block;
} */
