/* sections.css */

/* General section padding and margin */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Specific adjustments for the Home section */
#home {
    background-size: cover;
    background-position: center;
}

/* About section */
#about .card {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Skills and Experience sections will have their own tab-specific styles */

/* Education section - higher-edu-card specific styling */
.higher-edu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.higher-edu-card img {
    width: 100px;
    height: 100px;
    object-fit: contain; /* or 'cover' depending on desired effect */
    margin-bottom: 1rem;
    border-radius: 0.5rem; /* slightly rounded corners for images */
}

/* Publications & Patents section */
#publications .card {
    height: 100%; /* Ensure cards in grid have equal height */
}

/* Contact section */
#contact .card {
    padding: 2rem;
    margin-bottom: 1.5rem;
}

#contact iframe {
    border-radius: 0.5rem;
    overflow: hidden;
}
