.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-card {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
}

.skill-card p {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 36px;
}

header p a {
    text-decoration: none;
    color: #007BFF;
}

.section {
    margin-bottom: 60px;
}

h2 {
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.list {
    list-style: disc;
    padding-left: 20px;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 180px;  /* make it not too tall */
    object-fit: cover; /* crop the image nicely instead of stretching */
    object-position: center; /* keep the center of the image */
    display: block;
}


.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
}

.core-competency {
    font-style: italic;
    margin-top: 10px;
    color: #666;
}
