/* -------------------------------------------------background color to the entire website------------------------------------------------------------- */

/* Apply background color to the entire website */
html,
body {
  /* Dark background color */
  background-color: white;
  color: #FEC536;
  /* Text color for better contrast */
  font-family: 'Poppins', sans-serif;
  /* Default font */
  margin: 0;
  /* Remove default margin */
  padding: 0;
  /* Remove default padding */
  height: 100%;
  /* Ensure the background color covers full height */
  box-sizing: border-box;
  /* Ensure padding and border are included in width and height */
}

/* --------------------------------------------------------- banner (Laptop mobile view)----------------------------------------------------------------------- */

/* Inquiry Banner Section */
.inquiry-banner {
  width: 100%;
  height: 500px;
  /* Adjust height as per your requirement */
  background-image: url('../../../images/newimage/dealerinquery/inquirybg.webp');
  /* Set your background image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.inquiry-banner::before {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); */
  /* Overlay color, adjust opacity as needed */
  /* z-index: 1; */
}

.banner-content {
  /* position: absolute; */
  bottom: 10px;
  left: 20px;
  z-index: 2;
}

.banner-title {
  color: white;
  /* font-size: 33px !important; */
  font-family: 'Poppins', sans-serif;
  font-weight: 700 !important;
  /* margin: 0px 0px 70px 35px !important; */
}

/* Mobile View */
@media (max-width: 768px) {
  .inquiry-banner {
    height: 200px;
    /* Adjust height for mobile view */
  }

  .banner-title {
    /* font-size: 24px; */
    /* Adjust title size for mobile view */
    /* margin: 0px 130px 19px 130px; */
    text-align: center;
  }
}

/* --------------------------------------------------- form --------------------------------------------------------------- */
/* Inquiry Form Section */
.inquiry-form {
  padding: 50px 20%;
}

.form-container {
  text-align: center;
}

.form-title {
  font-size: 40px;
  color: #214F26;
  margin-bottom: 40px;
}

/* Form Content - 2 Columns */
.form-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Column 1 */
.column {
  width: 48%;
}

.column-left {
  text-align: left;
}

.column-title {
  font-size: 24px;
  color: #1B8836;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  font-family: 'Roboto';
}

.column-title .title-icon {
  width: 30px;
  /* Set the image size */
  height: 30px;
  margin-right: 10px;
  /* Space between the image and title */
}

.column-left ul {
  line-height: 1.6;
  color: #666;
  padding-left: 20px;
}

.column-left li {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
}

/* Column 2: Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Roboto';
}

.contact-form label {
  font-size: 16px;
  color: #333;
  text-align: left;
}

.contact-form input,
.contact-form select {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form button.submit-btn {
  padding: 10px 20px;
  /* margin: 0px 160px; */
  font-size: 16px;
  font-weight: 500;
  background-color: #1B8836;
  color: white;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button.submit-btn:hover {
  background-color: #2C5730;
}

/* Mobile View */
@media (max-width: 768px) {
  .form-content {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 100%;
  }

  .form-title {
    font-size: 28px;
  }

  .contact-form button.submit-btn {
    font-size: 14px;
    margin: 0px 115px;

  }

  .inquiry-form {
    padding: 50px 5%;
  }

}

/* ------------------------------------ benefits of unicrop ----------------------------------------------- */

/* Benefits Section */
.benefits {
  padding: 50px 10%;
  text-align: center;
}

.benefits-title {
  font-size: 40px;
  color: #214F26;
  margin-bottom: 40px;
  font-family: 'Roboto';
}

/* Benefits Container - 4 images in a row */
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefit-item {
  width: 14%;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.benefit-title {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  font-family: 'Roboto'; 
}

/* Mobile View */
@media (max-width: 768px) {
  .benefits-container {
    margin: 0px 25px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .benefit-item {
    width: 80%;
    margin-bottom: 30px;
  }

  .benefits-title {
    font-size: 28px;
    margin: 0px 10px 40px 10px;
  }

  .benefit-title {
    font-size: 18px;
    margin: 0px 0px 30px 0px;
  }
}