 /* Global Font Styles */
body {
     font-family: 'Noto Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
    font-family: 'Noto Sans', sans-serif;

}
 

    html {
      scroll-behavior: smooth;
    }

    nav {
      background-color: #fff;
      padding: 10px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      border-bottom: 1px solid #eee;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
      font-size: 15px;
    }

    .nav-links a:hover {
      color: #dc2626;
    }

    .call-btn {
      background-color: #dc2626;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      font-size: 14px;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .bar {
      height: 3px;
      width: 25px;
      background-color: #333;
      margin: 4px 0;
      transition: 0.3s;
    }

    .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 8px 12px;
  display: inline-block;
}

.nav-links .dropdown:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f8f8f8;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 999;
  min-width: 200px;
}

.submenu li {
  white-space: nowrap;
  list-style: none;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  color: #333;
  transition: background 0.3s ease;
}

.submenu a:hover {
  background-color: #e0e0e0;
}
/* Default state: hidden */
.submenu.multi-column {
  display: none;
  flex-wrap: wrap;
  width: 600px;
  padding: 20px;
  position: absolute;
  background: #f8f8f8;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

/* On hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .submenu.multi-column {
    display: flex;
  }
}

/* When toggled open on mobile */
.submenu.multi-column.open {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  position: static;
  box-shadow: none;
  padding: 10px;
}

/* For 3-column layout on desktop */
@media (min-width: 769px) {
  .submenu.multi-column li {
    width: 33.33%;
    padding: 5px 10px;
  }
}

/* Stack vertically on mobile */
@media (max-width: 768px) {
  .submenu.multi-column li {
    width: 100%;
  }
  .left-text h1 {
    font-size: 1.8rem!important;
    padding-top: 100px;
}
.banner-btn{
  margin: 0 auto;
  display: block;
}
nav {
  
    padding: 10px 20px;
 
}


}



    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        display: none;
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid #ddd;
      }

      .nav-links.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .call-btn {
        display: none;
      }
    }

  
    .banner {
    background: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }

  .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
  }

  .left-text {
    flex: 1 1 500px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #222;
  }

  .left-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }

  .banner-btn {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    width: fit-content;
  }

  .banner-btn:hover {
    background: #dc2626;
  }

  .right-graphic {
    flex: 1 1 400px;
/*    background: #dc2626;*/
    border-radius: 12px;
    position: relative;
    height: 400px;
    margin-top: 30px;
    overflow: hidden;
  }

  .bug {
    position: absolute;
    font-size: 2.5rem;
    animation: floatBug 5s ease-in-out infinite;
    opacity: 0.9;
  }

  @keyframes floatBug {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }

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

    .left-text {
      padding-right: 0;
    }

    .right-graphic {
      margin-top: 20px;
      height: 300px;
      width: 100%;
    }
    .breadcrumb-button {
    background-color: #dc2626;
    color: #fff;
    
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-size: 10px!important;
    transition: background-color 0.3s ease;
}
  }

  .features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: 'Noto Sans', sans-serif;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fcfcfc;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  max-width: 300px;
}

.feature-box i {
  color: #dc2626;
  font-size: 20px;
  margin-top: 4px;
}


.pest-types {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
}

.pest-types h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.pest-types p {
  max-width: 700px;
  margin: 40px auto 40px;
  font-size: 16px;
  color: #444;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  justify-items: center;
}

.pest-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.pest-item i {
  font-size: 30px;
  color: #dc2626;
  margin-bottom: 10px;
}

.pest-item span {
  display: block;
  font-weight: 600;
  margin-top: 5px;
  color: #222;
}
.expert-button-wrapper {
  margin-top: 60px;
  text-align: center;
}

.expert-btn {
  background-color: #dc2626;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.expert-btn:hover {
  background-color: #b91c1c;
}

.how-it-works {
  padding: 60px 20px;
  background-color: #fef2f2;
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step .icon {
  font-size: 36px;
  color: #dc2626;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.step p {
  font-size: 15px;
  color: #444;
}

.pest-near-me {
  padding: 80px 20px;
  background: #f7fafc;
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
}

.pest-near-me h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.location-card {
  background-color: #fff;
  padding: 18px 24px;
  border-radius: 10px;
  text-decoration: none;
  color: #1a202c;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.location-card:hover {
  background-color: #dc2626;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.quote-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-form {
  flex: 1 1 450px;
  max-width: 500px;
}

.quote-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.quote-form p {
  margin-bottom: 25px;
  color: #555;
}

.quote-form form input,
.quote-form form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.quote-form form button {
  background-color: #dc2626;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form form button:hover {
  background-color: #b91c1c;
}

.quote-image {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}

.quote-image img {
  max-width: 100%;
  border-radius: 10px;
}
/* Footer Styles */
.footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 0;
  font-family: 'Noto Sans', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-links, .footer-disclaimer {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
}

.footer-links h3, .footer-disclaimer h3 {
  color: #dc2626;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc2626;
}

.footer-disclaimer p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}

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

  .footer-links, .footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
  }
  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fcfcfc;
    padding: 20px 25px;
     border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    min-width: 100%;

}
}

.breadcrumb-section {
  background: #fafafa;
  padding: 60px 20px 60px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; /* offset for fixed header */
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #dc2626;
  font-weight: 700;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumb li a {
  text-decoration: none;
  color: #dc2626;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb li a:hover {
  color: #dc2626;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb .active {
  color: #333;
  font-weight: 600;
}

.pests-library-section {
  padding: 60px 20px 0px;
  background-color: #f9f9f9;
  font-family: 'Noto Sans', sans-serif;
}

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

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 15px;
  text-align: center;
}

.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 0px;
  text-align: center;
  line-height: 1.7;
}

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

.pest-item {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
  transition: transform 0.3s ease;
}

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

.pest-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.pest-name {
  margin-top: 12px;
  font-weight: 600;
  background-color: #dc2626;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  font-size: 14px;
}


.solution-section {
  background-color: #eeeeee;
  padding: 0px 30px;
}

.solution-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.solution-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 60%;
}

.solution-left img {
  width: 260px;
  height: auto;
  border-radius: 8px;
}

.solution-text h2 {
  font-size: 20px;
  margin: 0;
  color: #222;
  font-weight: bold;
}

.solution-text p {
  margin-top: 5px;
  font-size: 16px;
  color: #444;
}

.solution-right {
  flex: 1 1 35%;
  display: flex;
  gap: 10px;
}

.pincode-input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1;
  font-size: 14px;
}

.quote-btn {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 768px) {
  .solution-container {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .solution-left {
    flex-direction: column;
  }

  .solution-right {
    width: 100%;
    justify-content: center;
  }

  .pincode-input {
    width: 60%;
  }
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.state-grid a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: 0.3s;
}

.state-grid a i {
  color: #dc2626;
  margin-right: 10px;
}

.state-grid a:hover {
  background-color: #f0f0f0;
}
 .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .resource-card {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease;
  }

  .resource-card .icon {
    font-size: 36px;
    color: #dc2626;
    margin-bottom: 15px;
  }

  .resource-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
  }

  .resource-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
  }

  .resource-card a {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
  }

  .resource-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }

  .faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.faq-section .container {
  max-width: 800px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  color: #dc2626;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 15px 20px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-question .icon {
  margin-right: 12px;
  font-size: 20px;
  color: #dc2626;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 15px 48px;
  color: #444;
  background: #fff;
}

.faq-question.active .icon {
  transform: rotate(45deg); /* turns + into x (for – symbol look) */
}

.how-it-works2 {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
}

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

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #222;
}

.work-step {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.work-step:hover {
  transform: translateY(-4px);
}

.step-icon {
  font-size: 32px;
  color: #dc2626;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.step-btn {
  display: inline-block;
  margin-top: 10px;
  color: #0a8754;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .work-step {
    flex-direction: column;
  }

  .step-icon {
    margin-bottom: 15px;
  }
}
.step-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.step-btn {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.step-btn:hover {
  background: #dc2626;
}

.pest-impacts {
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.impact-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.impact-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.impact-list i {
  color: #dc2626;
  margin-right: 10px;
  font-size: 18px;
  min-width: 24px;
}
.diy-guides {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.diy-guides h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.diy-guides p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.diy-guides .guide-item {
  margin-bottom: 30px;
  border-left: 4px solid #4CAF50;
  padding-left: 15px;
}

.diy-guides .guide-item h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.diy-guides .guide-item p {
  margin: 8px 0 0;
}

.residential-section {
  background: #fafafa;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.residential-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.residential-text {
  flex: 1 1 55%;
}

.residential-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #dc2626;
}

.residential-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.residential-image {
  flex: 1 1 40%;
  text-align: center;
}

.residential-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.household-pests-section {
  background: #f7f7f7;
  padding: 60px 20px;
}

.household-pests-container {
  max-width: 1060px;
  margin: 0 auto;
/*  background: #fff;*/
  padding: 40px;
/*  border-radius: 8px;*/
/*  box-shadow: 0 0 12px rgba(0,0,0,0.1);*/
}

.household-pests-container h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #dc2626;
}

.household-pests-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.household-pests-container p:last-of-type {
  margin-bottom: 0;
}
.commercial-pest-control-section {
  background: #eaeaea;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.commercial-pest-control-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.left-image {
  flex: 1;
  padding-right: 20px;
}

.left-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.right-text {
  flex: 2;
  padding-left: 20px;
}

.right-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.right-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.right-text p:last-of-type {
  margin-bottom: 0;
}
.how-it-works-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.how-it-works-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-post {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h3 {
  font-size: 20px;
  margin: 16px;
  color: #222;
}

.blog-post p {
  font-size: 15px;
  color: #555;
  margin: 0 16px 20px 16px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    max-width: 90%;
  }
}




.breadcrumb-banner-image {
  background-image: url('../images/pests/ants/ants.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-banner-image2 {
  background-image: url('../images/pests/bedbugs/bedbugs.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image2::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-banner-image3 {
  background-image: url('../images/pests/cockroaches/cockroaches.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image3::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-banner-image4 {
  background-image: url('../images/pests/beetles/beetles.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image4::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-banner-image5 {
  background-image: url('../images/pests/bumble/bumble.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image5::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-banner-image6 {
  background-image: url('../images/pests/carpenter/carpenter.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 65px; 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  height: 185px; 
}

.breadcrumb-banner-image6::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-container2 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb-title2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.breadcrumb2 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #fff; 
}

.breadcrumb2 li {
  display: flex;
  align-items: center;
}

.breadcrumb2 li a {
  text-decoration: none;
  color: #fff; 
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb2 li a:hover {
  color: #fff;
}

.breadcrumb2 li::after {
  content: ">";
  margin: 0 8px;
  color: #fff;
}

.breadcrumb2 li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb2 .active {
  color: #fff;
  font-weight: 600;
}

/* Button styling */
.breadcrumb-button {
  background-color: #dc2626;
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.breadcrumb-button:hover {
  background-color: #b91c1c;
}



.blog-section2 {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Noto Sans', sans-serif;
}

.section-title2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  padding-block: 30px;
  color: #dc2626;
  font-weight: 700;
}

.blog-container2 {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.blog-post2 {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.blog-post2 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-post2 h3 {
  font-size: 18px;
  color: #1c1c1c;
  margin: 15px;
  font-weight: 600;
}

.blog-post2 p {
  font-size: 14px;
  color: #555;
  margin: 0 15px 20px;
  line-height: 1.6;
}

/* Section Styling */
.why-ants-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Noto Sans', sans-serif;
}

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

/* Section Title */
.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #dc2626;
  padding-bottom: 20px;
}

/* Section Description */
.section-description {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Prevention Tips */
.prevention-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-weight: bold;
}

.prevention-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 60px;
}

.prevention-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

/* Related Pests Section */
.related-pests {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Content */
.related-text {
  flex: 1;
  min-width: 300px;
}

.related-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1c1c1c;
  font-weight: bold;
}

.related-description {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Right Image Grid */
.related-images {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.related-images .image-item {
  position: relative;
  border-radius: 50%; /* Circular Background */
  overflow: hidden;
  background-color: #fff; /* Light grey background for the circle */
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related-images .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensures the images are also circular */
  transition: transform 0.3s ease;
}

.related-images .image-item:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.related-images .image-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.prevention-list i{
  color: #dc2626;
}
.ant-service-cta {
  text-align: center;
  margin-top: 40px;
}

.ant-service-cta p {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}

.call-now-btn {
  background-color: #dc2626;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
  display: inline-block;
}

.call-now-btn:hover {
  background-color: #b91c1c;
}

/* Responsive Grid for Blog Posts */
@media (max-width: 1024px) {
  .blog-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid2 {
    grid-template-columns: 1fr;
  }

  .section-title2,
  .section-title {
    font-size: 26px;
  }

  .blog-post2 h3 {
    font-size: 16px;
  }

  .blog-post2 p {
    font-size: 13px;
  }
}

/* Responsive Layout for Related Pests Section */
@media (max-width: 900px) {
  .related-pests {
    flex-direction: column;
    align-items: center;
  }

  .related-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .related-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-images .image-item {
    padding: 8px;
  }

  .related-title {
    font-size: 20px;
    text-align: center;
  }

  .related-description {
    font-size: 14px;
    text-align: center;
  }
  .related-images .image-item {
    position: relative;
     border-radius: unset;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
}

/* CTA Button Responsive */
@media (max-width: 500px) {
  .call-now-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .ant-service-cta p {
    font-size: 14px;
  }
}

.choose-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Noto Sans', sans-serif;
}

.choose-us-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

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

.choose-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.choose-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.choose-card i {
  font-size: 30px;
  color: #dc2626;
  margin-bottom: 10px;
}

.choose-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.choose-card p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .choose-us-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .choose-left,
  .choose-right {
    width: 100%;
  }
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Noto Sans', sans-serif;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
}

.swiper-button-prev,
.swiper-button-next {
  color: #dc2626;
}
