body{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
.body2{
    margin: 0%;
    padding: 0%;
    height: auto;
    background-image: url(../images/contactbackground.jpg);
    width: 100%;
    height:100%;
     background-size: cover;
     background-position: center;
     background-repeat: repeat;
     height: 100vh;

}
.h1{
    font-weight: lighter;
    color: black;
    padding-top: 60px;
    padding-left: 0%;
}
.subtitle{
    color: black;
    padding-left:50px;
font-weight: bold;
font-size: x-large;
}
.info{
    padding-left: 30px;
    font-size: 30px;
    padding-top:20px;
    color: white;
    font-weight: bold;
}
.h2{
    color: black;
    padding-left: 60%;
    margin-top: 0%;
    margin: 0%;
}


/* Form Container Styling */
.forms {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    width: 400px; /* Adjust width to fit your layout */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    position: absolute; /* Absolute positioning to place it on the right */
    top: 50%; /* Vertically center */
    right: 10%; /* Position it towards the right */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
}

/* Title Container */
.let {
    text-align: center; /* Center-align the title */
    margin-bottom: 30px;
}

/* Form Labels */
.forms label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

/* Input and Textarea Fields */
.forms input[type="text"],
.forms input[type="email"],
.forms textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    background-color: #f9f9f9;
}

.forms input:focus,
.forms textarea:focus {
    border-color: #007BFF; /* Highlight border on focus */
    outline: none; /* Remove default outline */
    background-color: #fff; /* Brighten background */
}


.forms button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.forms button:hover {
    background-color: #0056b3;
}
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 80px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 80px;
}

.nav-menu li {
    position: relative;
    padding: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    transition: all 0.8 ease;
}

.nav-menu a:hover {
    color: black;
    background-color: black;
    transition: background-color 0.59s ease;

}

/* General Navbar Styling */
.nav-menu li {
    position: relative; /* For dropdown positioning */
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007BFF; /* Highlight on hover */
}

/* Dropdown Menu Styling */
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute; /* Positioned relative to parent */
    top: 100%; /* Align below the parent */
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Subtle shadow */
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000; /* Ensure dropdown is above other content */
    min-width: 150px; /* Minimum width for dropdown */
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block; /* Make the links block elements */
    padding: 8px 12px;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #007BFF; /* Highlight background on hover */
    color: white;
}
.dropdown2:hover .dropdown-menu2 {
    display: block; /* Show dropdown on hover */
}

.dropdown-menu2 {
    display: none; /* Hidden by default */
    position: absolute; /* Positioned relative to parent */
    top: 100%; /* Align below the parent */
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Subtle shadow */
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000; /* Ensure dropdown is above other content */
    min-width: 150px; /* Minimum width for dropdown */
}

.dropdown-menu2 li {
    margin: 0;
}

.dropdown-menu2 a {
    display: block; /* Make the links block elements */
    padding: 8px 12px;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu2 a:hover {
    background-color: #007BFF; /* Highlight background on hover */
    color: white;
}