/* ---------- Welcome / Admissions Highlight ---------- */
.welcome-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.feature-list i {
    color: var(--emerald-green);
    margin-right: 15px;
    font-size: 1.2rem;
}

.admission-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.space {
    padding: 20px 40px;
}

.admission-card {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.admission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.primary-card {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-green-light) 100%);
}

.secondary-card {
    background: linear-gradient(135deg, var(--army-green) 0%, var(--army-green-dark) 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.admission-card h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.admission-card p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.admission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-gallery {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* margin: auto; */
    margin-bottom: 30px;
    transition: transform 0.4s ease; 
}

.hero-gallery:hover {
    transform: scale(0.95);
}

.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* White pill container */
.thumb-wrapper {
    position: absolute;
    bottom: 25px;
    left: 5px;
    right: 5px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Circular thumbnails */
.thumb {
    width: 52px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 3px solid transparent;
}

/* Hover zoom */
.thumb:hover {
    transform: scale(1.1);
}

/* Active thumbnail */
.thumb.active {
    border: 3px solid #a6ed2c; /* your accent color */
}

/* Hide extra thumbnails on mobile */
@media (max-width: 768px) {
    .hidden {
        display: none;
    }
      .admission-card {
        padding: 30px 20px;
    }
    .thumb {
        width: 48px;
    }
}

/* Show them again on large screens */
@media (min-width: 992px) {
    .hidden {
        display: flex;
    }
}