* {
  margin: 0;
  padding: 0;
}

/* website color code */
:root {
  --font-color: rgb(82, 82, 253);
  --light-text-color: #FEFFEF;
  --btn-color: linear-gradient(to right, #5252fd, #5d40a0);
  --btn-h-color: linear-gradient(to right, #5d40a0, rgb(82, 82, 253));
}

/* website scroll bar */
/* For vertical scrollbar */
body {
  overflow-x: auto;
  background-image: url("./images/circle-scatter-haikei\ \(1\).png");
  /* background-position: center; */
  background-repeat: no-repeat;
  /* background-clip: cover; */
  background-size: contain;
  /* background-size: cover; */
  /* Make sure horizontal scrolling is enabled if needed */
}

::-webkit-scrollbar {
  width: 12px;
  /* Adjust the width of the vertical scrollbar */
}

/* For horizontal scrollbar */
::-webkit-scrollbar {
  height: 10% !important;
  /* Adjust the height of the horizontal scrollbar */
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background-color: var(--light-text-color);

}


::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--btn-color);
  /* border-radius: 30px; */
}

.navbar-brand img{
  height: 65px !important;
  margin-left: 10px !important;

}







.background {
  /* height: 1500px; */
  width: 100%;
  display: flex;
  /* border: 2px solid green; */
  z-index: -2px;
  justify-content: space-between;
  /* margin-top: -500px; */
  margin-bottom: 0px;
}

.inner1 img {
  width: 400px;
  /* background: #5252fd; */
  z-index: -1;
  width: 100%;
  height: 100%;
  margin-top: -250px;
}

.inner1 {
  position: absolute;
  top: -150px;
  width: 300px;
  height: 300px;

  /* margin-top: -50px; */
  /* margin-left: -140px; */
  z-index: -1;
  /* border: 2px solid red; */
  margin-top: 1200px;
}


@media (max-width: 768px) {
  .inner1 img{
    display: none !important;
  }
   .inner1 {
    display: none !important;
  }
}























/* Form Styling */
#orderForm {
  /* margin-top: -1430px !important; */
  margin: 20px auto 0px;
  background-color: #ffffffca;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 36, 243, 0.638);
  max-width: 650px;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 100 !important;
  /* margin-bottom: 300px; */

}

#orderForm:hover {
  transform: scale(1.01);
  z-index: 100 !important;
}

#orderForm h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  text-transform: uppercase;
  color: #5252fd;
  /* text-decoration: wavy; */
  font-weight: 700;
  letter-spacing: 5px;
  animation: Peek 2s ease-in-out infinite;
   /* Ensures the transformation works as expected */
}

@keyframes Peek {
  0%, 100% { 
      transform: translateY(0) scale(1); 
  }
  20% {  
      transform: translateY(-20px) scale(1.1); /* Move up and scale up */
  }
  40% { 
      transform: translateY(0) scale(1);  /* Return to original position */
  }
  60% {  
      transform: translateY(-10px) scale(1.05); /* Slight bounce up */
  }
  80% {  
      transform: translateY(0) scale(1); /* Return to original position again */
  }
}
#orderForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #495057;
  outline-color: #5d40a0;

  &:hover {
    color: #5252fd;
  }
}

#orderForm input,
#orderForm select {
  width: 100%;
  padding: 14px;
  /* margin-bottom: 20px; */
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 15px;
  color: #495057;
  background-color: #f8f9fa;
  transition: border 0.3s ease;
}

#orderForm input:focus,
#orderForm select:focus {
  outline: none;
  border-color: #007bff;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

#orderForm button {
  background: var(--btn-color);
  color: white;
  margin-top: 20px;
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#orderForm button:hover {
  background: var(--btn-h-color);
  transform: translateY(-3px);
}

#orderForm .form-group {
  margin-bottom: 20px;
}

.label-group {
  display: flex;
  justify-content: space-between;
  /* Space out the labels */
  margin-bottom: 10px;
  /* Add some margin below the labels */
  gap: 20px;
}

.label-group label {
  flex: 1;
  /* Allow labels to grow equally */
  margin-right: 10px;
  /* Add space between the labels */
}

.label-group label:last-child {
  margin-right: 0;
  /* Remove margin from the last label */
}

#orderForm .error {
  color: red;
  font-size: 14px;
  display: none;
  /* Initially hidden */
}

.success-alert {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 10px;
  margin: 20px auto;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
}

.success-alert .close {
  cursor: pointer;
  margin-left: 15px;
}

@media (max-width: 768px) {
  #orderForm {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 50px ;
    max-width: 400px;
  }

  #orderForm button {
    font-size: 15px;
    padding: 12px;
  }
}





































