
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

nav {
    width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 50px;
  background: rgba(44, 62, 80, 0.85);
  top: 0;
  left: 0;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section nav:hover {
    background: rgba(44, 62, 80, 1);
    box-shadow: 0 6px 20px rgba(8, 157, 161, 0.7);
    }
    
    section nav .logo img {
    width: 110px;
    transition: transform 0.3s ease;
    cursor: pointer;
    }
    
    section nav .logo img:hover {
    transform: scale(1.1);
    }
    
    section nav ul {
        list-style: none;
        display: flex;
        gap: 25px;
        }
        
        section nav li {
        display: inline-block;
        padding: 0 10px;
        position: relative;
        }
        
        section nav li a {
        text-decoration: none;
        color: #ffffff;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
        padding-bottom: 4px;
        }
        
        section nav li a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #089da1;
        transition: width 0.3s ease;
        }
        
        section nav li a:hover {
        color: #089da1;
        transform: scale(1.1);
        text-shadow: 0 0 8px #089da1;
        animation: glow 1.5s infinite alternate;
        }
        
    section nav li a:hover::after {
        width: 100%;
        }
        
        section nav .logo img{
        width: 100px;
        cursor: pointer;
        margin: 8px 0;
        }
        section nav ul{
        list-style: none;
        }
        
        section nav li{
        display: inline-block;
        padding: 0 10px;
        }
        
        section nav li a{
        text-decoration: none;
        color:  #ffffff;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
        }
        
        section nav li a:hover{
        color: #089da1;
        transform: scale(1.1);
        text-shadow: 0 0 8px #089da1;
        animation: glow 1.5s infinite alternate;
        }
        
        @keyframes glow {
        0% {
            text-shadow: 0 0 5px #089da1, 0 0 10px #089da1;
        }
        100% {
            text-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff;
        }

        }
        section nav .social_icon i{
        margin: 0 5px;
        font-size: 18px;
        }
        
        section nav .social_icon i:hover{
        color: #089da1;
        cursor: pointer;
        }
    

main {
    padding: 40px 20px;
    max-width: 700px;
    margin: auto;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 1rem;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px #089da1;
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

form textarea {
    min-height: 120px;
}

button[type="submit"] {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #089da1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #089da1;
}

.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    color: green;
}

footer {
    background-color: #089da1;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
