.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.header {
  width: 100%;
  background: #fff;
  padding: 15px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

.logo-text h2 {
  font-size: 16px;
  font-weight: 600;
}

.logo-text p {
  font-size: 12px;
  color: #555;
}

/* Nav */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 500; /* Poppins Medium */
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #104960;
}

/* Button */
.btn {
  background: #1f6471;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600; /* Semi Bold */
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn {
    display: none;
  }
}

.area-scroll {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  background: #e6f7f5;
}

.area-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollX 20s linear infinite;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #d7eee9;
  border-radius: 50px;
  text-decoration: none;
  color: #1f3d36;
  font-weight: 500;
  transition: all 0.25s ease;

  /* subtle depth */
}

.area-pill:hover {
  background: #d7ebe9;
  color: #2f7f7a;
  transform: translateY(-2px);
}

.arrow {
  background: #74b4bc; /* brand accent */
  color: #ffffff;
  border-radius: 50%;
  padding: 5px 8px;
  font-size: 12px;
  transition: 0.25s;
}

/* arrow hover sync */
.area-pill:hover .arrow {
  background: #ffffff;
  color: #1f3d36;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.faq-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1f3d36;
  padding: 15px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #3a6f68;
}

.faq-item.active .faq-answer {
  display: block;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f1f5f4;
  font-weight: 500;
  transition: 0.3s;
}
.tab-btn.active {
  background: #1f3d36;
  color: white;
}

.card {
  padding: 14px 16px;
  background: #f8fbfa;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}
.card:hover {
  background: #1f3d36;
  color: white;
}

.gallery-scroll {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

.gallery-item {
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item p {
  padding: 12px;
  font-weight: 500;
  color: #1f3d36;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .gallery-track {
    animation: none;
  }
  .gallery-scroll {
    overflow-x: auto;
  }
}

.masonry {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 768px) {
  .masonry {
    column-count: 3;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 4;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
}
