@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");



/* Header Start */
      body {
        margin: 0;
        background: #000;
        font-family: Arial, sans-serif;
        color: #fff;
      }

      /* ---------- HEADER ---------- */
      header {
        width: 100%;
        display: flex;
        justify-content: center;
        background: #000;
        position: fixed;
        top: 0;
        padding-bottom: 12px;
        padding-top: 15px;
        left: 0;
        z-index: 100;
        transition: top 0.4s ease-in-out;
        border-radius: 0;
      }

      nav {
        padding: 10px 25px;
        display: flex;
        align-items: center;
        gap: 40px;
        position: relative;
      }

      nav a {
        text-decoration: none;
        color: white;
        font-weight: 400;
        transition: all 0.3s ease;
      }

      nav a.highlight {
        color: white;
      }
      nav a:hover,
      nav a.highlight:hover {
        color: #affa01;
      }

      .menu-wrapper > a::after {
        content: "▾";
        display: inline-block;
        margin-left: 5px;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .menu-wrapper > a:hover::after {
        transform: translateY(3px) rotate(20deg);
        color: #affa01;
      }

      /* ---------- DESKTOP MEGA MENU ---------- */
      .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-15px) scale(0.98);
        width: 110vw;
        background: #000;
        border-top: 1px solid #fff;
        display: flex;
        justify-content: center;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        filter: blur(4px);
        transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease,
          filter 0.4s ease;
        border-radius: 0;
      }

      .mega-menu.show {
        max-height: 800px;
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
      }

      .mega-inner {
        width: 100%;
        max-width: 1200px;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        margin: 0 auto;
      }

      .mega-inner > div {
        flex: 1;
        padding: 10px;
        border-radius: 0;
      }

      .mega-inner h2 {
        color: #affa01;
        margin-bottom: 15px;
      }

      .mega-inner a {
        color: #fff;
        text-decoration: none;
        display: block;
        margin: 6px 0;
        transition: all 0.3s ease;
      }

      /* ---------- SOCIAL ROW ---------- */
      .social-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        background: #fff;
        padding: 15px 0;
        border-top: 1px solid #222;
        margin-top: 20px;
        border-radius: 0;
      }

      .social-row a {
        color: #000;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.2rem;
        transition: all 0.3s ease;
      }

      .social-row .fa-whatsapp {
        color: #25d366;
      }
      .social-row .fa-instagram {
        color: #e4405f;
      }
      .social-row .fa-linkedin {
        color: #0077b5;
      }
      .social-row .fa-facebook {
        color: #1877f2;
      }

      /* ---------- BUTTONS ---------- */
      .btnn,
      .btn {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        padding: 10px 22px;
        border: 2px solid #fff;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 0;
      }

      .btn:hover,
      .btnn:hover,
      .mega-inner a:hover,
      .mobile-nav a:hover,
      .mobile-nav a.btn:hover,
      .social-row a:hover {
        background: #affa01;
        color: black !important;
        border-color: #affa01 !important;
        padding: 8px 14px;
        border-radius: 0;
      }
      /* ---------- MOBILE MENU ---------- */
      .hamburger {
        display: none;
        font-size: 35px;
        cursor: pointer;
        color: #fff;
        padding: 10px;
        z-index: 1001;
      }

      .hamburger .fa-xmark {
        display: none;
      }
      .hamburger.active .fa-bars {
        display: none;
      }
      .hamburger.active .fa-xmark {
        display: inline-block;
      }

      .mobile-nav {
        display: flex;
        flex-direction: column;
        background: #111;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        padding: 20px;
        z-index: 999;
        transition: right 0.4s ease;
      }

      .mobile-nav.show {
        right: 0;
      }

      .mobile-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 2px solid #222;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .mobile-nav a.btn {
        display: inline-block;
        color: #fff;
        padding: 8px 16px;
        border: 2px solid white;
        margin-top: 10px;
        width: fit-content;
      }

      /* ---------- MOBILE SUBMENU ---------- */
      .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        filter: blur(3px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease,
          filter 0.3s ease;
        background: #222;
        margin-bottom: 8px;
        padding: 0 10px;
      }

      /* ✅ Scrollbar styling added */
      .mobile-submenu.show {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
        overflow-y: auto; /* Enable scrollbar */
      }

      /* ✅ Custom scrollbar design */
      .mobile-submenu::-webkit-scrollbar {
        width: 6px;
      }
      .mobile-submenu::-webkit-scrollbar-track {
        background: #111;
      }
      .mobile-submenu::-webkit-scrollbar-thumb {
        background-color: #affa01;
        border-radius: 0;
      }

      @media (max-width: 992px) {
        nav {
          display: none;
        }
        .hamburger {
          display: block;
          position: absolute;
          top: 10px;
          right: 50px;
        }
        header {
          justify-content: space-between;
          padding: 10px 20px;
        }
      }
   /* Header end */
/* Footer Base */
#footer {
  background: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  position: relative;
  border-top: 5px solid #affa01;
}

/* Top Section */
.footer-top {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.footer-about {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

/* Social Icons */
.footer-social {
  flex: 1 1 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-icons {
  border: 2px solid #fff;
  padding: 15px 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 8px;
}

.footer-icons a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-icons a:hover {
  color: #ceff32 !important;
}

/* Middle Section */
.footer-middle {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-top: 40px;
}

.footer-column {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-column h3 {
  color: #affa01;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-column p {
  line-height: 1.6;
  color: #ccc;
  margin: 0 0 15px 0;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #affa01;
  transform: translateX(5px);
  text-decoration: underline;
}

/* Contact Box */
.footer-contact {
  background-color: #111;
  border: 1px solid #222;
  padding: 25px;
  flex: 1.2;
  min-width: 260px;
}

.footer-contact h4 {
  color: #affa01;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-contact a {
  color: #affa01;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin: 5px 0;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.fa-square-check{
 font-size: 20px;
 color: hsl(var(--secondary));
}
.icon-div{
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top,
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-contact {
    width: 100%;
  }
}
