* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

/* Previous Color 28aec8
Updated Color 00b6c6 */

/* HERO BANNER WITH FULL COVER BACKGROUND */
.hero-banner {
  position: relative;
  background: url('hero-banner-B1.png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 120px;
  margin-bottom: 1.5rem;
}

.cta-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 550px;
  margin: 1.5rem auto 0;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-color: #fff;
}

.cta-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 1rem;
  min-width: 200px;
}

.cta-form button {
  padding: 0.75rem 1.5rem;
  background-color: #00b6c6;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.cta-form button:hover {
  background-color: #0295a6;
}

/* Optional tweak for smallest devices */
@media (max-width: 360px) {
  .cta-form input[type="email"] {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .cta-form button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
  }
}


/* HERO SECTION - OLD CODE
.hero {
  background-image: url('hero-banner-B1.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-form input {
  padding: 0.75rem;
  width: 250px;
  border-radius: 5px 0 0 5px;
  border: none;
}

.cta-form button {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #a5e9f6;
  color: #000;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

*/

/* FEATURES SECTION */
.features-section {
  background: white;
  padding: 4rem 2rem;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: #a5e9f6;
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-box i {
  font-size: 2rem;
  color: #00b6c6;
  margin-bottom: 1rem;
}

/* STRIP */
.impact-strip {
  background: #00b6c6;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

/* SERVICES SECTION */
.services-section {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.service-box {
  background: #f0f0f0;
  padding: 2rem;
  width: 250px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  background: #00b6c6;
  color: white;
  text-align: center;
  padding: 2rem;
}

footer button {
  background: #cccccc;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

footer a {
  color: #000000;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid, .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}







/* TEXT BLOCK (IMPROVED) */
.text-block {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.text-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.text-container h2 {
  font-size: 2rem;
  color: #0a2d2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #333333;
}

/* Ensure proper spacing around the call-to-action strip */
.impact-strip {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.5rem;
}




/* STATS SECTION */
.stats-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 180px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  color: #00b6c6; /* Replace with --highlight-teal or your brand accent */
  font-size: 2rem;
  font-weight: 700;
}

.stat-box p {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}




/* TEAM SECTION */
.team-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.team-title {
  color: #0a2d2e;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.team-subtitle {
  color: #555555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.team-member {
  width: 220px;
  background-color: #e8f8fa;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  border-radius: 8px;
  height: auto;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0 0.25rem;
  color: #0a2d2e;
  font-size: 1.1rem;
}

.team-member p {
  margin: 0;
  font-size: 0.95rem;
  color: #555555;
}


/* CONTACT INFO */

.contact-info {
  background-color: #00b6c6; /* theme background */
  padding: 4rem 2rem;
  text-align: center;
}

.contact-info h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.contact-info-item {
  max-width: 260px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-item img {
  width: 32px;
  height: auto;
  margin-bottom: 1rem;
}

.contact-info-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-info-grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}



/* GOOGLE MAP */
.map-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.map-section h2 {
  color: #0a2d2e;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}


/* INVOICY STRIP */
.invoicy-strip {
  background-color: #00b6c6; /* brand blue */
  padding: 2rem 1rem;
  text-align: center;
}

.invoicy-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.invoicy-content img {
  width: 250px;
  height: 125px;
}

.invoicy-content p {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 600px) {
  .invoicy-content {
    flex-direction: column;
    text-align: center;
  }

  .invoicy-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}






.split-section {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.split-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-text h2 {
  color: #00b6c6;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.split-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta-button {
  background-color: #00b6c6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #1b8a9f;
}

/* Reverse layout when needed */
.image-right {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .split-content {
    flex-direction: column;
    text-align: center;
  }

  .split-text h2 {
    font-size: 1.5rem;
  }
}
