/* 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;
  }
  .contact-team button {
    background: purple;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
  }
  body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
  }
  
  .contact-section {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
  }
  
  .contact-info-box {
    background: linear-gradient(to bottom right, #f4e6ff, #e8d6ff);
    border-right: 2px solid #a855f7; /* Purple Border */
    padding: 30px;
  }
  
  .contact-info-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #6b21a8; /* Purple */
  }
  
  .contact-info-box p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .info-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  }
  
  .info-box i {
    font-size: 18px;
    color: #6b21a8; /* Purple */
    margin-right: 10px;
  }
  
  .contact-form-box {
    padding: 30px;
  }
  
  .contact-form-box h2 {
    font-weight: 600;
    color: #6b21a8; /* Purple */
  }
  
  .contact-form-box p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333;
  }
  
  label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  textarea.form-control {
    resize: none;
  }
  
  .submit-btn {
    background: #6b21a8; /* Purple */
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    transition: 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #25005c; /* Dark Purple */
    color: white;
    
  }
  /* Order Banner */
.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;
}

   /* 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;
  }