
.custom-img {
    border-radius: 20px;
    /* corner rounding */
    width: 320px;
    /* fixed width */
    height: auto;
    /* keep aspect ratio */
    object-fit: cover;
    display: block;
    /* ensures centering works */
    margin: 0 auto;
    /* centers image inside column */
}

.skills {
    padding: 60px 0;
    background: #ffffff;
    /* keep minimal look */
}


.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
}

.skill-card {
    background: #eefeff;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.skill-card i {
    font-size: 40px;
    color: #00acc8;
    /* teal accent */
    margin-bottom: 15px;
}

.skill-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.skill-card p {
    font-size: 14px;
    color: #6c757d;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #b3e6eb;
    /* teal border on hover */
}

.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 30px 0 !important;
}


    .sport-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  .sport-img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .sport-card:hover .sport-img {
    transform: scale(1.05);
  }
  .section-title h2 {
    font-size: 2rem;
    color: #222;
  }
  .section-subtitle {
    font-size: 1rem;
    color: #666;
  }