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

body {
  color: #183b56;
  background: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 41, 63, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  max-width: 900px;
  color: #fff;
}

.trust-pill {
  background: rgba(0, 255, 0, 0.15);
  color: #2dff2d;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.green {
  color: #2dff2d;
}
.yellow {
  color: #ffd400;
}

.hero p {
  font-size: 1.3rem;
  color: #d6e2ec;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.btn {
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}

.btn-green {
  background: #1aff1a;
  color: #003300;
}

.btn-yellow {
  background: #ffd400;
  color: #2b2b00;
}

/* SERVICES */
.services-section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* 3 columns of 300px each */
  grid-template-rows: repeat(2, auto); /* 2 rows */
  gap: 35px;
  justify-content: center; /* centers the grid horizontally */
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card > h3 {
  color: Black;
}

.service-card > p {
  color: #111;
}

.service-card > .icon-box {
  text-decoration: none;
}

.service-card-link {
  text-decoration: none;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #e9fbe9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
}

/* WHY US */
.why-heading {
  text-align: center;
  margin: 60px 0 40px 0;
}

.why-heading h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #183b56;
  margin-bottom: 10px;
}

.why-heading .subheading {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
}

.why-section {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 25px;
  padding: 28px 30px;
  border-radius: 16px;
  background: #fff;
  border-left: 6px solid #1aff1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.check {
  width: 36px;
  height: 36px;
  background: #1aff1a;
  color: #004d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.pill {
  background: #e9fbe9;
  color: #1a7f1a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 10px;
}

.contact-section {
  padding: 80px 8%;
  background: #f8f9fa;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 40px;
}

.consultation-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #183b56;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1aff1a;
  box-shadow: 0 0 8px rgba(42, 255, 42, 0.3);
}

.consultation-form button {
  align-self: center;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: #1aff1a;
  color: #003300;
  transition: background 0.3s;
}

.consultation-form button:hover {
  background: #14cc14;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .consultation-form {
    gap: 15px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-socials {
    gap: 15px;
  }

  .footer-info p {
    font-size: 0.8rem;
  }
}

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

/* HOVER EFFECTS */

/* SERVICE CARDS */
.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ICON BOX HOVER */
.service-card:hover .icon-box {
  background: #1aff1a;
  color: #003300;
  transition:
    background 0.3s,
    color 0.3s;
}

/* WHY CARDS */
.why-card {
  display: flex;
  gap: 25px;
  padding: 28px 30px;
  border-radius: 16px;
  background: #fff;
  border-left: 6px solid #1aff1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-left-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-left-color: #ffd400;
}

/* BUTTON HOVER */
.btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* TRUST PILL HOVER */
.trust-pill {
  transition:
    transform 0.2s ease,
    background 0.3s;
}

.trust-pill:hover {
  transform: scale(1.05);
  background: rgba(45, 255, 45, 0.25);
}
