/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px; /* Optional: add space above images /
}

.landing-image {
    max-width: 150px; / Adjust size as needed /
    height: auto;
    border-radius: 8px; / Optional: rounded corners /
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); / Optional: subtle shadow */
}
/* Center the team member sections and images */
.team-member {
    text-align: center;
    margin: 20px;
}
.pdf-viewer {
    width: 100%;
    height: 500px; 
    overflow: auto; 
    border: 1px solid #ccc;
}
.glowing-button {
    display: inline-block;
    padding: 8px 16px; /* Small padding for a compact button */
    font-size: 14px; /* Small text */
    background-color: transparent; /* Button has same background color as the page */
    color: #333; /* Default text color */
    border: 2px solid #ccc; /* Subtle border color by default */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease; /* Smooth transition for hover effect */
}



/* Button item (each button with text above and below) */
.button-item {
    text-align: center; /* Center the text and button inside each item */
    margin-bottom: 20px;
    transition: all 0.5s ease; /* Smooth transition for hover effect */
    
}

/* Text above the button */
.button-text-top {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

/* Text below the button */
.button-text-bottom {
    font-size: 1em;
    margin-top: 0.5em;
}


.glowing-button:hover {
    border-color: #4CAF50; /* Green border on hover */
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8); /* Glowing effect */
    color: #4CAF50; /* Change text color to match the glow */
}
.clickable-image {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.clickable-image:hover {
    transform: scale(1.1); /* Enlarge on hover */
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    text-align: center;
}

/* Close button for modal */
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}
header {
    background: #333;
    color: white;
    text-align: center;
    padding: 1em;
}

/* About Section */
.about-section .profile-card {
    text-align: center;
    padding: 2em;
}

.profile-card img {
    border-radius: 50%;
    width: 150px;
}

/* Projects Section */
.projects-section .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    padding: 2em;
}

/* Contact Section */
.contact-section form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    padding: 2em;
}

/* Gallery Section */
.gallery-section .gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1em;
    padding: 2em;
}



/* Styling for the buttons */
.tab-button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    font-size: 1.5em; /* Bigger font size */
    padding: 0.8em 1.5em; /* Larger padding for bigger buttons */
    border: none; /* Remove border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Center the text on the button */
.tab-button:focus,
.tab-button:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Deepened shadow */
}

/* Selected or Active Tab Effect */
.tab-button.active {
    background-color: #333; /* Different color for active state */
    color: white;
}
/* Centered section styling */
.center-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Occupy 80% of viewport height to center vertically */
    text-align: center;
}

/* Container for buttons */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 1em; /* Space between buttons */
}

/* Back Button Styling */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #e74c3c; /* Red color */
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #c0392b; /* Darker red on hover */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Deepened shadow */
}
