/* ==========================
   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;
}






/* 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;
}
