/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2c3e50; /* Dark Blue background */
    color: white; /* Changed text color to white */
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: white; /* White color for headings */
}

/* Header Section */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #34495e; /* Darker blue for header */
}

.profile-pic img {
    width: 80px; /* Reduced size of the profile image */
    height: 80px;
    border-radius: 50%;
}

.name h1 {
    margin-left: 20px;
    font-size: 36px;
}

/* About Section */
.about {
    background-color: #34495e; /* Dark blue background */
    padding: 40px 0;
}

.about h2 {
    text-align: center;
    font-size: 30px;
}

.about-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}

/* Work Section */
.work {
    background-color: #34495e; /* Dark blue background */
    padding: 40px 0;
}

.work h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.work-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.work-item {
    width: 220px; /* Adjusted width of work items */
    margin: 10px;
    text-align: center;
}

.work-item img {
    width: 100%; /* Image will adjust to the width of its container */
    height: auto; /* Maintain aspect ratio */
    max-height: 150px; /* Fixed maximum height to make sure it's consistent */
    object-fit: cover; /* Ensure images maintain aspect ratio and fill space */
    border-radius: 10px;
}

.work-item h3 {
    font-size: 18px;
    margin-top: 10px;
}

/* Footer Section */
footer {
    background-color: #34495e; /* Dark blue footer */
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}

/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-image {
    width: 80%; /* Adjust width for 16:9 aspect ratio */
    max-height: 80%;
    object-fit: cover;
}

/* Mobile View */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .profile-pic img {
        width: 70px; /* Smaller profile image on mobile */
        height: 70px;
    }

    .name h1 {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }

    .work-gallery {
        flex-direction: column;
        align-items: center;
    }

    .work-item {
        width: 90%;
    }

    .work-item img {
        width: 100%;
        height: 150px;
    }
}
/* Hire Me Button Styling */
.hire-me {
    text-align: center;
    margin-top: 20px;
}

.hire-button {
    background-color: #25D366; /* WhatsApp green color */
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hire-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}
