* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Bitter", serif;
    min-height: 120vh;
    background-color: #ffffff;
    background-image: url('bluebackground.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html, body {
    overflow-y: scroll;
    scrollbar-width: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(53, 201, 214, 0.5);
    color: rgb(10, 10, 10);
    z-index: 9999;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.home-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.home-icon img {
    width: 30px;  
    height: 30px;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    filter: brightness(0.9);
}

.home-icon img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.header-content nav {
    margin: 0 auto;
}

.header-list {
    list-style: none;
    display: flex;
    gap: 740px;
    margin: 0;
    padding: 0;
}

.header-list li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 19px;
}

.header-list li a:hover {
    text-decoration: none;
}

 /* Dropdown Menu Styles */
 .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Makes it appear directly below the parent */
    left: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  
  .dropdown-content li {
    list-style: none;
  }
  
  .dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
  }

.contact-section {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 120px auto;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 20px;
    color: #2BAAB4;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section button {
    padding: 10px;
    border: none;
    background-color: #35C9D6;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #2BAAB4;
}

footer {
    background-color: #35C9D6;
    color: rgb(10, 10, 10);
    padding: 20px 60px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: -100px;
    left: 0;
    transition: bottom 0.5s ease;
    z-index: 100;
    opacity: 0.6;
}

footer.visible-footer {
    bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.footer-links li a {
    text-decoration: none;
    color: rgb(10, 10, 10);
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #2BAAB4;
}
