@charset "UTF-8";
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  width: 100%;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 768px) {
  .navbar {
    height: 74px;
  }
}
@media (min-width: 2560px) {
  .navbar {
    height: 96px;
  }
}
@media (min-width: 3840px) {
  .navbar {
    height: 120px;
  }
}

.navbar-container {
  width: 100%;
  max-width: 1680px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .navbar-container {
    padding: 0 40px;
  }
}
@media (min-width: 2560px) {
  .navbar-container {
    max-width: 2400px;
    padding: 0 80px;
  }
}
@media (min-width: 3840px) {
  .navbar-container {
    max-width: 3600px;
    padding: 0 120px;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .logo img {
    height: 44px;
  }
}
@media (min-width: 2560px) {
  .logo img {
    height: 64px;
  }
}
@media (min-width: 3840px) {
  .logo img {
    height: 90px;
  }
}

/* Navigation menu — mobile overlay by default */
.nav-menu {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  z-index: 999;
}
.nav-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-menu {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    bottom: auto;
    top: auto;
  }
}
@media (min-width: 2560px) {
  .nav-menu {
    gap: 48px;
  }
}
@media (min-width: 3840px) {
  .nav-menu {
    gap: 64px;
  }
}

.nav-item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
  .nav-item {
    width: auto;
    border-bottom: none;
    position: relative;
  }
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 0;
  width: 100%;
  justify-content: space-between;
}
.nav-link:hover {
  color: #1a3d8f;
}
@media (min-width: 768px) {
  .nav-link {
    font-size: 16px;
    padding: 8px 0;
    width: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .nav-link {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .nav-link {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .nav-link {
    font-size: 32px;
  }
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-top: 1px;
}
@media (min-width: 2560px) {
  .dropdown-arrow {
    font-size: 14px;
  }
}

/* Dropdown menu */
.dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: #fafafa;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
  transition: all 0.2s ease;
}
@media (min-width: 2560px) {
  .dropdown-menu li a {
    font-size: 18px;
    padding: 16px 24px;
  }
}
@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    min-width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    max-height: none;
    overflow: visible;
  }
  .dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #1a3d8f;
  }
}

.nav-item.dropdown-open .dropdown-menu {
  max-height: 300px;
  padding: 4px 0;
}

.nav-item.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
  min-height: calc(100vh - 64px);
}
@media (min-width: 768px) {
  .page-content {
    min-height: calc(100vh - 74px);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 430px) {
  .hero {
    padding: 48px 24px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 50px 40px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 60px 60px;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 60px 80px;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding: 60px 100px;
  }
}
@media (min-width: 2560px) {
  .hero {
    padding: 80px 120px;
  }
}
@media (min-width: 3840px) {
  .hero {
    padding: 120px 160px;
  }
}

.hero-container {
  width: 100%;
  max-width: 1680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .hero-container {
    gap: 50px;
  }
}
@media (min-width: 1440px) {
  .hero-container {
    gap: 60px;
  }
}
@media (min-width: 2560px) {
  .hero-container {
    max-width: 2400px;
    gap: 80px;
  }
}
@media (min-width: 3840px) {
  .hero-container {
    max-width: 3600px;
    gap: 120px;
  }
}

/* Hero — Visual */
.hero-visual {
  width: 100%;
  max-width: 300px;
  position: relative;
}
@media (min-width: 430px) {
  .hero-visual {
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .hero-visual {
    flex: 1;
    max-width: 420px;
  }
}
@media (min-width: 1024px) {
  .hero-visual {
    max-width: 480px;
  }
}
@media (min-width: 1440px) {
  .hero-visual {
    max-width: 560px;
  }
}
@media (min-width: 2560px) {
  .hero-visual {
    max-width: 820px;
  }
}
@media (min-width: 3840px) {
  .hero-visual {
    max-width: 1200px;
  }
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Hero — Content */
.hero-content {
  flex: 1;
  max-width: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    max-width: 500px;
    align-items: flex-start;
    text-align: left;
  }
}
@media (min-width: 2560px) {
  .hero-content {
    max-width: 720px;
  }
}
@media (min-width: 3840px) {
  .hero-content {
    max-width: 1000px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-heading .line {
  display: block;
}
.hero-heading .text-dark {
  color: #2d2d2d;
}
.hero-heading .text-green {
  color: #4CAF50;
}
@media (min-width: 430px) {
  .hero-heading {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .hero-heading {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: 1.3px;
  }
}
@media (min-width: 1024px) {
  .hero-heading {
    font-size: 55px;
  }
}
@media (min-width: 1200px) {
  .hero-heading {
    font-size: 65px;
  }
}
@media (min-width: 1440px) {
  .hero-heading {
    font-size: 77px;
    letter-spacing: 1.64px;
  }
}
@media (min-width: 2560px) {
  .hero-heading {
    font-size: 110px;
    margin-bottom: 36px;
  }
}
@media (min-width: 3840px) {
  .hero-heading {
    font-size: 160px;
    margin-bottom: 48px;
  }
}

.hero-paragraph {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 28px;
}
@media (min-width: 430px) {
  .hero-paragraph {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .hero-paragraph {
    font-size: 16px;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .hero-paragraph {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero-paragraph {
    font-size: 22px;
    margin-bottom: 36px;
  }
}
@media (min-width: 2560px) {
  .hero-paragraph {
    font-size: 30px;
    margin-bottom: 48px;
  }
}
@media (min-width: 3840px) {
  .hero-paragraph {
    font-size: 44px;
    margin-bottom: 64px;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    width: auto;
    max-width: none;
    gap: 16px;
  }
}
@media (min-width: 2560px) {
  .hero-buttons {
    gap: 24px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #4CAF50;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(60, 179, 113, 0.3);
  min-height: 48px;
}
.btn-primary:hover {
  background: #2e9b5e;
  box-shadow: 0 6px 20px rgba(60, 179, 113, 0.4);
  transform: translateY(-2px);
}
.btn-primary .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .btn-primary {
    font-size: 16px;
    padding: 15px 26px;
  }
}
@media (min-width: 1440px) {
  .btn-primary {
    font-size: 18px;
    padding: 16px 28px;
  }
}
@media (min-width: 2560px) {
  .btn-primary {
    font-size: 26px;
    padding: 22px 40px;
    border-radius: 14px;
  }
}
@media (min-width: 3840px) {
  .btn-primary {
    font-size: 36px;
    padding: 30px 56px;
    border-radius: 20px;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}
.btn-secondary:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #333;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .btn-secondary {
    font-size: 16px;
    padding: 15px 26px;
  }
}
@media (min-width: 1440px) {
  .btn-secondary {
    font-size: 18px;
    padding: 16px 28px;
  }
}
@media (min-width: 2560px) {
  .btn-secondary {
    font-size: 26px;
    padding: 22px 40px;
    border-radius: 14px;
  }
}
@media (min-width: 3840px) {
  .btn-secondary {
    font-size: 36px;
    padding: 30px 56px;
    border-radius: 20px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  width: 100%;
  padding: 40px 16px;
}
@media (min-width: 430px) {
  .about {
    padding: 50px 20px;
  }
}
@media (min-width: 768px) {
  .about {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .about {
    padding: 70px 60px;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 80px 80px;
  }
}
@media (min-width: 2560px) {
  .about {
    padding: 100px 120px;
  }
}
@media (min-width: 3840px) {
  .about {
    padding: 140px 160px;
  }
}

.about-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  background: rgba(200, 230, 201, 0.2);
  border-radius: 20px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}
@media (min-width: 430px) {
  .about-container {
    padding: 36px 24px;
    border-radius: 22px;
  }
}
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    align-items: center;
    padding: 50px 40px;
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .about-container {
    padding: 55px 50px;
    gap: 50px;
  }
}
@media (min-width: 1440px) {
  .about-container {
    padding: 60px 60px;
    gap: 60px;
    min-height: 80vh;
  }
}
@media (min-width: 2560px) {
  .about-container {
    max-width: 2400px;
    padding: 80px 80px;
    gap: 80px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .about-container {
    max-width: 3600px;
    padding: 120px 120px;
    gap: 120px;
    border-radius: 48px;
  }
}

/* About — Text */
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-text.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .about-text {
    align-items: flex-start;
    text-align: left;
  }
}

.about-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-heading .line {
  display: block;
}
.about-heading .text-dark {
  color: #2d2d2d;
}
.about-heading .text-green {
  color: #3CB371;
}
@media (min-width: 430px) {
  .about-heading {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .about-heading {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .about-heading {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .about-heading {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .about-heading {
    font-size: 58px;
    margin-bottom: 36px;
  }
}
@media (min-width: 3840px) {
  .about-heading {
    font-size: 84px;
    margin-bottom: 48px;
  }
}

.about-subheading {
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .about-subheading {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .about-subheading {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .about-subheading {
    font-size: 22px;
    margin-bottom: 28px;
  }
}
@media (min-width: 3840px) {
  .about-subheading {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.about-paragraph {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 14px;
}
.about-paragraph:last-of-type {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .about-paragraph {
    font-size: 15px;
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  .about-paragraph {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .about-paragraph {
    font-size: 20px;
    max-width: 60%;
    margin-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .about-paragraph {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (min-width: 3840px) {
  .about-paragraph {
    font-size: 40px;
    margin-bottom: 28px;
  }
}

.about-highlight {
  font-size: 14px;
  font-weight: 600;
  color: #3CB371;
  line-height: 1.5;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .about-highlight {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .about-highlight {
    font-size: 20px;
  }
}
@media (min-width: 2560px) {
  .about-highlight {
    font-size: 28px;
    margin-top: 28px;
  }
}
@media (min-width: 3840px) {
  .about-highlight {
    font-size: 40px;
    margin-top: 40px;
  }
}

/* About — Image Card */
.about-image-card {
  width: 100%;
  max-width: 340px;
  align-self: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.15s;
}
.about-image-card.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .about-image-card {
    flex: 0 0 320px;
    max-width: 320px;
  }
}
@media (min-width: 1024px) {
  .about-image-card {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
@media (min-width: 1440px) {
  .about-image-card {
    flex: 0 0 400px;
    max-width: 400px;
  }
}
@media (min-width: 2560px) {
  .about-image-card {
    flex: 0 0 580px;
    max-width: 580px;
  }
}
@media (min-width: 3840px) {
  .about-image-card {
    flex: 0 0 840px;
    max-width: 840px;
  }
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image-wrapper:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18), 0 12px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .about-image-wrapper {
    transform: rotate(2.5deg);
  }
}
.about-image-wrapper img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 430px) {
  .about-image-wrapper img {
    height: 520px;
  }
}
@media (min-width: 768px) {
  .about-image-wrapper img {
    height: 600px;
  }
}
@media (min-width: 1440px) {
  .about-image-wrapper img {
    height: 650px;
  }
}
@media (min-width: 2560px) {
  .about-image-wrapper img {
    height: 900px;
  }
}
@media (min-width: 3840px) {
  .about-image-wrapper img {
    height: 1300px;
  }
}

.about-globe-btn {
  position: absolute;
  bottom: -22px;
  left: 0%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 5;
}
.about-globe-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}
.about-globe-btn svg {
  width: 22px;
  height: 22px;
  color: #3CB371;
}
@media (min-width: 768px) {
  .about-globe-btn {
    width: 60px;
    height: 60px;
  }
  .about-globe-btn svg {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 2560px) {
  .about-globe-btn {
    width: 88px;
    height: 88px;
  }
  .about-globe-btn svg {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 3840px) {
  .about-globe-btn {
    width: 120px;
    height: 120px;
  }
  .about-globe-btn svg {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  width: 100%;
  padding: 50px 16px;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(60, 179, 113, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.services::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 80px;
  width: 180px;
  height: 180px;
  border: 30px solid rgba(60, 179, 113, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 430px) {
  .services {
    padding: 55px 20px;
  }
}
@media (min-width: 768px) {
  .services {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .services {
    padding: 70px 60px;
  }
}
@media (min-width: 1440px) {
  .services {
    padding: 80px 80px;
  }
}
@media (min-width: 2560px) {
  .services {
    padding: 100px 120px;
  }
}
@media (min-width: 3840px) {
  .services {
    padding: 140px 160px;
  }
}

.services-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 2560px) {
  .services-container {
    max-width: 2400px;
  }
}
@media (min-width: 3840px) {
  .services-container {
    max-width: 3600px;
  }
}

.services-header {
  margin-bottom: 36px;
  text-align: center;
}
@media (min-width: 768px) {
  .services-header {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .services-header {
    margin-bottom: 45px;
  }
}
@media (min-width: 2560px) {
  .services-header {
    margin-bottom: 60px;
  }
}

.services-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .services-title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .services-title {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .services-title {
    font-size: 34px;
  }
}
@media (min-width: 1440px) {
  .services-title {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .services-title {
    font-size: 58px;
  }
}
@media (min-width: 3840px) {
  .services-title {
    font-size: 84px;
  }
}

.services-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .services-subtitle {
    font-size: 14px;
    max-width: 500px;
    margin-top: 12px;
  }
}
@media (min-width: 1440px) {
  .services-subtitle {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .services-subtitle {
    font-size: 22px;
    margin-top: 16px;
  }
}
@media (min-width: 3840px) {
  .services-subtitle {
    font-size: 32px;
    margin-top: 24px;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .services-grid {
    gap: 28px;
  }
}
@media (min-width: 2560px) {
  .services-grid {
    gap: 40px;
  }
}
@media (min-width: 3840px) {
  .services-grid {
    gap: 56px;
  }
}

/* Service Card */
.service-card {
  background-color: #f7f7f7;
  background-image: url("../assets/white-card.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  min-height: 380px;
  border: none;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card:hover {
  transform: translateY(-3px);
}
.service-card:nth-child(1) {
  transition-delay: 0s;
}
.service-card:nth-child(2) {
  transition-delay: 0.08s;
}
.service-card:nth-child(3) {
  transition-delay: 0.16s;
}
.service-card:nth-child(4) {
  transition-delay: 0.24s;
}
.service-card:nth-child(5) {
  transition-delay: 0.32s;
}
.service-card:nth-child(6) {
  transition-delay: 0.4s;
}
.service-card:nth-child(7) {
  transition-delay: 0s;
}
.service-card:nth-child(8) {
  transition-delay: 0.08s;
}
.service-card:nth-child(9) {
  transition-delay: 0.16s;
}
@media (min-width: 768px) {
  .service-card {
    min-height: 400px;
    border-radius: 22px;
  }
}
@media (min-width: 1440px) {
  .service-card {
    min-height: 434px;
    border-radius: 24px;
  }
}
@media (min-width: 2560px) {
  .service-card {
    min-height: 620px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .service-card {
    min-height: 900px;
    border-radius: 48px;
  }
}

.service-card-icon-row {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
}
@media (min-width: 430px) {
  .service-card-icon-row {
    top: 5%;
    left: 5%;
  }
}
@media (min-width: 2560px) {
  .service-card-icon-row {
    top: 4%;
    left: 4%;
  }
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #e2f0e8;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: #1f5f40;
}
@media (min-width: 768px) {
  .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 13px;
  }
  .service-icon svg {
    width: 23px;
    height: 23px;
  }
}
@media (min-width: 1440px) {
  .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 2560px) {
  .service-icon {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }
  .service-icon svg {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 3840px) {
  .service-icon {
    width: 130px;
    height: 130px;
    border-radius: 28px;
  }
  .service-icon svg {
    width: 52px;
    height: 52px;
  }
}

.service-card-inner,
.service-card-white-top,
.service-card-white-body {
  display: none;
}

.service-card-content {
  position: relative;
  z-index: 3;
  padding: 104px 18px 64px 18px;
}
@media (min-width: 430px) {
  .service-card-content {
    padding: 108px 22px 68px 22px;
  }
}
@media (min-width: 768px) {
  .service-card-content {
    padding: 112px 24px 72px 24px;
  }
}
@media (min-width: 1440px) {
  .service-card-content {
    padding: 118px 28px 80px 28px;
  }
}
@media (min-width: 2560px) {
  .service-card-content {
    padding: 160px 40px 110px 40px;
  }
}
@media (min-width: 3840px) {
  .service-card-content {
    padding: 220px 56px 160px 56px;
  }
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1e1e;
  line-height: 1.35;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .service-card-title {
    font-size: 19px;
  }
}
@media (min-width: 1440px) {
  .service-card-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .service-card-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media (min-width: 3840px) {
  .service-card-title {
    font-size: 46px;
    margin-bottom: 32px;
  }
}

.service-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: #84898c;
  line-height: 1.78;
}
@media (min-width: 1440px) {
  .service-card-desc {
    font-size: 14.5px;
  }
}
@media (min-width: 2560px) {
  .service-card-desc {
    font-size: 21px;
  }
}
@media (min-width: 3840px) {
  .service-card-desc {
    font-size: 30px;
  }
}

.service-card-footer {
  position: absolute;
  bottom: 22px;
  right: 18px;
  z-index: 3;
}
@media (min-width: 430px) {
  .service-card-footer {
    bottom: 3%;
    right: 15%;
  }
}
@media (min-width: 2560px) {
  .service-card-footer {
    bottom: 3%;
    right: 14%;
  }
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid #2d4a42;
  border-radius: 50px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #2d4a42;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.service-card-btn:hover {
  background: #2d4a42;
  color: #fff;
  border-color: #2d4a42;
}
@media (min-width: 1440px) {
  .service-card-btn {
    padding: 12px 28px;
    font-size: 12.5px;
  }
}
@media (min-width: 2560px) {
  .service-card-btn {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 60px;
  }
}
@media (min-width: 3840px) {
  .service-card-btn {
    padding: 24px 56px;
    font-size: 26px;
    border-radius: 80px;
  }
}

.service-card-stripes {
  display: none;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-section {
  width: 100%;
  padding: 0 16px;
  margin: 50px auto;
}
@media (min-width: 430px) {
  .cta-section {
    padding: 0 20px;
    margin: 55px auto;
  }
}
@media (min-width: 768px) {
  .cta-section {
    padding: 0 40px;
    margin: 60px auto;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 0 60px;
  }
}
@media (min-width: 1440px) {
  .cta-section {
    padding: 0 80px;
    margin: 80px auto;
  }
}
@media (min-width: 2560px) {
  .cta-section {
    padding: 0 120px;
    margin: 100px auto;
  }
}
@media (min-width: 3840px) {
  .cta-section {
    padding: 0 160px;
    margin: 140px auto;
  }
}

.cta-banner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  min-height: 200px;
  border-radius: 22px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  background: url("../assets/map.webp") no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 40px;
    border-radius: 24px;
    min-height: 26vh;
  }
}
@media (min-width: 1024px) {
  .cta-banner {
    padding: 50px 50px;
    min-height: 28vh;
  }
}
@media (min-width: 1440px) {
  .cta-banner {
    padding: 55px 60px;
    min-height: 30vh;
    border-radius: 26px;
  }
}
@media (min-width: 2560px) {
  .cta-banner {
    max-width: 2400px;
    padding: 80px 88px;
    min-height: 320px;
    border-radius: 40px;
  }
}
@media (min-width: 3840px) {
  .cta-banner {
    max-width: 3600px;
    padding: 120px 130px;
    min-height: 480px;
    border-radius: 56px;
  }
}

.cta-text {
  flex: 1;
}

.cta-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .cta-heading {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .cta-heading {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .cta-heading {
    font-size: 34px;
  }
}
@media (min-width: 1440px) {
  .cta-heading {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .cta-heading {
    font-size: 58px;
  }
}
@media (min-width: 3840px) {
  .cta-heading {
    font-size: 84px;
  }
}

.cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cta-desc {
    font-size: 14px;
    max-width: 500px;
    margin-top: 14px;
  }
}
@media (min-width: 1440px) {
  .cta-desc {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .cta-desc {
    font-size: 24px;
    margin-top: 20px;
  }
}
@media (min-width: 3840px) {
  .cta-desc {
    font-size: 34px;
    margin-top: 28px;
  }
}

.cta-btn {
  background: #ffffff;
  color: #1f2d2d;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  width: 100%;
  min-height: 48px;
}
.cta-btn:hover {
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .cta-btn {
    width: auto;
    font-size: 14px;
    padding: 12px 26px;
  }
}
@media (min-width: 1440px) {
  .cta-btn {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .cta-btn {
    font-size: 22px;
    padding: 20px 40px;
    border-radius: 16px;
  }
}
@media (min-width: 3840px) {
  .cta-btn {
    font-size: 32px;
    padding: 28px 56px;
    border-radius: 22px;
  }
}

/* ============================================
   VISION / MISSION / VALUES SECTION
   ============================================ */
.vmv-section {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 430px) {
  .vmv-section {
    padding: 55px 20px;
  }
}
@media (min-width: 768px) {
  .vmv-section {
    padding: 60px 40px;
    gap: 35px;
  }
}
@media (min-width: 1024px) {
  .vmv-section {
    flex-direction: row;
    padding: 70px 20px;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .vmv-section {
    padding: 80px 20px;
  }
}
@media (min-width: 2560px) {
  .vmv-section {
    max-width: 2400px;
    padding: 100px 0;
    gap: 56px;
  }
}
@media (min-width: 3840px) {
  .vmv-section {
    max-width: 3600px;
    padding: 140px 0;
    gap: 80px;
  }
}

/* VMV — Left column */
.vmv-left {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 1024px) {
  .vmv-left {
    flex: 0 0 58%;
    gap: 25px;
  }
  .vmv-left::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1f7a5a;
    border-radius: 2px;
  }
}
@media (min-width: 2560px) {
  .vmv-left {
    gap: 36px;
  }
}

.vmv-card {
  background: #f2f4f4;
  border-radius: 18px;
  padding: 22px 20px;
}
@media (min-width: 768px) {
  .vmv-card {
    padding: 24px 24px;
    border-radius: 20px;
  }
}
@media (min-width: 1440px) {
  .vmv-card {
    padding: 25px 25px;
  }
}
@media (min-width: 2560px) {
  .vmv-card {
    padding: 36px 36px;
    border-radius: 28px;
  }
}
@media (min-width: 3840px) {
  .vmv-card {
    padding: 52px 52px;
    border-radius: 40px;
  }
}

.vmv-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 2560px) {
  .vmv-card-header {
    gap: 18px;
  }
}

.vmv-card-icon {
  width: 36px;
  height: 36px;
  background: #e6f4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vmv-card-icon svg {
  width: 18px;
  height: 18px;
  color: #1f7a5a;
}
@media (min-width: 768px) {
  .vmv-card-icon {
    width: 40px;
    height: 40px;
  }
  .vmv-card-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 2560px) {
  .vmv-card-icon {
    width: 60px;
    height: 60px;
  }
  .vmv-card-icon svg {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 3840px) {
  .vmv-card-icon {
    width: 84px;
    height: 84px;
  }
  .vmv-card-icon svg {
    width: 42px;
    height: 42px;
  }
}

.vmv-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
}
@media (min-width: 768px) {
  .vmv-card-title {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .vmv-card-title {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .vmv-card-title {
    font-size: 26px;
  }
}
@media (min-width: 3840px) {
  .vmv-card-title {
    font-size: 38px;
  }
}

.vmv-card-desc {
  font-size: 16px;
  color: #6b7074;
  line-height: 1.7;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .vmv-card-desc {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .vmv-card-desc {
    font-size: 20px;
    margin-top: 16px;
  }
}
@media (min-width: 3840px) {
  .vmv-card-desc {
    font-size: 28px;
    margin-top: 24px;
  }
}

/* VMV — Right / Core Values */
.vmv-right {
  flex: 1;
}

.values-card {
  border-radius: 20px;
  padding: 26px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(rgba(0, 50, 40, 0.85), rgba(0, 50, 40, 0.85)), url("../assets/Ship.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .values-card {
    padding: 28px 26px;
    border-radius: 22px;
  }
}
@media (min-width: 1440px) {
  .values-card {
    padding: 30px 30px;
    border-radius: 24px;
  }
}
@media (min-width: 2560px) {
  .values-card {
    padding: 44px 44px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .values-card {
    padding: 64px 64px;
    border-radius: 48px;
  }
}

.values-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-title .heart-icon {
  color: #2ecc71;
  font-size: 16px;
}
@media (min-width: 768px) {
  .values-title {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .values-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .values-title {
    font-size: 32px;
    margin-bottom: 28px;
    gap: 16px;
  }
}
@media (min-width: 3840px) {
  .values-title {
    font-size: 46px;
    margin-bottom: 40px;
  }
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 2560px) {
  .values-list {
    gap: 12px;
  }
}

.values-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.values-item:last-child {
  border-bottom: none;
}

.values-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  transition: color 0.3s ease;
  min-height: 44px;
}
.values-trigger:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .values-trigger {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media (min-width: 2560px) {
  .values-trigger {
    font-size: 20px;
    padding: 16px 0;
    gap: 16px;
  }
}
@media (min-width: 3840px) {
  .values-trigger {
    font-size: 28px;
    padding: 22px 0;
  }
}

.values-bullet {
  width: 13px;
  height: 13px;
  border: 2px solid #2ecc71;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.values-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #2ecc71;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .values-bullet {
    width: 14px;
    height: 14px;
  }
}
@media (min-width: 2560px) {
  .values-bullet {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 3840px) {
  .values-bullet {
    width: 28px;
    height: 28px;
  }
  .values-bullet::after {
    width: 10px;
    height: 10px;
  }
}

.values-item.active .values-bullet {
  background: #2ecc71;
  border-color: #2ecc71;
}
.values-item.active .values-bullet::after {
  background: #fff;
}

.values-toggle {
  margin-left: auto;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 2560px) {
  .values-toggle {
    font-size: 26px;
  }
}
@media (min-width: 3840px) {
  .values-toggle {
    font-size: 36px;
  }
}

.values-item.active .values-toggle {
  transform: rotate(45deg);
  color: #2ecc71;
}

.values-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 22px;
}
.values-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .values-content p {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .values-content p {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .values-content p {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .values-content p {
    font-size: 32px;
  }
}

.values-item.active .values-content {
  max-height: 200px;
  padding: 0 0 14px 22px;
}
@media (min-width: 2560px) {
  .values-item.active .values-content {
    max-height: 300px;
    padding: 0 0 20px 32px;
  }
}
@media (min-width: 3840px) {
  .values-item.active .values-content {
    max-height: 400px;
    padding: 0 0 28px 44px;
  }
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 50px 16px;
  text-align: center;
}
@media (min-width: 430px) {
  .industries-section {
    padding: 55px 20px;
  }
}
@media (min-width: 768px) {
  .industries-section {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .industries-section {
    padding: 70px 20px;
  }
}
@media (min-width: 1440px) {
  .industries-section {
    padding: 80px 20px;
  }
}
@media (min-width: 2560px) {
  .industries-section {
    max-width: 2400px;
    padding: 100px 0;
  }
}
@media (min-width: 3840px) {
  .industries-section {
    max-width: 3600px;
    padding: 140px 0;
  }
}

.industries-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #2e8b57;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .industries-label {
    font-size: 12px;
  }
}
@media (min-width: 2560px) {
  .industries-label {
    font-size: 18px;
    letter-spacing: 2.5px;
  }
}
@media (min-width: 3840px) {
  .industries-label {
    font-size: 26px;
  }
}

.industries-heading {
  font-size: 26px;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 10px;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .industries-heading {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .industries-heading {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .industries-heading {
    font-size: 38px;
  }
}
@media (min-width: 2560px) {
  .industries-heading {
    font-size: 56px;
    margin-top: 16px;
  }
}
@media (min-width: 3840px) {
  .industries-heading {
    font-size: 80px;
    margin-top: 24px;
  }
}

.industries-subtitle {
  font-size: 13px;
  color: #6b7074;
  margin-top: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .industries-subtitle {
    font-size: 14px;
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .industries-subtitle {
    font-size: 14.5px;
    max-width: 600px;
  }
}
@media (min-width: 2560px) {
  .industries-subtitle {
    font-size: 22px;
    max-width: 900px;
    margin-top: 16px;
  }
}
@media (min-width: 3840px) {
  .industries-subtitle {
    font-size: 32px;
    max-width: 1300px;
    margin-top: 24px;
  }
}

.industries-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .industries-grid {
    margin-top: 50px;
    gap: 30px;
  }
}
@media (min-width: 2560px) {
  .industries-grid {
    gap: 44px;
    margin-top: 64px;
  }
}
@media (min-width: 3840px) {
  .industries-grid {
    gap: 60px;
    margin-top: 88px;
  }
}

.industry-card {
  background: #f7f9f9;
  border: 1px solid #e3e8e8;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  border-color: #c5cdcd;
}
@media (min-width: 430px) {
  .industry-card {
    padding: 22px;
    border-radius: 16px;
  }
}
@media (min-width: 2560px) {
  .industry-card {
    padding: 36px;
    border-radius: 24px;
  }
}
@media (min-width: 3840px) {
  .industry-card {
    padding: 52px;
    border-radius: 32px;
  }
}

.industry-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .industry-card-title {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .industry-card-title {
    font-size: 20px;
  }
}
@media (min-width: 2560px) {
  .industry-card-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 3840px) {
  .industry-card-title {
    font-size: 44px;
    margin-bottom: 28px;
  }
}

.industry-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.industry-card-list li {
  font-size: 14px;
  color: #6b7074;
  margin-bottom: 9px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.industry-card-list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 430px) {
  .industry-card-list li {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .industry-card-list li {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (min-width: 2560px) {
  .industry-card-list li {
    font-size: 26px;
    margin-bottom: 14px;
  }
}
@media (min-width: 3840px) {
  .industry-card-list li {
    font-size: 38px;
    margin-bottom: 20px;
  }
}

.ind-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: #2e8b57;
  border-radius: 50%;
  margin-top: 6px;
}
@media (min-width: 2560px) {
  .ind-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 9px;
  }
}
@media (min-width: 3840px) {
  .ind-dot {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 13px;
  }
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta-wrapper {
  width: 100%;
  padding: 0 16px 60px;
}
@media (min-width: 430px) {
  .contact-cta-wrapper {
    padding: 0 20px 64px;
  }
}
@media (min-width: 768px) {
  .contact-cta-wrapper {
    padding: 0 40px 70px;
  }
}
@media (min-width: 1024px) {
  .contact-cta-wrapper {
    padding: 0 20px 78px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-wrapper {
    padding: 0 20px 80px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-wrapper {
    padding: 0 0 100px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-wrapper {
    padding: 0 0 140px;
  }
}

.contact-cta {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  background: #1B5E20;
  border-radius: 24px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .contact-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 40px;
    border-radius: 26px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .contact-cta {
    padding: 50px 50px;
  }
}
@media (min-width: 1440px) {
  .contact-cta {
    padding: 60px 60px;
    border-radius: 28px;
  }
}
@media (min-width: 2560px) {
  .contact-cta {
    max-width: 2400px;
    padding: 88px 88px;
    border-radius: 44px;
  }
}
@media (min-width: 3840px) {
  .contact-cta {
    max-width: 3600px;
    padding: 130px 130px;
    border-radius: 60px;
  }
}

.contact-cta-text {
  flex: 1;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-cta-text {
    max-width: 560px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-text {
    max-width: 820px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-text {
    max-width: 1200px;
  }
}

.contact-cta-heading {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .contact-cta-heading {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .contact-cta-heading {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .contact-cta-heading {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-heading {
    font-size: 42px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-heading {
    font-size: 60px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-heading {
    font-size: 88px;
  }
}

.contact-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact-cta-desc {
    font-size: 14px;
    max-width: 450px;
    margin-top: 15px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-desc {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-desc {
    font-size: 22px;
    margin-top: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-desc {
    font-size: 32px;
    margin-top: 32px;
  }
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  width: 100%;
}
@media (min-width: 430px) {
  .contact-cta-actions {
    flex-direction: row;
    width: auto;
  }
}
@media (min-width: 768px) {
  .contact-cta-actions {
    margin-top: 25px;
    gap: 20px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-actions {
    gap: 28px;
    margin-top: 32px;
  }
}

.contact-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
  min-height: 48px;
  width: 100%;
}
.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (min-width: 430px) {
  .contact-action-btn {
    width: auto;
  }
}
@media (min-width: 1440px) {
  .contact-action-btn {
    padding: 14px 18px;
    border-radius: 12px;
  }
}
@media (min-width: 2560px) {
  .contact-action-btn {
    padding: 20px 26px;
    border-radius: 18px;
    gap: 18px;
  }
}
@media (min-width: 3840px) {
  .contact-action-btn {
    padding: 28px 36px;
    border-radius: 24px;
    gap: 24px;
  }
}

.contact-action-icon {
  width: 38px;
  height: 38px;
  background: rgba(46, 204, 113, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-action-icon svg {
  width: 17px;
  height: 17px;
  color: #a0f0c0;
}
@media (min-width: 768px) {
  .contact-action-icon {
    width: 40px;
    height: 40px;
  }
  .contact-action-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 2560px) {
  .contact-action-icon {
    width: 58px;
    height: 58px;
  }
  .contact-action-icon svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 3840px) {
  .contact-action-icon {
    width: 80px;
    height: 80px;
  }
  .contact-action-icon svg {
    width: 40px;
    height: 40px;
  }
}

.contact-action-info {
  display: flex;
  flex-direction: column;
}

.contact-action-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact-action-label {
    font-size: 11px;
  }
}
@media (min-width: 2560px) {
  .contact-action-label {
    font-size: 16px;
  }
}
@media (min-width: 3840px) {
  .contact-action-label {
    font-size: 22px;
  }
}

.contact-action-value {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .contact-action-value {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .contact-action-value {
    font-size: 20px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .contact-action-value {
    font-size: 28px;
    margin-top: 6px;
  }
}

/* Contact Card */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  width: 100%;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-card {
    width: 290px;
    padding: 26px 24px;
    border-radius: 18px;
  }
}
@media (min-width: 1440px) {
  .contact-card {
    width: 320px;
    padding: 28px 25px;
  }
}
@media (min-width: 2560px) {
  .contact-card {
    width: 460px;
    padding: 40px 36px;
    border-radius: 26px;
  }
}
@media (min-width: 3840px) {
  .contact-card {
    width: 660px;
    padding: 56px 52px;
    border-radius: 36px;
  }
}

.contact-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .contact-card-title {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .contact-card-title {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .contact-card-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
@media (min-width: 3840px) {
  .contact-card-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-row:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 2560px) {
  .contact-row {
    gap: 16px;
    margin-bottom: 20px;
  }
}

.contact-row-icon {
  width: 32px;
  height: 32px;
  background: #e6f4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row-icon svg {
  width: 15px;
  height: 15px;
  color: #1f7a5a;
}
@media (min-width: 768px) {
  .contact-row-icon {
    width: 34px;
    height: 34px;
  }
  .contact-row-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 2560px) {
  .contact-row-icon {
    width: 50px;
    height: 50px;
  }
  .contact-row-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 3840px) {
  .contact-row-icon {
    width: 70px;
    height: 70px;
  }
  .contact-row-icon svg {
    width: 34px;
    height: 34px;
  }
}

.contact-row-info {
  display: flex;
  flex-direction: column;
}

.contact-row-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #2c2c2c;
}
@media (min-width: 1440px) {
  .contact-row-name {
    font-size: 14.5px;
  }
}
@media (min-width: 2560px) {
  .contact-row-name {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-row-name {
    font-size: 32px;
  }
}

.contact-row-detail {
  font-size: 13px;
  color: #6b7074;
  line-height: 1.5;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .contact-row-detail {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .contact-row-detail {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .contact-row-detail {
    font-size: 20px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .contact-row-detail {
    font-size: 28px;
    margin-top: 6px;
  }
}

.contact-row-role {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
@media (min-width: 2560px) {
  .contact-row-role {
    font-size: 16px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .contact-row-role {
    font-size: 22px;
  }
}

.contact-card-divider {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 14px 0;
}
@media (min-width: 768px) {
  .contact-card-divider {
    margin: 16px 0;
  }
}
@media (min-width: 2560px) {
  .contact-card-divider {
    margin: 22px 0;
  }
}

.contact-card-footer {
  font-size: 11px;
  color: #888;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card-footer svg {
  width: 13px;
  height: 13px;
  color: #aaa;
}
@media (min-width: 768px) {
  .contact-card-footer {
    font-size: 12px;
    margin-top: 16px;
  }
}
@media (min-width: 2560px) {
  .contact-card-footer {
    font-size: 18px;
    margin-top: 22px;
  }
  .contact-card-footer svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 3840px) {
  .contact-card-footer {
    font-size: 26px;
    margin-top: 32px;
  }
  .contact-card-footer svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer-wrapper {
  width: 100%;
  padding: 0 16px 36px;
}
@media (min-width: 430px) {
  .site-footer-wrapper {
    padding: 0 20px 40px;
  }
}
@media (min-width: 768px) {
  .site-footer-wrapper {
    padding: 0 56px 40px;
  }
}
@media (min-width: 2560px) {
  .site-footer-wrapper {
    padding: 0 0 56px;
  }
}
@media (min-width: 3840px) {
  .site-footer-wrapper {
    padding: 0 0 80px;
  }
}

.site-footer {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  position: relative;
  background: #012025;
  min-height: 320px;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 40px 35px 28px;
    border-radius: 0;
    background: url("../assets/footer.svg") no-repeat center center;
    background-size: 100% 100%;
  }
}
@media (min-width: 1440px) {
  .site-footer {
    padding: 50px 50px 30px;
  }
}
@media (min-width: 2560px) {
  .site-footer {
    max-width: 2400px;
    padding: 72px 72px 44px;
    border-radius: 0;
    min-height: 500px;
  }
}
@media (min-width: 3840px) {
  .site-footer {
    max-width: 3600px;
    padding: 104px 104px 64px;
    min-height: 720px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 2560px) {
  .footer-grid {
    gap: 56px;
  }
}
@media (min-width: 3840px) {
  .footer-grid {
    gap: 80px;
  }
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-col-title {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer-col-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-col-title {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
@media (min-width: 3840px) {
  .footer-col-title {
    font-size: 34px;
    margin-bottom: 36px;
  }
}

.footer-logo-img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-logo-img {
    height: 40px;
  }
}
@media (min-width: 2560px) {
  .footer-logo-img {
    height: 60px;
  }
}
@media (min-width: 3840px) {
  .footer-logo-img {
    height: 86px;
  }
}

.footer-about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-top: 13px;
}
@media (min-width: 1440px) {
  .footer-about-text {
    font-size: 14px;
    margin-top: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-about-text {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-about-text {
    font-size: 28px;
    margin-top: 28px;
  }
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-socials {
    margin-top: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-socials {
    gap: 14px;
    margin-top: 26px;
  }
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-social-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1440px) {
  .footer-social-icon {
    width: 32px;
    height: 32px;
  }
  .footer-social-icon svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 2560px) {
  .footer-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
  }
  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-social-icon {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }
  .footer-social-icon svg {
    width: 30px;
    height: 30px;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-links li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footer-links li a {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-links li a {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-links li a {
    font-size: 32px;
  }
}
@media (min-width: 2560px) {
  .footer-links li {
    margin-bottom: 14px;
  }
}
@media (min-width: 3840px) {
  .footer-links li {
    margin-bottom: 20px;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-contact-item {
    font-size: 14px;
  }
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-contact-item {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-contact-item svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-contact-item {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .footer-contact-item svg {
    width: 30px;
    height: 30px;
  }
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 28px;
}
@media (min-width: 1440px) {
  .footer-divider {
    margin-top: 30px;
  }
}
@media (min-width: 2560px) {
  .footer-divider {
    margin-top: 44px;
  }
}
@media (min-width: 3840px) {
  .footer-divider {
    margin-top: 64px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 72%;
  }
}
@media (min-width: 1440px) {
  .footer-bottom {
    margin-top: 20px;
  }
}
@media (min-width: 2560px) {
  .footer-bottom {
    margin-top: 30px;
    gap: 0;
  }
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 1440px) {
  .footer-copyright {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-copyright {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-copyright {
    font-size: 28px;
  }
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #fff;
}
@media (min-width: 1440px) {
  .footer-legal a {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-legal a {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-legal a {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .footer-legal {
    gap: 24px;
  }
}
@media (min-width: 2560px) {
  .footer-legal {
    gap: 36px;
  }
}
@media (min-width: 3840px) {
  .footer-legal {
    gap: 52px;
  }
}/*# sourceMappingURL=styles.css.map */