body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

    /* Background image settings */
    background-image: url('../images/background.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image */
}


.header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
}

.header_logo {
    width: 8rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    /* color: white; */
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #178252;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px; /* positioning below the menu button */
        right: 20px;
        background: rgba(0, 0, 0, 0.8); /* black background with high transparency */
        border-radius: 8px; /* rounded corners */
        padding: 10px;
        width: 200px; /* adjust width as necessary */
        transition: all 0.3s ease; /* smooth transition */
    }

    .nav-links.show {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

/* Main Section Styles */

.about-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.section-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gif-images {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.gif-images img {
    max-width: 48%;
    border-radius: 8px;
}

.text-content {
    text-align: left;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.text-content p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 10px;
}

.highlight {
    color: #178252;
}


/* Footer styles */
.footer {
    background-color: rgba(0,0,0,0.3);
    color: white;
    padding: 20px;
    text-align: center;
}

.address-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: -10px;
}

.address-block {
    width: 45%; /* Adjust this percentage as needed */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    margin: 10px 0;
}

.address-block h3 {
    margin-top: 0;
}

.address-block p {
    margin: 5px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .address-block {
        width: 100%;
    }

}
