body {
  overflow-x: hidden !important;
}

/* -------------------Header------------------------- */
#navbarSupportedContent ul li a:focus,
#navbarSupportedContent ul li a:hover {
  color: #ea1d22;
}

#navbarSupportedContent ul li a {
  padding: 0.25rem 1.5rem;
  font-family: "Prompt";
  font-size: larger;
  font-weight: 600;
  letter-spacing: 1px;
  color: black;
}

.navbar-collapse {
  justify-content: end;
}

/* Navigation Styles */
.navbar {
  position: relative;
  /* Ensure the navbar is the positioning context */
}

.nav-item {
  position: static;
  /* Change to static for full-width dropdown */
}

.nav-link {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  display: block;
}

.nav-link:hover {
  color: #007bff;
  /* Change link color on hover */
}

/* Dropdown Styles */
.dropdown-menu {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  /* Position below the parent item */
  left: 0;
  right: 0;
  /* Stretch to full width */
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  margin: 0;
  width: 100%;
  /* Full width of the navbar */
}

/* Show the dropdown when the "active" class is present */
.dropdown-menu.active {
  display: block;
}

.dropdown-menu .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  /* Adjust as needed */
  padding: 0 15px;
  /* Add padding to match navbar */
}

.dropdown-menu .col-4 {
  flex: 0 0 33%;
  /* Each column takes 25% of the width */
  max-width: 33%;
  /* padding: 0 15px; */
  /* Add padding between columns */
}

.dropdown-menu a {
  padding: 10px 0;
  display: block;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  /* Add pointer cursor to indicate clickable links */
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #007bff;
  /* Change color on hover */
}

/* submenu */

.sub-menu {
  font-family: "Prompt";
  text-transform: uppercase;
  font-size: 9px;
}

/* Mobile */
button.navbar-toggler {
  border: 2px solid #ea1d22;
}

.navbar-toggler:focus {
  text-decoration: none;
  box-shadow: none !important;
  outline: 0;
  border: 2px solid #ea1d22;
}

/* ------------------------------------------------------ */

/* --------------------------SECTION 1 ------------------- */
.background {
  background: url("https://weathermaster.ae/wp-content/uploads/2025/02/slider-bg-image.jpg")
    no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
}
.content {
  /* background: rgba(0, 0, 0, 0.5); Adds a semi-transparent background */
  color: #000000;
  padding: 50px 0px 50px 100px;
  text-align: start;
}

.content h1 {
  font-family: "Prompt";
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}
.content h4 {
  font-family: "Prompt";
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
}
/* ------------------Section 2------------------------ */

.animated-box {
  background-color: #202529;
  /* Bootstrap primary color */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 10px;
  color: white;
}

.animated-box:hover {
  transform: scale(1.1);
  /* Zoom in */
  background-color: #ea1d22;
  /* Change to success color */
  color: #000000;
}

/* ----------Section 3---------- */

.red-bg {
  background-color: #ea1d22;
}
/* ----------------------------- */
/* Footer Icons */
.custom-icon {
  color: #ffffff;
  width: 100px;
  height: 100px; /* Adjust height here if needed */
  font-size: 3rem; /* Adjust font-size to control icon size */
  line-height: 100px; /* Center icon vertically within the height */
  text-align: center; /* Center icon horizontally */
}

a.custom-icon {
  text-decoration: none;
  font-family: "Prompt";
  font-size: 30px;
}
a.custom-icon:hover {
  text-decoration: none !important;
}

@media (max-width: 576px) {
  /* header */
  .col-4.sub-menu a {
    font-size: 7px !important;
  }

  #navbarSupportedContent ul li a {
    padding: 0;
    font-size: 16px;
  }
  .dropdown-menu .col-4 {
    flex: 0 0 33%;
    max-width: 33%;
    padding: 0px !important;
  }
  /* Section #1 */
  .background {
    justify-content: center;
    text-align: center;
  }

  .content {
    padding: 30px 15px;
  }

  .content h1 {
    font-size: 30px;
    text-align: center;
  }

  .content h4 {
    font-size: 20px;
    text-align:center;
  }
  /* Footer */

  .custom-icon {
    width: 50px;
    height: 50px;
    font-size: 22px !important;
    line-height: 50px;
  }
}
