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

body {
  font-family: 'Inter', sans-serif;
  color: #404040;
  background-color: transparent;
  line-height: 1.6;
}

.main-page {
  background-image: linear-gradient(120deg, #ffffff 0%, #9bd0be 100%);
}

/* Header */
header {
  padding: 1rem 2rem;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 17px 28px;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo img {
  width: 125px;
}

.logo-mobile img{
  width: 100px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Responsive toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

 .logo-mobile{
    display: none;
  }


nav.scrolled {
  background: linear-gradient(180deg, #ffffff 0%, #edfff9 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}


/* Navigation */
ul.nav-links,
ul.nav-text {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-text li:not(.lang-switch) {
  margin-left: 2rem;
}

.nav-links a,
.nav-text a {
  text-decoration: none;
  font-weight: 400;
  border-radius: 26px;
}

.nav-text a {
  color: #404040;
  font-size: 14px;
}

.nav-text a.contact-btn {
  background-color: #146F57;
  color: white;
  padding: 10px 12px;
}

.nav-links i {
  font-size: 11px;
}

.nav-links li {
  background-color: #eff7f4;
  padding: 5px 13px;
  border-radius: 26px;
  margin-right: 0.80rem;
}

.nav-links li:hover {
  background: #D0EFE6;
}

.nav-links a {
  color: #1a1a1a;
  font-size: 14px;
  margin-left: 7px;
}

.nav-links a.active {
  background-color: #dcf5eb;
  color: #1a1a1a;
  font-weight: bold;
}

.ico-navbar {
  background: white;
  padding: 7px;
  border-radius: 50px;
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 1px;
}

.lang-switch img.us-icon {
  width: 15px;
  height: 15px;
}

.globe-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.spinner {
  border: 4px solid #d0efe6;
  border-top: 4px solid #2b977d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* Hero Section */
#hero {
  text-align: center;
  min-height: 83vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero h1 {
   font-size: 3.2rem;
   font-weight: 300;
   line-height: 1.3;
   max-width: 70rem;
   padding: 7rem 0rem 2rem 0rem;
   margin: 0 auto;
}

#hero h1 strong {
  color: #000;
  font-weight: 700;
}

#hero h2 {
  font-size: 1.225rem;
  font-weight: 400;
  color: #5e5e5e;
  max-width: 605px;
  margin: 0 auto;
}

#hero b{
  font-weight: bold;
  color: #146F57;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
}

.btn-primary {
  background-color: #156f57;
  color: #fff;
  padding: 7px 20px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #207b66;
}

.btn-link {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #146F57;
}

/* Hero Features Section */
.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8rem;
}

.feature-card {
  background-color: #dcf5eb;
  border-radius: 16px;
  padding: 1.1rem;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.white {
  background-color: #fff;
}

.feature-card.horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-card:hover .feature-icon {
  background-color: #1c7e67;
}

.feature-icon {
  background-color: #2b977d;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  text-align: left;
}

.feature-text h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-text p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}

/* How It Works Section */
.curved-divider {
  height: 100px;
  border-top-left-radius: 100% 100px;
  border-top-right-radius: 100% 100px;
  margin-top: 6px;
  background: white;
}

.underline {
  border-bottom: 4px solid #2b977d;
  border-radius: 2px; 
  padding-bottom: 2px;
}

#how-it-works {
  padding: 6rem 2rem 9rem;
  text-align: center;
  background: #9cd0bf;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color:#000;
}

.section-title b{
    color:#146F57;
    font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding: 5px 39px;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.step-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.step-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #2b977d;
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.step-content h3 {
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: black;
    background: #dcf5ea;
    border-radius: 7px;
    border-bottom: 1px solid #399a82;
}

.step-content p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Trust & Security Section */

#trust-security {
  padding: 7rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.security-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
  padding-top: 40px;
}

.security-card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #f7fcfa;
  border-radius: 7px;
  border-bottom: 1px solid #399a82;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.security-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.security-card .icon-area {
  background-color: #3b9a83;
  color: #ffffff;
  width: 90px;
  height: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.text-area {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.text-area h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}

.text-area p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.icon-area.light {
  background-color: #e7f6f1;
  color: #2b977d;
}

#globeViz {
  width: 100%;
  height: auto;
  min-height: 100px; 
  transition: height 0.5s ease;
  overflow: hidden;
  position: relative;
   margin-top: 3rem;
  border-radius: 20px;
}

#globeViz.loaded {
  height: 250px; 
}

#globeViz canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 20px;
  background: transparent !important;
}

.globe-label {
  position: relative;
  background: white;
  color: #2b977d;
  font-family: 'Inter', sans-serif;
  padding: 8px 14px 8px 36px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.globe-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2b977d;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  box-shadow: 0 0 0 rgba(43, 151, 125, 0.7);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}


/* Who We Serve */
#who-we-serve {
  background-color: #ffffff;
  text-align: center;
}
.section-hold {
  background: #9cd0bf; 
  padding: 2rem 0rem 0rem 0rem;
  border-radius: 26px;
  max-width: 1200px;
  margin: auto;
}

.serve-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  list-style: none;
}

.serve-stats li {
  background: rgb(255 255 255 / 33%);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
}

.serve-stats li strong {
  font-size: 1.4rem;
  color: #121212;
}



/* Footer */
#site-footer {
  background-color: #326d5a;
  padding: 1.2rem 1rem;
}

.footer-content {
  padding: 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 1168px) {
  .main-page {
    padding: 22px;
  }

  .curved-divider {
    margin-top: 28px;
    height: 58px;
  }

  .logo img {
    display: none;
  }

  .logo-mobile {
    display: flex;
    align-items: center;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 73px;
    left: 0;
    background-color: white;
    padding: 2rem 0;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border: 1px solid #9ab0aa;
    border-radius: 17px;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .nav-links,
  .nav-text {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    width: 100%;
    align-items: center;
  }

  .nav-links li,
  .nav-text li {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: background 0.3s ease;
    background-color: #f1f8f6;
  }

  .nav-links li:hover,
  .nav-text li:hover {
    background-color: #d0efe6;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links a,
  .nav-text a,
  .lang-switch a {
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .nav-text a.contact-btn {
    width: 100%;
    padding: 14px 0;
    background-color: #2b6f5a;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
  }

  .nav-links i {
    display: none;
  }

  .lang-switch img.us-icon {
    width: 20px;
    height: 20px;
  }

  .nav-text li:not(.lang-switch) {
    margin-left: 0px;
}

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}



@media (max-width: 768px) {
  #hero {
    margin-top: 6rem;
  }

  .nav-text li {
    margin-left: 0 !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  #hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  #hero h2 {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .feature-card {
    width: 100%;
    flex-direction: column !important;
    align-items: flex-start;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .feature-list {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  /* .globe-label */
  #globeViz {
    height: 250px;
  }

  .serve-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-hold {
    padding: 2rem 1rem;
  }

  .globe-label {
    font-size: 11px;
    padding: 6px 10px 6px 30px;
  }

  .globe-label::before {
    width: 8px;
    height: 8px;
    left: 10px;
  }
}

