
 /* style start for body */

body {
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0;
} 
 /* style end for body */
 
 /* style for carousal image */
 
 .carousel-inner {
    display: flex;
    transition: transform 1s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    width: 100%;
}

/* Ensure images fill the container */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 /* style end for the carousal image */

 /* style for search option */

.search-container {
    background-color: #215a3a; /* Darker container */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%; /* Responsive width */
     /* Max width for larger screens */
}
.search-input, .search-select {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    width: 100%; /* Full width for input */
}
.search-button {
    background-color: #007BFF; /* Button color */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.search-button:hover {
    background-color: #0056b3; /* Darker on hover */
} 
/* style end for the search */


/* style for dropdown list */

.dropdown-menu  {
  /* display: none; */
    position: absolute;
    background-color: #f0eeee;
    min-width: 160px;
    color: black;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-menu a {
   display: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-menu a:hover {
    background-color: #4e89b0;
    color: #f0eeee;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  /* style for language option */
  .lang-label {
    padding: 20px; /* Adjust the value as needed */
 }
 /* style end for the language option */


/* style end of the dropdown list */

/* style for jub support search bar */

.search {
    background-color: #f8f9fa;
    padding: 15px;
}
.section-title {
    margin-bottom: 20px;
}
.result-container {
    background-color: #ffffcc;
    padding: 30px;
    border-radius: 5px;
}
.contact-form {
    margin-top: 20px;
}

/* end of the jub support search bar */

/* style for footer */
.footer {
    background-color: #3d8f9c; /* Dark background */
    color: white;
    padding: 40px 0;
}
.footer a {
    color: white;
}
.footer a:hover {
    color: #007bff; /* Blue color on hover */
}

