/* Breadcrumb Section Styling */
.breadcrumb-section {
  margin-left: 14%;
  margin-right: 14%;
  padding: 10px 30px; /* Spacing */
  font-size: 18px; /* Adjust font size */
  font-weight: bold; /* Bold text */
  font-family: 'industry';
}

.breadcrumb-section a {
  color: #007bff; /* Links in white */
  text-decoration: underline; /* Underlined for breadcrumbs */
}

.breadcrumb-section a:hover {
  text-decoration: none; /* Remove underline on hover */
}


/* Info Box Styling */
.info-box {
  max-width: 400px;
  margin: 10px auto;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.info-box h2 {
  font-size: 18px;
  font-family: 'industry';
  color: #007bff;
  margin: 5px;
  border-bottom: none;
}

.info-box p {
  font-size: 16px;
  color: #333;
  font-family: 'industry';
}

.info-box button {
  background-color: #0056b3;
  color: #fff;
  font-size: 12px;
  font-weight: bolder;
  padding: 5px 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 10px;
  border-bottom: none;
  font-family: 'industry';
}

.info-box button:hover {
  background-color: #0056b3;
}

/* Title Section */
.title-section {
  margin-top: 20px;
  background-color: #007bff; /* Blue background */
  color: #fff;
  width: 60%;
  padding: 10px;
  margin: auto;
  text-align:center;
}

.title-section h1 {
  width: 60%;
  font-size: 30px;
  font-weight: 950;
  font-family: 'industry' !important;
  text-transform: uppercase;
  margin: auto;
}

/* Form Section */
.form-section {
  width: 70%;
  margin: auto;
  background-color: #fff;
  border: none;
  margin-top: 50px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section input[type="email"],
.form-section input[type="text"],
.form-section select,
.form-section textarea
 {
  width: 100%;
  font-size: 16px;
  font-family: 'industry';
  margin: auto;
  margin-top: 30px;
  background-color: #fafafa;
}

.form-section textarea {
  height: 120px;
  resize: none;
  margin: auto;
}

.form-section p {
  width: 100%;
  font-size: 10px;
  margin-left: 8px;
  margin-top: 10px;
  font-family: 'industry';
}
 
.file-input {
  width: 100%;
  font-size: 16px;
  font-family: 'industry';
  margin-top: 30px;
  cursor: pointer; /* Add pointer cursor on hover */
}


/* Larger Description Text Box */
.form-section textarea {
  width: 100%;
  margin: auto;
  max-width: 98%;
  height: 200px; /* Increase the height as needed */
  padding: 12px;
  font-size: 16px;
  font-family: 'industry';
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical; /* Allows vertical resizing only */
  margin-top: 30px;
}

/* File Text Box Styling - Center Alignment */
.file-text-box {
  width: 100%; /* Consistent width with other text boxes */
  max-width: 98%; /* Optional: Set max width for larger screens */
  margin: 20px auto; /* Center horizontally with vertical spacing */
  padding: 12px; /* Add inner padding */
  font-size: 16px; /* Consistent font size */
  font-family: 'industry';
  border: 1px solid #ddd; /* Same border as other boxes */
  border-radius: 4px; /* Rounded corners */
  box-sizing: border-box; /* Include padding and borders in width */
  background-color: #fafafa; /* Consistent background */
  text-align: center; /* Center text inside the box */
  display: block; /* Ensure block-level behavior for centering */
}

/* Hidden File Input (No Changes Needed) */
.file-upload {
  display: block;
}


input::placeholder {
  font-weight: bold; 
}

textarea::placeholder {
  font-weight: bold;
}

select option[value="initial"] {
  font-weight: bold; 
}


/* Centered Container Styling */
.centered-container {
  width: 100%;
  max-width: 600px; /* Restrict max width for better layout */
  margin: 0 auto; /* Center horizontally */
  text-align: center; /* Center-align the content */
  padding: 20px; /* Add padding for spacing */
}


/* Captcha Container Styling */
.captcha-container {
  margin: 20px 0;
  display: flex;
  justify-content: center; /* Center the CAPTCHA */
}

/* Captcha Box */
.g-recaptcha {
  width: auto;
  display: block;
}

/* Submit Button */
.submit-btn {
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  font-weight: bolder;
  font-family: 'unset';
  text-transform: uppercase;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: center; /* Center the button */
  margin-left: 45%;
  margin-top: 30px;
}

.submit-btn:hover {
  background-color: #0056b3;
}


/* Full-Width CTA Section */
.cta-section {
  width: 100%;
  background-color: #000;
  padding: 20px;
  text-align: center;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 30px;
}

.cta-heading {
  font-family: 'industry';
  font-weight: bolder;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-button {
  background-color: #FFC107;
  color: #000;
  font-size: 16px;
  padding: 20px;
  border: none;
  font-family: 'unset';
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bolder;
  border-radius: 4px;
  width: 40%;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #FFC107;
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 10px 15px;
    font-size: 16px;
    text-align: left;
    margin-left:0%;
  }

  .info-box {
    width: 80% !important;
    margin: 10px auto;
    padding: 15px;
    font-size: 12px;
  }

  .info-box h2 {
    font-size: 25px;
  }

  .info-box button {
    font-size: 10px;
    padding: 8px 12px;
  }

  .title-section {
    width: 70%;
    margin: 20px auto;
    padding: 8px;
    font-size: 24px;
  }

  /* Title Section */
  .title-section h1 {
    font-size: 24px;
  }

  /* Form Section */
  .form-section {
    width: 100%; /* Adjust for smaller screens */
    margin: auto; /* Ensure it's centered */
  }

  /* File Input and File Text Box */
  .file-input, .file-text-box {
    width: 80%; /* Adjust width for smaller screens */
    margin: auto; /* Ensure proper centering */
  }

  .info-box {
    width: 90%;
    max-width: 400px; /* Adjust width if needed */
    margin: 20px auto;
    padding: 20px;
  }

  .captcha-container {
    width: 90%;
    margin: auto !important;
    display: flex;
    justify-content: center;
  }

  .submit-btn {
    width: 40%;
    margin: 20px auto !important;
    display: block;
    text-align: center !important;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* CTA Button */
  .cta-button {
    width: 100%; /* Adjust width for smaller screens */
    margin: 10px auto; /* Center align buttons */
  }
}


h2.cta-heading {
  border-bottom: none;
}

.email-us {
  margin: 0;
  padding: 0;
  max-width: 100% !important;
  width: 100% !important;
}

.container-fluid {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  overflow: hidden;
}

.container.main-footer {
  overflow: hidden;
}

body {
  overflow-x: hidden;
}
