body {
  background: #0f172a;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #e2e8f0;
  position: relative;
}


header {
  background-color: #0f172a;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-left: -40px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  align-content: center;
  justify-items: center;
}
h1{
    font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 60px;
  font-weight: bold;
  text-shadow: 0 0 10px #38bdf8;
}

.buttons{
    padding: 12px 28px;
    width: 100px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
   background-color: transparent;
   border: 2px solid #38bdf8 ;
  color: #0f172a;
  font-weight: 600;
  color: white;
}
.buttons a{
    text-decoration: none;
    color: aqua;
}

.buttons:hover {
    background-color: #0ea5e9;
    color: #0f172a;
}
.buttons:hover a{
     
    color: #0f172a;
}



.logo {
  font-size: 26px;
  font-weight: bold;
  color: #38bdf8;
  transition: 0.3s;
  letter-spacing: 1px;
  justify-items: center;
}

.logo span {
  color: #fff;
}

.hero {
  position: relative;
  background-image: url("/assets/img/jt.jpeg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}
.hero-content h1{
    font-size: 2.5rem;
  color: #38bdf8;
  margin-top: 60px;
  font-weight: bold;
  text-shadow: 0 0 10px #38bdf8;
  margin: 0;
}
.hero p {
  font-size: 1.2rem;
  color: #e2e8f0;
}


.order-form-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(68, 67, 67, 0.08);
  text-align: center;
}

.form-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #a5abe6;
  font-weight: bold;
}

.form-subtitle {
  color: #c0a5ec;
  margin-bottom: 30px;
}

.order-form .input-group {
  position: relative;
  margin-bottom: 20px;
}

.order-form .input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0077ff;
}



.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s ease;
}


.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}


.Select{
    width: 108%;
    margin-bottom: 20px;
}
.Select option {
    gap: 10px;
    font-size: 18px;
    border-radius: 10px;
}

.order-btn {
  background-color: #0077ff;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-left: 8px;
}

.order-btn:hover {
  background-color: #005ec2;
}

/* Mobile Responsive */
@media (max-width: 760px) {
 .hero{
    margin-top: 60px;
    width: 440px ;
 }



  .form-title {
    font-size: 1.5rem;
    margin-left: 10px;
   }
  .order-form input,

.order-form textarea{
    width: 90%;
}

.Select{
    width: 108%;
    margin-bottom: 20px;
}
.Select  {
    width: 105%;
    gap: 10px;
    font-size: 18px;
    border-radius: 10px;
}
  
  .order-btn {
    width: 100%;
    justify-content: center;
  }
}
.whatsapp-chat {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 5px;
  height: 45px;
  width: 45px;
  text-align: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 35px;
}