*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

body{
    display:flex;
    flex-direction: column;
    min-height: 100vh;
}

/*Header*/
header {
    background-color: transparent;
    backdrop-filter: blur(95px); 
    background-color: #1a3321;
    padding: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top:0;
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 35px; /* Adjusted for better visibility */
    width: 100%;
    margin: 0px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img{
    height:55px;
    margin-left: 50;
    padding-left:10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin-right: 35px;
}

nav ul li {
    display: flex;
    align-items: center;
    background-color: #1a3321;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-family: "Work Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

nav ul li a:hover {
    text-decoration: none;
    color: #56c02b;
}

header .userprofile-icons i{
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
}

header .userprofile-icons i:hover{
    color: #56c02b;
}


/* .dropdown-menu:hover{
    background-color: #1a3321;
} */

/*------------------------------------------------------------*/
footer {
    background: #1a3321;
    width: 100%;
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section img{
    width: 80px;
}

.social-icons{
    display: flex;
    align-items: center;
    gap:10px;
}

.social-icons a img {
    width: 24px;
    margin:0;
}

.Subscribe {
    display: flex;
    margin-top: 10px;
}

.Subscribe input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.Subscribe button {
    background: black;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.Subscribe button:hover {
    background: #333;
}

.footer-bottom {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 15px;
    background: #1a3321;
    margin-top: 20px;
    gap:200px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 30px;
}

.footer-bottom a:hover {
    color: rgb(17, 167, 57);
    text-decoration: none;
    margin: 0 30px;
}
