/* Reset and Base Layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0%;
  text-align: right; /* Align content to the right */
}

/* Top Container Styling */
.top-container {
  height: 50%;
  width: 100%;
  background: url('images/top_image.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.top-text-container {
  width: 50%;
  height: 100%;
  font-size: 30px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.bottom-container {
  height: 50%;
  width: 100%;
  background: url('images/bot_image.jpg') center/cover no-repeat;
  padding: 4.6% 3% 2% 2.5%;
}

/* Bottom Container Styling */
.bottom-container-form {
  display: flex;
  height: 88%;
  width: 100%;
}
#third_form{
  width: 40%;
}
#second_form,
#first_form{
  width: 28%;
}
.bottom-right-container-top,
.bottom-right-container-bottom {
  height: 35%;
  width: 100%;
  display: flex;
}


#tellUs{
  width: 100%;
}
/* Styling for <p> elements */
p {
  direction: rtl; /* Set text direction to right-to-left */
  text-align: right; /* Align text to the right */
  color: black;
}

.field input {
  width: 100%;
  font-weight: 100; 
  height: 100%;
  border-radius: 50px; /* Apply border-radius 5% to all input fields */
  font-size: 30px; /* Consistent and larger font size */
}

.col-3 .btn {
  font-size: 50px; 
  cursor: pointer;
  color: black;
  transition: background-color 0.3s ease;
}

.bottom-container-right {
  direction: rtl;
}

.bottom-container input[type="text"],
.bottom-container input[type="tel"] {
  text-align: right;
}


.form-check {
  display: flex; 
  align-items: center; 
  height: 10%;
  padding-top: 2%;
  padding-right: 16px;
  font-weight: 400;
  direction: rtl;
  text-align: right;
  margin: 0;
}

.form-check-label {
  font-size: 22px; 
  padding-right: 1.5%;
  display: flex; 
  align-items: center;
  margin: 0; 
}

/* Spinner Container */
#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Initially hidden */
  z-index: 1000; /* Ensure it appears above all content */
}

/* Spinner Styling */
.loader {
  width: 100px;
  height: 100px;
}

.loader:before,
.loader:after {
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}


@keyframes rotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* Dark Red Text Styling */
.dark-red-text {
  color:  rgba(174, 0, 0);
  font-size: 30px; 
  font-weight: 100;
}

/* Honeypot Field Styling */
#name_last {
  position: absolute;
  left: -9999px; 
}


#submitButton {
  background-color: #00c6ff; 
  color: black;
  font-size: 60px; /* Set font size to 60px */
  font-weight: 100; /* Optional: Bold text */
  text-align: center; /* Center the text inside the button */
  background-color: #00c6ff; /* Add a background color */
}

#submitButton:disabled {
  background-color: #00c6ff; /* Disabled state color */
  cursor: not-allowed; /* Disabled cursor */
}

h1 {
  font-size: 60px; 
  color: black;
}
