/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff, #62be9c);
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #135b3c;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #30a070;
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #135b3c;
        position: absolute;
        top: 70px;
        left: 70%; /* Center horizontally */
        transform: translateX(-50%); /* Adjust to center perfectly */
        border: 1px solid white;
        border-radius: 8px;
        width: 180px;
        text-align: center; /* Ensures text inside is centered */
    }

    .nav-links.active {
        display: flex;
        align-items: center; /* Centers items inside */
    }

    .menu-toggle {
        display: block;
    }

    .logo a {
        margin-left: 0; /* Reset left margin */
        text-align: center; /* Center logo text */
        display: block;
        width: 100%;
    }

    .container {
        height: auto;
        text-align: center; /* Centers text content inside */
    }
}


/* Contact Section */
.contact {
    flex: 1;
    padding: 80px 20px 50px;
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures everything is centered */
}

.contact h2 {
    font-size: 40px;
    color: #000000;
}

.contact hr {
    width: 80%;
    height: 2px;
    background: #000000;
    border: none;
    margin: 10px auto;
}

.contact p {
    font-size: 23px;
    margin-top: 15px;
}

/* Social Links */
.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center; /* Centers vertically */
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Ensure buttons are centered */
.social-links li {
    display: flex;
    justify-content: center;
}

.social-links li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    border: 2px solid #135b3c;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.social-links li a:hover {
    background: #135b3c;
    color: white;
}

/* Footer */
.footer {
    background: #135b3c;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}