/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: url('6985678.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}



/* General Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: url('path-to-your-background-image.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  header .logo a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #58a6ff; /* Neon Blue on hover */
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
  }
  
  .burger div {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: url('6005990.jpg') no-repeat center center;
        background-size: cover;
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1;
        padding: 20px;
    }
  
    nav ul.active {
        display: flex;
    }
  
    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
  
    nav ul li a {
        font-size: 20px;
        transition: color 0.3s;
    }
  
    nav ul li a:hover {
        color: #58a6ff; /* Neon Blue on hover */
    }
  
    .burger {
        display: flex;
    }
  
    .burger div {
        background-color: white;
    }
  
    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
  
    .burger.active div:nth-child(2) {
        opacity: 0;
    }
  
    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
  }
  

/* Main Content Styles */
main {
    padding: 20px;
    color: #fff;
}

.contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8); /* Slightly transparent background */
    border-radius: 8px;
}

.contact h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.contact-info {
    margin-top: 20px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 18px;
    margin: 5px 0;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0 0;
    font-size: 14px;
}

/* Bottom Navigation Bar with Glassmorphism */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    display: none; /* Initially hide the bottom nav */
}

/* Bottom Navigation Items */
.bottom-nav-item {
    color: rgb(16, 0, 187);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    flex-grow: 1;
}

.bottom-nav-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.bottom-nav-item span {
    display: block;
    font-size: 12px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.bottom-nav-item:hover {
    color: #ffcc00;
}

/* Show bottom navigation only on screens smaller than 769px */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
}

/* Hide bottom nav on larger screens */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}
