 /* Global Font Styles */
body {
  font-family: "Poppins", system-ui;

}

h1, h2, h3, h4, h5, h6, .call-btn {
  font-family: "Poppins", system-ui;


}
/* Header */
.site-header {
  padding: 15px 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  width: 60px;
}


.exterminator-banner {
  background: #eaf5ff;
  padding: 110px 20px;
  text-align: center;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  height: 75vh;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.banner-content p {
  color: #444;
  margin: 5px 0;
  font-size: 18px;
}

.call-line a {
  color: #083c63;
  font-weight: bold;
  text-decoration: underline;
  font-size: 20px;
}

.cta-button {
  display: inline-block;
  background: #ffcc43;
  color: #111;
  font-weight: 600;
  padding: 14px 26px;
  font-size: 18px;
  border-radius: 12px;
  margin: 25px 0;
  text-decoration: none;
  box-shadow: 0 5px 0 #dba600;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #ffd861;
  box-shadow: 0 3px 0 #c79c00;
}

.cta-button i {
  margin-left: 10px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  margin-top: 20px;
}

.feature-list div {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  gap: 10px;
}

.feature-list i {
  color: #f4b400;
  font-size: 18px;
}

.wave-background {
  position: absolute;
  bottom: -20px;
  right: -60px;
  height: 300px;
  width: 600px;
  background: transparent;
  border: 10px solid #4aa8f1;
  border-color: #4aa8f1 transparent transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(20deg);
}


.brand-title {
  font-size: 26px;
  font-weight: bold;
  color: #111;
}
.call-now {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f2f9f3;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.1);
  transition: background 0.3s ease;
}

.call-now:hover {
  background-color: #e1f4e7;
}

.call-number {
  font-size: 20px;
  font-weight: 600;
  color: #007e33; /* Unique green shade */
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
}

.green-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #28a745;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* Hero Banner */
.hero-banner {
  background: url('../images/logo/banner2.png') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 60px;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.location {
  font-size: 22px;
  color: #444;
  margin-bottom: 20px;
}

.phone-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.phone-icon {
  font-size: 30px;
  color: #e30613;
  margin-bottom: 10px;
}

.phone-number {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 14px 28px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.phone-number:hover {
  background: #c90011;
}

.call-text {
  font-size: 18px;
  margin-top: 15px;
}

.trust-score {
  margin-top: 25px;
}

.stars {
  color: #f5c304;
  font-size: 22px;
  margin-bottom: 5px;
}

.trust-score p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }

  .brand-title {
    font-size: 22px;
    color: #111;
  }

  .hero-banner {
    background: #10141a;
    background-image: none;
  }

  .hero-overlay {
    background: transparent;
    padding: 30px 20px;
  }

  .hero-content h1,
  .location,
  .call-text,
  .trust-score p {
    color: #fff;
  }

  .phone-number {
    font-size: 18px;
    padding: 12px 20px;
  }
  .exterminator-banner {

    height: auto;
}
}

.service-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 200px;
  background: #f6f6f6;
  flex-wrap: wrap;
  text-align: center;
}

.highlight-item {
  flex: 1 1 200px;
}

.highlight-item i {
  font-size: 30px;
  color: #555;
  margin-bottom: 10px;
}

.highlight-item h3 {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 70%;
  margin: 0 auto; /* Center the section */
  align-items: flex-start;
}




/* Chrome, Safari, Opera scrollbar hide */
.info-content::-webkit-scrollbar {
  display: none;
}




.call-card {
  position: sticky;
  top: 40px;
  width: 350px;
  background: #f3f4f6;
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
/*  box-shadow: 0 8px 20px rgba(0,0,0,0.3);*/
   flex-shrink: 0;
  align-self: flex-start;
}

.card-icon i {
  font-size: 48px;
  color: #525252;
  margin-bottom: 15px;
}

.status-text {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  margin-bottom: 25px;
}

.card-message {
  font-size: 16px;
  margin-bottom: 25px;
  color: #000;
}

.call-button {
  background: linear-gradient(135deg, #e30613, #ff4e50);
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.call-button:hover {
  background: linear-gradient(135deg, #ff4e50, #e30613);
}

.location-info {
  font-size: 14px;
  color: #656565;
  margin-top: 10px;
}

.location-info i {
  margin-right: 6px;
}


.info-content {
  flex: 1;
/*  max-height: calc(100vh - 80px);*/
  overflow-y: auto;
/*  padding-right: 10px;*/
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.info-block {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.info-block h2 {
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
  border-bottom: 2px solid #e30613;
  display: inline-block;
  padding-bottom: 5px;
}

.info-block p,
.info-block ul {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block ul li {
/*  margin-bottom: 10px;*/
display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;

}

.info-block ul li i {
 color: #e30613;
  margin-right: 10px;
    flex-shrink: 0;
  font-size: 18px;
  margin-top: 7px; /* Optional: to align visually with text */
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .call-card {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .info-content {
    max-height: unset;
  }
  .split-section {

  max-width: 100%;

}


}


.benefits-section {
    max-width: 800px;
    margin: 55px auto;
    padding: 20px;
    text-align: center;
  }
  .benefits-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .benefits-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .benefit-item i {
    font-size: 36px;
    color: #ff222d;
  }
  .benefit-item p {
    margin-top: 10px;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }

   .pest-cta-section {
    text-align: center;
    padding: 60px 20px;

    margin: 0 auto;
  }

  .pest-cta-section .location {
    color: #e50914;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pest-cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #111;
  }

  .pest-cta-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .pest-cta-section .cta-button {
    background-color: #ffcc43;
    color: #000;
    padding: 20px 60px;
   
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .pest-cta-section .cta-button:hover {
    background-color: #69b7f4;
    color: #fff;
  }

  @media (max-width: 600px) {
    .pest-cta-section h2 {
      font-size: 24px;
    }
    .pest-cta-section p {
      font-size: 16px;
    }
    .pest-cta-section .cta-button {
      font-size: 16px;
      padding: 12px 65px;
    }
  }

  .site-footer {
  background: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #111;
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  gap: 30px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 40px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-group a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: #e30613;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom p {
  margin-bottom: 15px;
}

.footer-note strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .link-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-branding {
    justify-content: center;
  }
  .wave-background {
    position: absolute;
    bottom: -209px;
    right: -60px;
    height: 300px;
    width: 600px;
    background: transparent;
    border: 10px solid #4aa8f1;
    border-color: #4aa8f1 transparent transparent transparent;
    border-radius: 50% 50% 0 0;
    transform: rotate(20deg);
}
.call-button {
    display: inline-block;
    background-color: #ffcc43;
    color: #111;
    font-size: 20px;
    font-weight: bold;
     padding: 16px 20px!important; 
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}


}






.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.faq-section .container {
  max-width: 900px;
  margin: auto;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}
.faq-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .faq-item h3 {
    font-size: 1rem;
  }
}

.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.faq-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 25px;
}
.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}
.faq-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .faq-section .container {
    max-width: 800px;
    margin: auto;
  }
}
.cyber-services {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.cyber-services h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.service-item .icon {
  font-size: 24px;
  color: #f4b400;
  margin-top: 6px;
}

.service-item .info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.service-item .info p {
  font-size: 16px;
  color: #555;
}

.call-button {
  display: inline-block;
  background: #ffcc43;
  color: #111;
  font-weight: bold;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 5px 0 #dba600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.2s ease;
}

.call-button:hover {
  background: #ffd861;
  box-shadow: 0 3px 0 #c79c00;
}


.cyber-threats-section {
  background-color: #f8fbff;
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 1200px;
  margin: 80px auto;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.cyber-threats-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.cyber-threats-section .subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0px;
}

.threats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.threats-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.threats-grid li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.threats-grid .icon {
  display: inline-block;
  background-color: #ffcc43;
  color: #111;
  font-size: 14px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  margin-right: 12px;
  font-weight: bold;
}

.cyber-threats-section .extra-info {
  font-size: 17px;
  color: #333;
  margin: 40px auto 30px;
  max-width: 700px;
  line-height: 1.6;
}

.call-button {
  display: inline-block;
  background-color: #ffcc43;
  color: #111;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.call-button:hover {
  background-color: #e6b800;
}


.how-it-works-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.how-it-works-section .how-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 300px;
  flex: 1;
  min-width: 260px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-8px);
}

.step-number {
  background-color: #ffcc43;
  color: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.step-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.custom-footer {
  background-color: #19376d;
  padding: 40px 20px;
  color: #fff;
  border-radius: 30px;
  max-width: 1350px;
  margin: 40px auto 40px auto;
  font-family: 'Segoe UI', sans-serif;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 16px;
/*  max-width: 900px;*/
  margin: 0 auto;
  line-height: 1.6;
/*  text-align: center;*/
}
