	html {
	  scroll-behavior: smooth;
	}

    :root {
      --green:#2e7d32;
      --blue:#0d47a1;
      --dark:#1a1a1a;
      --light:#f5f7fa;
    }

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

    body {
      color: var(--dark);
      line-height: 1.6;
      background: #fff;
    }

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

    /* HEADER */
    header {
      background: #fff;
      border-bottom: 1px solid #e5e5e5;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      max-width: 1200px;
      margin: auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 100px;
    }

    .menu {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .menu a {
      font-weight: 600;
      color: var(--dark);
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
      padding: 70px 20px;
    }

    .hero-inner {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 38px;
      margin-bottom: 20px;
      color: var(--blue);
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 25px;
    }

    /* SECTIONS */
    section {
      padding: 20px 20px;
    }

    .container {
      max-width: 1100px;
      margin: auto;
    }

    h2 {
      font-size: 30px;
      margin-bottom: 20px;
      color: var(--blue);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    /* CTA STRIP */
	.cta-strip {
	  background: linear-gradient(135deg, #1b5e20, #00c853);
	  color: #fff;
	  text-align: center;
	  padding: 50px 20px;
	}

	.cta-strip h2{
		color: #fff;
	}

    .cta-strip a {
      display: inline-block;
      margin-top: 15px;
      background: #fff;
      color: var(--green);
      padding: 14px 30px;
      font-weight: bold;
      border-radius: 4px;
    }

    /* FOOTER */
    footer {
      background: #111;
      color: #ccc;
      padding: 40px 20px;
      font-size: 14px;
    }

    footer .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      }

      .menu.active {
        display: flex;
      }

      .hamburger {
        display: block;
      }
    }
	/* CTA Section */
.cta-section {
  background: url("cta.png") center center / cover no-repeat;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 800px;
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #00c853;
  color: #000;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 70px 20px;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #222;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
/* Service Areas */
.service-areas {
  padding: 70px 20px;
  background: #ffffff;
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.service-areas p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.6;
  color: #555;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.city {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
}

.city h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #222;
}

.city p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.service-note {
  margin-top: 40px;
  font-weight: bold;
  color: #222;
}
.big-number{
	font-size: 30px;
	font-weight: bold;
}
.call-btn-cl{
	color: #fff !important;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2e7d32, #00c853);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 200, 83, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 200, 83, 0.5);
}
.hero .cta {
  font-size: 1.15rem;
  background: linear-gradient(135deg, #00c853, #64dd17);
  color: #000;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
}
.box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease;
}

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

.box .icon {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 26px;
}
/* FOOTER BOTTOM – LEGAL */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-bottom a {
  color: #7dd3fc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
#about,
#services,
#service-areas,
#contact {
  scroll-margin-top: 120px;
}
@media (max-width: 768px) {
  .menu.active .call-btn {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: none;
    width: 100%;
    justify-content: center;
  }

  .menu.active .call-btn svg {
    width: 16px;
    height: 16px;
  }
}
/* Language Switch */
.lang-switch {
  margin-left: 15px;
}
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 10px; /* adjust spacing as needed */
}

.lang-flag {
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.lang-flag:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.35);
}


@media (max-width: 768px) {
  .lang-switch {
    margin-left: 0;
    margin-top: 10px;
  }
}
