#wpforms-submit-590{
    padding: 10px 50px 10px 24px !important;
    background: #00B1E0 !important;
    border-radius: 4px !important;
    border: none !important;
    position: relative;
}

#wpforms-submit-590::before{
    
    content: "";
    position: absolute;
    top: 20%;
    left: 70%;
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2026/01/Icons.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    
}

.menu-item {
    position: relative;
    padding-bottom: 10px;
    
}



#bs-menu .menu-item a:hover::after,#bs-menu .current-menu-item a::after{
    
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #00B1E0;
    border-radius: 4px;
	opacity: 1 !important;
}

.wpforms-container{
    margin: 0 !important;
}


/* for 404 page and image carousel page */



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}



.container{
    max-width: 1145px;
    margin: 0 auto;
}



.main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 182px 0;
    background: url('/wp-content/uploads/2026/01/404-hero-bg_colored.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
  
    
}


/* .main-container::before {
  content: "";
  position: absolute;
  inset: 0;
 background: #06447A;
 background: linear-gradient(90deg, rgba(6, 68, 122, 1) 0%, rgba(4, 40, 71, 1) 100%);
  opacity: 0.9; 
  background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
} */




.bs-custom__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

.bs-custom__container h1{
    
    font-size: 200px !important;
    font-weight: bold;
    line-height: 200px;

}

.para{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.bs-custom__container p{
    
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    color: white;

}

.bs-custom__container a{
    
    background-color: transparent !important;
	padding: 12px 24px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-top: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.bs-custom__container a:hover{
	background-color: transparent !important;
    border: 1px solid #fff;
}

.top-image{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.bottom-image{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
}





.logo-scroller {
  position: relative;
  display: block;
  width: 100%; /* Will fit parent container at 100% */
  margin: 0 auto;
}

.logo-scroller-content {
  padding: 200px 0;
}

.logo-scroller-items {
  margin: -58px 0;
  overflow: hidden;
  cursor: default;
}

.logo-scroller-row {
  display: flex;
  position: relative;
  white-space: nowrap;
  justify-content: space-around; /* Ensures logos have space around them */
  gap: 40px; /* Adds consistent space between logos */
}

.logo-scroller-item {
  position: relative;
  flex: 1 1 auto; /* Flexible sizing */
  min-width: 150px; /* Prevent logos from getting too small */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-scroller-item span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Default logo size */
.logo-scroller-item span img {
  max-width: 100%; /* Ensure the logo doesn't overflow horizontally */
  max-height: 100px; /* Set consistent max height for logos */
  object-fit: contain; /* Ensure logos maintain aspect ratio */
  display: block; /* Remove inline spacing issues */
}

/* For larger screens (desktop) */
@media (min-width: 1024px) {
  .logo-scroller-item span img {
    max-height: 150px; /* Larger height for big screens */
  }
}

/* For smaller screens (tablets) */
@media (max-width: 768px) {
  .logo-scroller-item {
    min-width: 100px; /* Adjust minimum width for smaller screens */
  }
  .logo-scroller-item span img {
    max-height: 80px; /* Smaller height for tablets */
  }
}

/* For very small screens (phones) */
@media (max-width: 480px) {
  .logo-scroller-item {
    min-width: 80px; /* Adjust minimum width for mobile phones */
  }
  .logo-scroller-item span img {
    max-height: 60px; /* Even smaller size for mobile phones */
  }
}