.hero-section {
    position: relative;
    background: url('/assets/img/bg/net-bg.jpg') center/cover no-repeat;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Card Hover */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-member img {
    border-radius: 50%;
    object-fit: cover;
    height: 160px;
    width: 160px;
    margin-bottom: 15px;
}

/* Feature Section Styling */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: #fff;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
}

.feature-icon {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    font-size: 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6);
}

.feature-card h5 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.benefit-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.benefit-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.08);
}

/* Floating Icon on Image */
.benefit-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

/* Content Section */
.benefit-content {
    padding: 2rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.benefit-list li:hover {
    transform: translateX(5px);
}

.benefit-list li i {
    color: #28a745;
    margin-right: 8px;
    margin-top: 4px;
    font-size: 0.9rem;
}

.team-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.334);
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: scale(1.03);
}

.team-card img {
    height: 200px;
    object-fit: contain;
}

.team-card a {
    text-decoration: none;
}

.team-card a:hover {
    text-decoration: none;
    color: blue;
}

.director-img {
    height: 250px !important;
    /* or whatever size you want */
    object-fit: contain;
}

@media (max-width: 768px) {
    .director-img {
        height: 220px;
        /* slightly smaller for mobile */
    }
}