/* Institute Page — Custom styles only (layout handled by Tailwind) */

/* Hero gradient */
.institute-hero {
    background: linear-gradient(135deg, var(--pink) 0%, #b4507a 100%);
}
.institute-hero-title {
    font-family: var(--70s-family);
}

/* Profile circular image */
.institute-profile img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--pink);
    box-shadow: 0 0 0 4px var(--pink), 0 4px 16px rgba(237, 112, 140, 0.2);
}

/* Service cards */
.institute-service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.institute-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Service placeholder */
.institute-service-placeholder {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.institute-service-placeholder span {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Training badges */
.institute-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pink);
    border: 1px solid rgba(237, 112, 140, 0.3);
    border-radius: 50px;
    background: rgba(237, 112, 140, 0.06);
    letter-spacing: 0.02em;
}

/* CTA button */
.institute-cta-btn {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.institute-cta-btn:hover {
    background: #d4628a;
    transform: translateY(-1px);
}

/* Responsive: profile image smaller on mobile */
@media (max-width: 768px) {
    .institute-profile img {
        width: 130px;
        height: 130px;
    }
}
