/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #007acc; /* bold blue */
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.header-content h1,
.tagline,
nav a {
  color: white;
}


.logo {
  width: 200px;   /* Increased from 60px */
  height: auto;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.tagline {
  font-style: italic;
  color: #ffffff;          /* White for contrast */
  font-size: 1rem;         /* Slightly larger */
  font-weight: 500;        /* Semi-bold */
  margin-top: 0.25rem;
}


nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #1a3d2f;
  font-weight: bold;
}

.hero {
  background-color: #d8eefe;
  text-align: center;
  padding: 3rem 1rem;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1rem; /* or try 1.3rem / 1.4rem based on how large you want it */
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #0072e3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #005fa3;
}
/*
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #e6f5ea;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2e7d32;
}
*/
.trust-badges {
  overflow: hidden;
  background: #e6f5ea;
  padding: 1rem 0;
  position: relative;
}

.trust-badges .badge-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-right 40s linear infinite;
}

.trust-badges .badge {
  display: inline-block;
  margin: 0 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}

@keyframes scroll-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.services-section {
  background-color: #f3f3f3;
  padding: 2.5rem 1rem;
  text-align: center;
}

.services-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.service-card {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: #1a1a1a;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  font-weight: 1000;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.service-card .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  font-weight: 850;
  margin: 0;
}
.contact-section {
  background-color: #eaf7ef;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-section h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0.4rem 0;
}

.contact-details a {
  color: #0066cc;
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #b5d6b5;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  border: none;
  background-color: #1a7f3c;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #145f2d;
}

footer {
  text-align: center;
  background-color: #e0e0e0;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #444;
}
/* Make emojis larger inside service cards */
.service-card {
  font-size: 1.6rem;
}
.icon {
  font-size: 1.6rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
