/* General Reset */
* {overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures elements don't exceed container width */
}


html, body {
    background-image: url("Images/bg2.jpeg");
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

/* Navigation Menu */
.Menu {
    height: 100px; /* Adjust height as needed */
    width: 100%; /* Stretch across the viewport */
    background-color: black;
    display: flex; /* Flex layout for alignment */
    justify-content: space-between; /* Space between logo and links */
    align-items: center; /* Center vertically */
    padding: 0 16px; /* Padding for consistent spacing */
}
.dropdown button {
    font-size:25px;
    color:white;
    border:none;
    background-color:black;
    font-weight:600;
    border-bottom: 2px solid rgb(152,135,123);
    padding:20px;
}

.dropdown{

}
.dropdown a {
    display:block;
    text-decoration: none;
    color:black;
    font-family: "Arimo", sans-serif;
    font-size:20px;
    font-weight:400;
    padding:10px;
    line-height: 25px;
}

.dropdown .content {
   font-size:20px;
    position:absolute;
width: 126px;
display: none;
   
}

.dropdown:hover .content{
    display:block;
}

.dropdown:hover button{
    background-color: black;
    color:white;
    font-family: "Arimo", sans-serif;
    font-size:25px;
}

.dropdown a:hover {
    background-color: white;
}
/* Logo Section */
.logo {
    display: flex;
    align-items: center; /* Center logo vertically */
}

.logo img {
    height: 105px; /* Adjust size as needed */
    width: auto; /* Maintain aspect ratio */
}

/* Navigation Links */
.NavItems {
    display: flex; /* Flex layout for links */
    gap: 200px; /* Space between links */
    margin-right:200px;
}

.NavItems a {
    background-color: rgba(0,0,0,0.3);
    padding:20px;
    font-family: "Arimo", sans-serif;
    font-weight:600;
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 25px; /* Adjust font size */
    border-bottom: 2px solid rgb(152,135,123);
}

.NavItems a:hover {
   color:rgb(152,135,123);
    transition:.5s;
}

.Container {
    margin-top:35px;
    display: flex;
    width: 100%; /* Optional: You can control this if needed */
    height:300px;
    margin-left:50px;
}
.line {
    margin-left:50px;
    height: 10px;
    width: 700px;
    background-color: rgb(101, 175, 16);
  }
.para {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    width:90%;
    background-color: rgba(0,0,0,0.7);
    font-size:25px;
    padding: 25px;
    color:white;
font-weight:500;
    font-family: "Arimo",sans-serif;
}