/* -------------------------------------------------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 */
}

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

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

.form-title {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
}

.form-subtitle {
  display: flex;
  width: 45%;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0px auto 40px;
}

.devider-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px 10px;
  position: relative;
  flex: none !important;
}

.column-1,
.column-3 {
  width: 18%;
}

.column-2 {
  width: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none !important;
}

.column-2 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Horizontal divider styles inside columns */
.divider {
  width: 100%;
  height: 1px;
  background-color: black;
  /* Divider line */
}

/* Form Content - 1 Column (after deleting Column 1) */
.form-content {
  display: flex;
  justify-content: center;
  /* Center the content */
  gap: 20px;
}

/* Column 2: Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 550px;
  /* Adjust the width of the form */
  margin: 0 auto;
  /* Center the form */
}

.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;
}

/* Container for the country code and mobile number inputs */
.mobile-input-container {
  display: flex;
  align-items: center;
}

/* Styling for the country code select dropdown */
#country-code {
  width: 80px;
  /* Adjust the width of the dropdown as needed */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  /* White background for the dropdown */
  color: #333;
  /* Text color */
}

/* Focus effect when the country code select is clicked */
#country-code:focus {
  border-color: #007bff;
  /* Change border color on focus */
  outline: none;
  /* Remove the default outline */
}

/* Adjust Submit Button Width */
.contact-form button.submit-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: #1B8836;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  /* Adjust width of submit button */
  margin: 0 auto;
  /* Center the button */
}

.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%;
  }

  .column-2 {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .column-1,
  .column-3 {
    width: 15%;
  }

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

  .form-subtitle {
    width: 95%;
  }

  .contact-form button.submit-btn {
    width: 100%;
  }

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

  .contact-form {
    width: 90%;
    /* Adjust form width for mobile */
  }
}

/* -------------------------------------------------------- mobile menu bar ------------------------------------------------------------ */

/* Mobile View: Bottom Mobile Navigation Bar */
.navigation-bar {
  display: none;
}

@media (max-width: 768px) {

  /* Navigation Bar Section */
  .navigation-bar {
    display: block;
    /* Show the navigation bar only on mobile */
    width: 90%;
    margin: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #1B8836;
    border-radius: 15px;
    box-shadow: 0px 4px 9px 0px rgb(0 0 0 / 48%);
    z-index: 25;
    /* Ensure the nav is on top */
  }

  /* Container for columns */
  .nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 10px;
  }

  /* Individual columns in the navigation bar */
  .nav-column {
    text-align: center;
    padding: 10px;
    width: 25%;
    /* 3 columns */
  }

  /* Anchor tags styling */
  .nav-column a {
    text-decoration: none;
    /* Remove underline from the link */
    color: white;
    /* Ensure the text color remains white */
  }

  /* Image styling in columns */
  .nav-column img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
  }

  /* Text styling inside columns */
  .nav-column p {
    font-size: 13px;
    color: white;
    margin: 0px;
  }

  /* Margin below columns */
  .nav-column+.nav-column {
    margin-left: 10px;
  }
}

/* ------------------------------------------------------- Whatsapp Chat ------------------------------------------------------------------------ */

.whatsapp-chat {
  position: fixed;
  /* Keep the button fixed at a corner of the screen */
  bottom: 20px;
  right: 20px;
  background-color: #ffffff00;
  /* WhatsApp green color */
  border-radius: 50px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  z-index: 20;
  /* Keep it above other elements */
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon {
  width: 70px;
  height: 70px;
  margin-right: 0px;
}


/* mobile view */
@media (max-width: 768px) {
  .whatsapp-icon {
    margin-bottom: 105px;
  }
}


.alert {
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-weight: 500;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}