:root {
        --bg: #ffffff;
        --text: #0f172a; /* slate-900 */
        --muted: #475569; /* slate-600 */
        --accent: #0bc16c; /* blue-600 */
        --accent-600: #1d4ed8; /* blue-700 */
        --border: #e2e8f0; /* slate-200 */
      }

      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
          Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--text);
        background: var(--bg);
      }
header {
  position: relative !important; /* ensure header doesn't block sticky */
}
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
      }

      /* Topbar */
      .topbar {
        border-bottom: 1px solid var(--border);
        background: #f8fafc; /* slate-50 */
        font-size: 14px;
        color: var(--muted);
      }
      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 8px 0;
      }
      .contact {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .contact a {
        text-decoration: none;
        color: inherit;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .contact svg {
        width: 16px;
        height: 16px;
      }

      .language {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .language label {
        font-weight: 500;
      }
      .language select {
        appearance: none;
        padding: 6px 28px 6px 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff
          url('data:image/svg+xml;utf8,<svg fill="%2367717a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.24a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z"/></svg>')
          no-repeat right 8px center;
        background-size: 16px;
        color: var(--text);
      }

      /* Navbar */
      .navbar {
        position: relative;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 0;
      }
      .logo {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text);
        font-weight: 800;
        letter-spacing: 0.2px;
        font-size: 20px;
      }
      .logo-mark {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--accent), #60a5fa);
        display: inline-block;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 22px;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 10px;
      }
      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--text);
        background: #f1f5f9;
        outline: none;
      }

      .cta {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--accent);
        color: white;
        font-weight: 600;
        border: 1px solid transparent;
      }
      .cta:hover,
      .cta:focus-visible {
        background: var(--accent-600);
        outline: none;
      }

      /* Hamburger */
      .hamburger {
        display: none;
        border: 1px solid var(--border);
        background: #fff;
        border-radius: 12px;
        padding: 8px 10px;
      }
      .hamburger svg {
        width: 22px;
        height: 22px;
      }

      /* Mobile menu (overlay) */
      .mobile-panel {
        display: none;
        position: absolute;
        inset: 100% 0 auto 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
      }
      .mobile-panel.open {
        display: block;
      }
      .mobile-menu {
        display: grid;
        gap: 6px;
        padding: 14px 16px 18px;
      }
      .mobile-menu a {
        text-decoration: none;
        color: var(--text);
        padding: 10px 12px;
        border-radius: 10px;
        font-weight: 500;
      }
      .mobile-menu a:hover,
      .mobile-menu a:focus-visible {
        background: #f1f5f9;
        outline: none;
      }
      .mobile-cta {
        margin-top: 6px;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
        .cta {
          display: none;
        }
        .hamburger {
          display: inline-flex;
          align-items: center;
          justify-content: center;
        }
      }
      .hero {
        display: flex;
        justify-content: space-between;
        padding: 60px 20px;
        max-width: 1200px;
        margin: auto;
        gap: 40px;
      }
      .hero-text {
        padding-top: 0 !important;
        flex: 1;
      }
      .hero-text h1 {
        font-size: 48px;
        margin-bottom: 20px;
      }
      .hero-text p {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
      }
      .hero-buttons {
        display: flex;
        gap: 15px;
      }
      .hero-buttons a {
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
      }
      .hero-buttons a.primary {
        background: #0bc16c;
        color: white;
      }
      .hero-buttons a.secondary {
        background: #f1f1f1;
        color: #333;
      }
      .hero-images {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .hero-images img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
      }
      @media (max-width: 900px) {
        .hero {
          flex-direction: column;
          text-align: center;
        }
        .hero-images {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      /* Counter Section */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.counters h2 {
  font-size: 80px;
  margin: 0;
  color: #0bc16c;
}
.counters p {
  font-size: 16px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-images {
    grid-template-columns: repeat(2, 1fr);
  }
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pest-signs img {
  filter: grayscale(30%);
  transition: all 0.3s ease;
}
.pest-signs img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.eco-pest .card {
  min-height: 250px;
}
.eco-pest .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-body
{
    height: 200px!important;
}

.approved-section {
  padding: 40px 20px;
  text-align: center;
}

.approved-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.approved-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap; /* responsive */
}

.approved-logos .logo img {
  max-height: 100px;
  max-width: 220px;
  object-fit: contain;
}

.testimonial-section {
  position: relative;
  color: #fff;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

.carousel-caption {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.small-title {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-title {
  font-size: 40px;
  font-weight: 600;
  margin: 10px 0;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
}

.footer p {
  font-size: 14px;
  color: #333;
}

.footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom {
  font-size: 13px;
}

.social-icons a {
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0bc16c !important; /* Bootstrap blue on hover */
}



.contact-section {
  max-width: 800px !important;
  padding: 50px 0;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 2rem;
  font-weight: bold;
}

.contact-left p {
  margin-bottom: 20px;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid #0bc16c;
  padding: 8px 5px;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0bc16c;
}

.contact-form textarea {
  resize: none;
  min-height: 80px;
}

.contact-form button {
  background: #0bc16c;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0bc16c; /* Slightly darker shade */
}

.contact-right img {
  max-width: 250px;
}


.pest-control-section {
  padding: 50px 0;
}

.pest-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.pest-left {
  flex: 1;
  min-width: 280px;
}

.pest-left h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pest-left .short-desc {
  font-size: 1rem;
  color: #666;
}

.pest-right {
  flex: 2;
  min-width: 300px;
}

.pest-right p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.navbar.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020; /* higher than other content */
}




.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 60, 130, 0.6), rgba(0, 60, 130, 0.6)),
                url('static/img/hero-pest.jpg') center/cover no-repeat;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
}

.card-body1{
height: 100% !important; /* Ensure cards are of equal height */ 
}
.service-card {
  border: 2px solid #0bc16c;
  border-radius: 10px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100% !important; /* Ensure cards are of equal height */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-icon {
  width: 50px;
  height: auto;
}

.bg-primary {
  background-color: #0bc16c !important;
}

.btn-success {
  background:  #0bc16c !important;
  border: none;
}


.about-section {
  background-color: #ffffff;
}

.about-section ul {
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 8px;
}

.about-section img {
  border-radius: 12px;
}

.btn-primary {
  background-color: #0bc16c;
  border: none;
}

.btn-primary:hover {
  background-color: #0bc16c;
}

.btn-outline-primary {
  border: 2px solid #0bc16c;
  color: #0bc16c;
}

.btn-outline-primary:hover {
  background-color: #0bc16c;
  color: #fff;
}

.faq-section .accordion-button {
  background-color: #fff;
  color: #0bc16c;
  font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #0bc16c;
  color: #fff;
}

.faq-section .accordion-item {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.about-hero {
  background: url('static/img/04.jpg') no-repeat center center/cover;
  min-height: 300px; /* adjust height as needed */
  position: relative;
}

/* Optional: Add a dark overlay for better text readability */
.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* change opacity as needed */
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

header.bg-primary {
  background: url('static/img/03.jpg') no-repeat center center/cover;
  position: relative;
}

/* Blue overlay to match theme */
header.bg-primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(85, 85, 85, 0.349) !important; /* Bootstrap primary blue with opacity */
  z-index: 1;
}

header.bg-primary h1,
header.bg-primary p {
  position: relative;
  z-index: 2;
}
/* Open Bootstrap dropdowns on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* removes the small gap */
}
.navbar .dropdown-toggle::after {
  transition: transform 0.2s;
}
.navbar .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.bg-green
{
  background-color: #0bc16c !important;
}

.btn-success{
  border: 0 solid rgba(255, 255, 255, 0) !important;
}
.text-success
{
  color: #0bc16c !important;
}
.nav-inner{
  padding: 0 !important;
}
.active {
  color: #0bc16c !important;
  font-weight: bold;
}
.dropdown-item:focus{
  background-color: #0bc16c !important;
  color: white !important;
}
.dropdown-item:hover {
  background-color: #0bc16c !important;
  color: white !important;

}
.dropdown-item::after {
  background-color: #0bc16c !important;
  color: white !important;
}
.dropdown-item.active {
  background-color: #0bc16c !important;
  color: white !important;
}

.text-success
{
  color: #0bc16c !important;
}
@media (max-width: 768px) {
.navbar-brand img
{
  width: 320px;
}
}
.navbar
{
  padding: 2% !important;
}
.navbar-toggler {
  border: none !important;       
  box-shadow: none !important;   
  outline: none !important;      
  background: transparent !important; 
  color: #0bc16c;
}

/* Change hamburger (toggler icon) color */
.navbar-toggler-icon {
  color: #0bc16c !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230bc16c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


.map-container {
  overflow: hidden;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 12px;
}
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}  
.logo-size
{
  width: 100% !important;
}