/* safe global */
:root {
  --primary: #eb822c;
  --dark: #2c2c2c;
  --light: #f8f8f8;
  --border: #ddd;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
a{color:inherit;text-decoration:none}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--nav-height, 70px);
  color: var(--dark);
}

html, body {
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  z-index: 9999;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent */
  backdrop-filter: blur(8px);           /* blur background */
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.9); /* more opaque on scroll */
  backdrop-filter: blur(8px);          /* stronger blur */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

  /* Success style */
  .success {
    background: #4caf50;
    color: white;
  }

  /* Error style */
  .error {
    background: #f44336;
    color: white;
  }

.logo img { height: 45px; display: block; }

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #737373;
  font-weight: 500;
  display: inline-block;
  padding: 0.35rem 0.25rem;
}
.nav-menu li a:hover { color: #eb822c; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Panel - hidden by default */
.mobile-panel {
  display: none;            /* hide it fully */
  background: #fff;
  overflow: hidden;
  width: 100%;
  transition: max-height 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
  position: absolute;
  top: 100%;
  left: 0;
}

.nav-open .mobile-panel {
  display: block;           /* only show when nav-open */
  max-height: 400px;        /* animate height when visible */
}

.mobile-panel ul {
  flex-direction: column;
  gap: 0;
}

.mobile-panel li {
  border-bottom: 1px solid #eee;
  padding: 0.6rem;
  width: 100%;
}

.mobile-panel a {
  display: block;
  padding: 1rem;
  color: #737373;
  width: 100%;
}


@media (min-width: 1201px) {
  nav { padding: 0.8rem 3rem; }
  .nav-menu { gap: 2rem; }
}

@media (max-width: 992px) {
  .nav-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .desktop-menu { display: none; }
}

@media (max-width: 576px) {
  nav { padding: 0.6rem 0.8rem; }
  .logo img { height: 34px; }
  .nav-toggle { font-size: 1.2rem; }
}

:root { --nav-height: 68px; }
body { padding-top: var(--nav-height); }
@media (max-width: 576px) { :root { --nav-height: 62px; } }


/*CSS for the HERO header of the page*/
    .pageHeroSection {
      background: linear-gradient(135deg, #f26f12, #ffb366);
      color: #fff;
      padding: 4rem 1.5rem 5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Animated floating shapes */
    .pageHeroSection::before,
    .pageHeroSection::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      animation: float 3s infinite ease-in-out;
    }

    .pageHeroSection::before {
      top: -60px;
      left: -60px;
      width: 180px;
      height: 180px;
    }

    .pageHeroSection::after {
      bottom: -80px;
      right: -80px;
      width: 220px;
      height: 220px;
    }

    /* Title */
    .pageHeroSection h1  {
      margin: 0 0 2rem;
      font-size: 2.4rem;
      font-weight: 700;       /* not extra-bold */
      letter-spacing: 0;      /* keep spacing normal */
      line-height: 1.3;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* softer shadow */
    }

    /* Subtitle */
    .pageHeroSection-sub {
      font-size: 1.2rem;
      font-weight: 400;
      color: #fff;
      opacity: 0.95;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Floating animation */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(20px); }
    }

    /*CSS for the headerBreadCrumbs*/
    .headerBreadCrumb {
      font-size: 14px;
      padding: 2px;
      color: #fff;
      font-weight: bold;
      margin: 0px -20px 10px;
    }

    .headerBreadCrumb ol {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 2px;
    }

    .headerBreadCrumb li a {
      text-decoration: none;
    }

    .headerBreadCrumb li::after {
      content: "›";
      margin: 0 6px;
      color: #fff;
    }

    .headerBreadCrumb li:last-child::after {
      content: "";
    }


/* Footer */
footer {
  background: #1E1E1E;
  color: #ccc;
  padding: 3rem 1rem 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 0.5rem 0;
}
.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col a:hover {
  color: #eb822c;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ccc;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #eb822c;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #eb822c;
}

/* Scroll to Top */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #eb822c;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#scrollTopBtn:hover {
  background-color: #d66f1e;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1eb954;
}

/* Floating Enquire Now */
.enquire-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #eb822c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.enquire-btn:hover {
  background: #d66f1e;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
  overflow-y: auto;
}

/* Modal Box */
.modal-content {
  background: #fff;
  margin-top: 2.7rem;
  padding: 0.3rem 2rem 1.5rem 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;  /* smaller width */
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  position: relative;
  animation: slideIn 0.4s ease;
}

/* Title */
.modal-content h2 {
  margin-bottom: 1rem;
  color: #eb822c;
  text-align: center;
  font-size: 1.5rem;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #737373;
}
.close-btn:hover { color: #eb822c; }

/* Form */
form label {
  display: block;
  margin-top: 0.4rem;
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 600;
}
form input, form select {
  width: 100%;
  padding: 7px;
  margin-top: 0.3rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
form button {
  margin-top: 1.2rem;
  width: 100%;
  padding: 12px;
  background: #eb822c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
form button:hover { background: #d66f1e; }

/* Animations */
@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 1rem;
    max-width: 350px;
  }
  .modal-content h2 {
    font-size: 1.2rem;
  }
}

/* TOAST ALERT */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--dark);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-20px);
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* FAQ Section */
.faq-section {
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1200px;
}

.faq-section h2 {
  margin: 60px 5px 30px 5px !important;
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 800;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  transition:
     transform 0.2s ease,
     box-shadow 0.2s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  background: #fafafa;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
     max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
     opacity 0.3s ease,
     padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 12px 20px 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
  color: var(--accent);
}