/* Removes horizontal scroll */
body, html {
  overflow-x: clip;
}

/* Basic Navbar Styles */
.navbar {
  background-color: #FAF9F6; /* background color of navbar */
  padding: 0.5rem 1rem; /* Less vertical padding */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; /* Prevent brand/toggler from wrapping */
}

.navbar-brand {
  color: #7e7971;
  font-size: 1rem; /* Font size of Brand Name */
}

.navbar-toggler {
  border: 2px solid #7e7971; /* Hamburger icon border color & thickness */
  padding: 0.25rem 0.5rem; /* Adjust padding for icon spacing */
}

.navbar-toggler-icon {
  background-image: none; /* Remove default Bootstrap icon */
  font-size: 1rem; /* Controls size of the hamburger icon square */
  color: #7e7971; /* White color */
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

  /* Highlight dropdown item on hover with custom color */
  .custom-dropdown .dropdown-item:hover {
    background-color: #cbc9c6; /* Change to your desired highlight color */
    color: #000; /* Optional: change text color on hover */
  }

  /* Add border (line) between dropdown items */
  .custom-dropdown .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #0501f1; /* Light gray separator */
  }

/* Ensure the dropdown shows fully on small screens */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 2rem; /* Adjust as needed to position dropdown below the navbar */
    width: 50%; /* Adjusts width of the dropdown box */
    background-color: #fff;
  }
}

/* Custom Icon for the Toggler (hamburger icon) */
.navbar-toggler-icon::before {
  content: '\2630'; /* Unicode for hamburger icon */
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ccc5b9; /* White color for hamburger icon lines */
}

/* Fullscreen Menu Styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ccc5b9; /* background color when navbar opened */
    color: #fff;
    z-index: 1050; /* Ensures navbar overlay appears above other content */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    width: 100%; /* Full width to center nav-links */
    text-align: center; /* Center the nav-links */
    margin-top: 15%; /* Top margin in mobile view for the nav menus*/
  }

/* Navbar Links for Small Screen */
  .navbar-nav .nav-link {
    color: #fff;
    font-size: 2.0rem;
    margin: 1rem 0;
  }

  /* Close Button Styling */
  #btn_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.0rem; /* Size of Close Button (cross)*/
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }
}

/* Navbar Links for Big Screen */
.navbar-nav .nav-link {
  color: #7e7971; /* front color of nav links on big screen */
  font-size: 1.3rem; /* Big Screen nav menu font size*/
}

.navbar-nav .nav-link:hover {
  color: #623e05; /* Link hover for all screens*/
}

/* Increase size of the Checkbox */
#inp_userChecked {
  -webkit-transform: scale(1.5);
          transform: scale(1.5); /* Adjust the scale value as needed */
  width: 0.9rem; /* Adjust width to fit the table cell */
  height: 0.8rem; /* Adjust height to fit the table cell */
  padding-left: 0.2rem; /* Adjust margin to position it well */
  background-color: #EAEBEC; /* Darker background for unchecked state */
  border-color: #81888F; /* Ensure border matches */
}


/* Customize the color of the checkbox when checked */
#inp_userChecked:checked  {
  background-color: #007bff; /* Change to your preferred color */
  border-color: #007bff; /* Ensure border matches */
}
.style1 {
  background-size: cover;}

.style2 {
  background-size: cover;
  background-position: 50%;
  opacity: 1;
  background-image: url("../assets/images/banner1.jpg");}
.btn-info {
  float: left;
}
.style3 {
  float: left;
}


/* Comments Box from Contact Us page*/
.textarea-responsive {
    width: 100%;  /* Adjusts to container width */
    height: 150px;  /* Fixed height */
    max-width: 600px; /* Prevents it from being too large */
    
}

/* Banner container */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Banner image to cover the entire width */
.banner-img {
    width: 100vw; /* Set width to 100% of the viewport width */
    height: 350px; /* Fixed height */
    -o-object-fit: cover;
       object-fit: cover; /* Ensure the image covers the banner area, cropping if necessary */
    margin: 0; /* Ensure no margin is applied */
}

/* Responsive Design: Adjust height of banner image on mobile */
@media screen and (max-width: 768px) {
    .banner-img {
        height: 250px; /* Reduce height for smaller screens */
    }
}


/* Text overlay on the banner */
.banner-text {
    position: absolute;
    top:  75%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional background for contrast */
    width: 100%; 
}

.banner-text h1 {
    font-size: 2rem;
    margin: 0;
}