/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* Navbar transparent (desktop view) */
.navbar {
  background: rgb(0, 0, 0) !important;
  padding: 12px 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
  position: fixed;
}

/* Navbar links */
.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff !important;
  margin-right: 18px;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #a020f0; /* purple underline */
  transition: width 0.3s ease;
}

.nav-link:hover {
  font-weight: 700;
  font-size: 1.08rem;
}

.nav-link:hover::after {
  width: 100%;
}


/* Custom button */
.btn-custom {
    background: linear-gradient(135deg, #434343, #000000);
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-custom:hover {
    background: linear-gradient(135deg, #6a11cb, #000000);
    transform: scale(1.05);
    color: white;
  }


.order-banner {
    background: linear-gradient(135deg, #984aec, #000000);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .order-banner h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  body {
    font-family: Arial, sans-serif;
    background: #fdfdfd;
  }
  h2 {
    font-weight: 700;
    color: purple;
    margin-bottom: 30px;
    text-align: center;
  }
  .faq-section {
    padding: 60px 0;
  }
  .faq-category {
    font-size: 1.2rem;
    font-weight: 600;
    color: purple;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .accordion-button {
    font-weight: 500;
    color: #000;
    background: #fff;
    border: 1px solid #ddd;
  }
  .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: purple;
    box-shadow: none;
  }
  .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067"; /* plus icon */
    background-image: none;
  }
  .accordion-button:not(.collapsed)::after {
    content: "\f068"; /* minus icon */
  }
  .accordion-body {
    color: #444;
    background: #fff;
    border: 1px solid #eee;
  }
  .contact-team {
    margin-top: 40px;
    text-align: center;
  }
  .contact-team button {
    background: purple;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
  }

   /* Footer Styles */
   .footer {
    background: linear-gradient(135deg, #2c003e, #000000);
    color: #ffffff;
    padding: 50px 0 20px;
  }
  .footer h5 {
    color: #b366ff;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
  }
  /* Hover underline animation */
  .footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease-in-out;
  }
  .footer a:hover::after {
    width: 100%;
  }
  .footer a:hover {
    color: #ffffff;
  }
  .footer .contact-info p {
    margin: 0;
  }
  .footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
  }