* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.gallery-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    grid-gap: 30px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery-right {
    flex: 1;
    padding-left: 50px;
}

.gallery-right h2 {
    font-size: 2.5rem;
    color: #2a3950;
}

.gallery-right h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #3a485f;
}

.gallery-right p {
    margin-top: 20px;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #23395b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover {
    background-color: #000000;
}


/* Image hover effects */
.gallery-item img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

/* Zoom in and shadow effect on hover */
.gallery-item img:hover {
    transform: scale(1.1); /* Zoom in */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Add shadow */
}

/* Image popup styles */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.gallery-item {
    position: relative;
    display: inline-block;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background with some transparency */
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0; /* Initially invisible */
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Text color */
    font-size: 1.5rem; /* Adjust font size as needed */
}

.gallery-item:hover .overlay {
    opacity: 1; /* Fully visible on hover */
}

.gmail-link {
    color: #a9bcd0; /* Gmail's brand color */
    text-decoration: none; /* Removes underline */
    font-weight: bold; /* Makes the link bold */
}
.gmail-link:hover {
    text-decoration: underline; /* Adds underline on hover */
    color: rgb(165, 33, 33);
}

.linkedin-link {
    color: #a9bcd0;
    text-decoration: none; /* Removes underline */
    font-weight: bold; /* Makes the link bold */
}
.linkedin-link:hover {
    text-decoration: underline; /* Adds underline on hover */
    color: rgb(165, 33, 33);
}
