* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: white;
  color: #333;
  overflow-x: hidden;
}

/* navigation bar */
.navbar {
  background-color: #0e5d0a;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Brush Script MT', cursive;
}


.navbar-nav .nav-link {
  padding: 10px 15px !important;
  border-radius: 24px;
  transition: background 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: #e3e027;
  color: #111 !important;
}



/* about header */
.about-header {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.about-content {
  color: black;
}

.about-content h3 {
  color: #0e5d0a;
  font-size: 24px;
  margin: 10px 0;
  font-weight: 800;
}

.about-content h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.about-content h2 span {
  color: #0e5d0a;
}
.about-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.about-content h1 span {
  color: #0e5d0a; /* Yellow highlight */
}

.about-content p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* Hide mobile intro by default */
.mobile-intro {
  display: none;
}

.mobile-intro .highlight-text {
  font-size: 18px;
  color: #0e5d0a;
}

/* Responsive: Show only "This is us" on small screens */
@media screen and (max-width: 768px) {
  .about-header {
    padding: 60px 0;
  }

  .about-header .row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-img-col {
    display: block;
    grid-row: 1;
    grid-column: 1;
    opacity: 0.2;
    z-index: 1;
    margin-top: 0 !important;
  }

  .about-content {
    grid-row: 1;
    grid-column: 1;
    z-index: 2;
  }
  
  /* Reduce heading size just in case it’s shown somewhere else */
  .about-content h2 {
    font-size: 16px;
  }

  /* Hide the desktop heading and paragraph */
  .desktop-heading,
  .desktop-intro {
    display: none;
  }

  /* Show only the mobile version text */
  .about-content .mobile-intro {
  display: block;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
  color: #0e5d0a;
  text-align: center;
  margin-left: 0;
  padding: 0 20px;
  width: 100%;
  position: relative;
  left: 0;
  background-color: transparent;
  }
}


/*footer */
.site-footer {
  background-color: #007a0d !important;
  color: white;
  padding: 30px 20px;
  font-family: sans-serif;
  text-align: center;
}

.service-text {
  margin-bottom: 10px;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.footer-middle {
  background-color: #002c0f;
}


.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.footer-logo span {
  color: #ffc107;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.floating-support-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  animation: pulse 1.5s infinite;
}

.floating-support-btn:hover {
  transform: scale(1.1);
  background-color: #1ebd5a;
}

.floating-support-btn i {
  line-height: 60px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Payment Process Section */
.payment-process-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.payment-process-section .section-title h2 {
  font-size: 36px;
  color: #0e5d0a;
  margin-bottom: 15px;
  font-weight: 800;
}

.payment-process-section .section-title p {
  color: #555;
  margin-bottom: 40px;
  font-size: 18px;
}


.process-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
}

.icon-box svg {
  width: 60px;
  height: 60px;
  color: #0e5d0a;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.process-card p {
  color: #666;
  line-height: 1.6;
}

/* Trusted Stats Section */
.trusted-stats-section {
  background-color: #0e5d0a;
  padding: 60px 20px;
  color: white;
}


.stat-item h3 {
  font-size: 40px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  font-weight: 500;
}