/* ---------------- GLOBAL RESET ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}




/* ---------------- NAVBAR ---------------- */
.navbar {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    position: sticky;
    top: 0;
   background:#f6ffe6;
    z-index: 100;
}

/* Logo */
.logo img {
    width: 100px;
    height: 100px;
    margin-left: 50px;

}

/* Menu links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    color:black;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
    color:black;
}


/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 900px) {

  .navbar {
    position: relative;
    flex-direction: row;
  }

  .nav-links {
    position: absolute;
    top: 100%;              /* ✅ key fix */
    left: 0;
    width: 100%;
    background: #f7ffe2;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    z-index: 999;
  }

  #menu-toggle:checked ~ .nav-links {
    height: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: block;
    font-size: 32px;
    cursor: pointer;
    color: #000;
  }
}





/* ---------------- DEMO CONTENT ---------------- */
.content {
    padding: 40px;
    text-align: center;
}






/* SECTION SIZE */
.about-img-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-top: -10px;
}

/* IMAGE */
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLE ON IMAGE */
.about-heading {
    position: absolute;
    top: 50%;
    left: 560px;
    transform: translateY(-50%);
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.4);
}

/* MOBILE RESPONSIVE */
@media (max-width: 500px) {

    .about-img-section {
        height: 320px;
    }

    .about-heading {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        
        font-size: 24px;
        width: 90%;
        text-align: center;
        line-height: 1.3;
    }
}





.image-text-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;

}

/* LEFT SIDE */
.left-slider-box {
    width: 1200px;
    margin-left: 50px;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.slide {
    width: 100%;
    display: none;
    border-radius: 10px;
}

.slide.active {
    display: block;
}

/* ARROWS */
.left-btn, .right-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 96, 63, 0.7);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 22px;
   
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

/* RIGHT SIDE */
.accordion-card {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: -50px;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fafafa;
     
}

.accordion-header {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    background: #f3f3f3;
    color: black;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: #eaeaea;
}

.arrow {
    transition: transform 0.3s;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #fff;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    max-height: 500px; /* allows full opening */
    padding: 0 16px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}
/* ============================= */
/*   RESPONSIVE ACCORDION CSS    */
/* ============================= */

/* MOBILE RESPONSIVE */
@media (max-width: 500px) {

    .image-text-card {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    /* LEFT SIDE */
    .left-slider-box {
        width: 100%;
        margin-left: 0;
    }

    .slide {
        border-radius: 8px;
    }

    /* ARROWS */
    .left-btn,
    .right-btn {
        padding: 8px 12px;
        font-size: 18px;
    }

    .left-btn {
        left: 6px;
    }

    .right-btn {
        right: 6px;
    }

    /* RIGHT SIDE */
    .accordion-card {
        width: 100%;
        padding: 12px;
        margin-top: 0;
        border-radius: 10px;
        box-shadow: none;
    }

    .accordion-item {
        margin-bottom: 10px;
    }

    .accordion-header {
        font-size: 15px;
        padding: 12px;
    }

    .accordion-body {
        padding: 0 12px;
    }

    .accordion-body p {
        font-size: 13px;
        line-height: 1.5;
        padding: 10px 0;
    }
}



.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;
  }
}


/* 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;
}
