/* About Section */
.about-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image */
.about-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

/* About Content Wrapper */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

/* Media Section (Two Images Side by Side) */
.about-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Space between images */
    width: 100%;
}

/* About Images */
.about-image {
    width: 100%; /* Adjust size */
    max-width: 400px;
    max-height: 400px;
    border-radius: 12px;
    
    /* box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff; */
}

/* About Description (Below the Images) */
.about-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
    max-width: 700px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #ff00ff;
}

.about-content p {
    font-size: 1.2rem;
    color: #cccccc;
}
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: black;
    }
    .nav-links.active {
        display: flex;
    }
}
/* Adjust About Section Layout */
/* .about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    text-align: left;
} */

/* Text on the Left */
.about-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
    max-width: 50%;
}

/* Image on the Right */
.about-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    height:700px;
}

/* Button Styling */
.about-button {
    display: block;
    margin: 30px auto;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff00ff;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.about-button:hover {
    background-color: #cc00cc;
}
.about-container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between text and image */
    padding: 20px;
}

/* Ensure the about text appears at the top */
.about-content {
    max-width: 800px;
}

/* Styling for the image */
.about-media img {
    max-width: 1000px;
    height: 1000px;
    border-radius: 10px; /* Optional for rounded corners */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        max-width: 90%; /* Adjust width for smaller screens */
        padding: 15px;
        margin:30px;
    }

    .about-content {
        font-size: 16px; /* Adjust font size */
        line-height: 1.5;
    }

    .about-media img {
        max-width: 100%; /* Ensure it fits within mobile screens */
        height: auto;
    }
}
/* Fullscreen Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 70px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}





