 :root {
            --primary: #0E6F6D;
            --primary-dark: #0A4F4E;
            --secondary: #8BC57A;
            --accent: #F28C28;
            --light-bg: #F6FBFA;
            --dark: #222;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: var(--dark);
            background: var(--white);
        }

        /* TOP BAR */
        .topbar {
            background: var(--primary);
            color: var(--white);
            font-size: 14px;
            padding: 8px 40px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .topbar .icon {
            color: var(--accent);
            /* light green from logo */
            margin-right: 4px;
            font-size: 15px;
        }


        @media (max-width: 991px) {
            .topbar {
                display: none;
            }
        }

        /* =======================
       NAVBAR HOVER & ACTIVE
    ======================== */

        .navbar .nav-link {
            color: var(--primary);
            font-weight: 500;
            padding: 8px 14px;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .navbar .nav-link:hover {
            color: var(--primary-dark);
        }

        .navbar .nav-link:hover::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--primary);
            left: 0;
            bottom: 0;
        }

        /* Active menu */
        .navbar .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

        .navbar .nav-link.active::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            background: var(--accent);
            left: 0;
            bottom: 0;
        }

        /* OFFCANVAS MENU */
         .offcanvas  {
            color: var(--primary);
            background:linear-gradient(135deg, #D6F2E6, #FFFFFF) ;
            font-weight: 500;
            padding: 10px 0;
        }
        .offcanvas .nav-link {
            color: var(--primary);
          
            font-weight: 500;
            padding: 10px 0;
        }

        .offcanvas .nav-link:hover {
            color: var(--primary-dark);
        }

        .offcanvas .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }

        /* HERO (unchanged) */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 80px 40px;
        }

        .copyright {
            text-align: center;
            background: #063c3b;
            color: #cfdede;
            padding: 12px;
        }

        /* FOOTER */
.site-footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;

  /* Rounded logo */
  border-radius: 50%;
  overflow: hidden;

  /* Optional enhancement */
  background: #fff;           /* agar logo transparent ho */
  padding: 6px;               /* circle feel ke liye */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-col ul li:hover {
  color: var(--accent);
}

.icon {
  color: var(--secondary);
  margin-right: 6px;
}

/* SOCIAL ICONS */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #063c3b;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  color: #cfdede;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover base */
.social-links a:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #000;
}

/* Optional brand hover colors */
.social-links a.instagram:hover { background: #E1306C; color: #fff; }
.social-links a.whatsapp:hover  { background: #25D366; color: #fff; }
.social-links a.twitter:hover   { background: #000; color: #fff; }
.social-links a.youtube:hover   { background: #FF0000; color: #fff; }

.contact-icon {
  color: var(--secondary);   /* light green from logo */
  margin-right: 8px;
  font-size: 14px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

/* floation  icon */
/* COMMON FLOATING BUTTON */
.floating-btn {
  position: fixed;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* WhatsApp - LEFT */
.whatsapp-float {
  left: 25px;
  background: #25D366;
}

/* Call - RIGHT */
.call-float {
  right: 25px;
  background: var(--accent); /* theme orange */
}

/* Hover Effect */
.floating-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

.call-float {
  animation: pulse 2.5s infinite;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 576px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* theme colour  */
.btn-theme {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn-theme:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

/* Focus fix */
.btn-theme:focus {
  box-shadow: none;
}


/* faq */
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Question */
.faq-question {
  width: 100%;
  background: var(--light-bg);
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: var(--dark);
}

/* + / - icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  color: var(--accent);
}

/* Answer */
.faq-answer {
  display: none;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.8;
  background: #fff;
  color: #444;
}

.faq-answer.show {
  display: block;
}

/* Hover */
.faq-question:hover {
  background: rgba(242,140,40,0.15); /* light accent */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
}
