/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    overflow-x:hidden;
    padding-top:110px;
}

/* ==========================
   STICKY NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#f6ffe6;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 40px;

    z-index:99999;

    box-shadow:0 2px 15px rgba(0,0,0,.1);
}

/* LOGO */

.logo img{
    width:90px;
    height:90px;
    object-fit:contain;
}

/* MENU */

.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:600;
}

.nav-links a:hover{
    color:#7CB232;
}

/* ==========================
   PRODUCTS LABEL
========================== */

.products-label{
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#000;
    display:block;
}

.products-label:hover{
    color:#7CB232;
}

/* HIDE CHECKBOX */

#products-toggle{
    display:none;
}

/* ==========================
   DESKTOP DROPDOWN
========================== */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    width:280px;

    background:#fff;

    list-style:none;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    display:none;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    font-size:12px;
    border-bottom:1px solid #eee;
}

.dropdown-menu li:last-child a{
    border-bottom:none;
}

.dropdown-menu li a:hover{
    background:#f6ffe6;
}

/* ==========================
   HAMBURGER
========================== */

#menu-toggle{
    display:none;
}

.hamburger{
    display:none;
    font-size:34px;
    cursor:pointer;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    .navbar{
        padding:10px 20px;
    }

    .logo img{
        width:70px;
        height:70px;
    }

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;

        width:100%;

        background:#f6ffe6;

        flex-direction:column;
        align-items:flex-start;

        max-height:0;
        overflow:hidden;

        transition:.4s;
        gap:0;
    }

    #menu-toggle:checked ~ .nav-links{
        max-height:1200px;
        padding:15px 0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a,
    .products-label{
        display:block;
        width:100%;
        padding:15px 20px;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu{
        position:static;
        width:100%;
        display:none;
        box-shadow:none;
        border-radius:0;
        background:#eef8db;
    }

    #products-toggle:checked ~ .dropdown-menu{
        display:block;
    }

    .dropdown:hover .dropdown-menu{
        display:none;
    }

    .dropdown-menu li a{
        padding-left:40px;
    }
}





/* ---------------- DEMO CONTENT ---------------- */
.content {
    padding: 40px;
    text-align: center;
}





.footer-section {
  background: #F7FFE2;
}

/* HEADINGS */
.footer-title {
  font-size: 26px;
  margin-bottom: 18px;
}

/* TEXT */
p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
}

/* ICON SPACING */
.phone-icon,
.email-icon,
.location-icon {
  margin-right: 12px;
  font-size: 18px;
}

/* QUICK LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #3faf38;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 22px;
  margin-top: 5px;
}

.social-icons i {
  color: #000;
}

.social-icons i:hover {
  color: #3faf38;
}

/* DIVIDER LINE */
.footer-line {
  border-top: 2px solid #000;
  margin: 10px 0 20px 0;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 15px;
  text-decoration: none;
}

.designer {
  color: #3faf38;
  font-weight: bold;
   text-decoration: none;
}

/* ================= MOBILE FOOTER RESPONSIVENESS ================= */
@media (max-width: 768px) {

  /* Footer container spacing */
  .footer-section {
    padding: 40px 20px 20px;
  }

  /* Stack columns */
  .footer-section .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Titles */
  .footer-title {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: left;
  }

  /* Text */
  .footer-section p {
    font-size: 15px;
    line-height: 24px;
  }

  /* Quick links */
  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  /* Social icons alignment */
  .social-icons {
    justify-content: flex-start;
    gap: 18px;
  }

  .social-icons i {
    font-size: 22px;
  }

  /* Divider line */
  .footer-line {
    margin: 25px 0 15px;
  }

  /* Copyright */
  .footer-copy {
    font-size: 14px;
    line-height: 22px;
    padding: 0 10px;
  }
}









.fogging-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

/* CENTER HEADING */
.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* MAIN CARD */
.fogging-card {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* LEFT CONTENT */
.fogging-content {
  width: 50%;
  background: #F4FCDC; /* light green */
  padding: 60px;
}

.fogging-content p {
  font-size: 15px;
  line-height: 1.8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.5px;

  color: #111;
  text-align: justify;
}

/* RIGHT IMAGE */
.fogging-image {
  width: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.fogging-image img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fogging-card {
    flex-direction: column;
  }

  .fogging-content,
  .fogging-image {
    width: 100%;
  }

  .section-heading {
    font-size: 32px;
  }
}


/* Button wrapper */
.btn-center {
  text-align: center;
  margin-top: 20px;
}

.knw-btn {
  display: inline-block;
  background: #8CC63F;
  color: white;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #000;
  transition: 0.3s;
}

.knw-btn:hover {
  background: #7CB232;
}












/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #1ebc57;
}

/* FLOATING PHONE */
.floating-phone {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #34c759;   /* phone green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  text-decoration: none;
}

.floating-phone:hover {
  background: #2db14f;
}
