body {
    background-color: rgb(59, 206, 211) !important;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

header {
    text-align: center;
    padding: 20px;
    background: #111;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
}
.gallery {
    text-align: center;
    padding: 50px;
}
.gallery-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.gallery-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}
.lightbox-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    cursor: pointer;
}
.about-container {
    all:unset !important;
}
.about {
    display: flex;
    justify-content:center;
    align-items:center;
    flex-direction:column ;
    text-align: center;
    padding: 40px;
    background-color: aqua;
}
.about-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-text {
    font-family: "Arial", sans-serif;
    font-size: 18px;
    color:#333;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    margin-top: 15px;
}
.about-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}
.highlight {
    color: #e63946;
    font-weight: bold;
}
/* Contact Page Styling */
.contact-form {
    max-width: 500px;  /* Adjust width for better aesthetics */
    margin: 50px auto;  /* Center the form */
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;  /* Center text */
}


.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.input-group input,
.input-group textarea {
    width: 100%; /* Makes all fields full width inside the container */
    max-width: 450px;  /* Limits width for better aesthetics */
    padding: 12px;  /* Increase padding for better look */
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

/* Highlight input field on focus */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}



.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}


button {
    width: 100%;
    max-width: 450px;  /* Match input fields */
    padding: 12px;
    background: #007BFF;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #0056b3;
}


@media (max-width: 768px) {
    .contact-form {
        width: 90%;
    }

    .input-group input,
    .input-group textarea,
    button {
        max-width: 100%;  /* Adjust to smaller screens */
    }
}
