*{
    margin:10; padding: auto;
    box-sizing: border-box;
    text-transform: capitalize;
}
body{
    background: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    background-color: #f2f2f2;
    padding: 10px 0;
    z-index: 1000; /* Ensure the header is above other content */
}

.heading{
    color: #444;
    font-size: 40px;
    text-align: center;
    padding: px;
}
.container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1px;
    align-items: flex-start;
    padding:5px 5% ; 
    flex: 1;
    max-width: 1900px; /* Adjust this width to your preference */
    min-height: 500px;
    margin: 0 auto;
    overflow: hidden; /* Ensure the image doesn't overflow the container */
    position: relative; /* Position the image player relatively */   
}

.container-fluid{
    background: #ffffff;
    border-radius: 50px;
    padding: 5px ;
    flex: 1;
}

.navbar-nav {
    display: flex;
    list-style: none;
}
.row {
    display: flex;
    justify-content: center;
}

.col-12 {
    width: 100%;
}

h5 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}


/*Menubar Styles */
.menu-card {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Box shadow */
    
}

.menu-card:hover {
    transform: scale(1.05); /* Enlarge the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Change box shadow on hover */
    font-family: Arial, sans-serif; /* Remove default link underline */
}

.menu-card span {
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.menu-card:hover span {
    color: #555;
}

.nav-link {
    text-decoration: none;
    color: inherit;
}

.border {
    border: 5px solid #f0eaea; /* Border for the search box */
    border-radius: 5px; /* Rounded corners */
    background: #f0ebeb;
    padding: 10px; /* Padding inside the search box */
    margin-top: 20px; /* Top margin for spacing */
  }
  
  .form-control {
    width: calc(100% - 90px); /* Adjust input width */
    display: inline-block;
    vertical-align: middle;
  }
  
  .btn {
    margin-left: 10px; /* Add space between input and button */
    color: rgb(14, 14, 14);
  }



@media (max-width:991px){
    .container{
         grid-template-columns: 1.5fr 1fr;
         padding: 10px;
    }    
    .banner1, .banner2, .banner3, .banner4{
        width: 1900px;
        height: auto;
    }
}

@media (max-width:768px){
    .container{
         grid-template-columns: 1fr;
         padding: 10px;
         flex: 1;
    } 
    
    
}

@media screen and (orientation: landscape) {    
    .container{
        grid-template-columns: 1fr;
        padding: 10px;
        flex: 1;
   } 
   
}    