/* Custom Styles for Mandatory Disclosure Grid */
.disclosure-grid {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}
.disclosure-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.disclosure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(21, 148, 71, 0.12);
    border-color: rgba(21, 148, 71, 0.3);
}
.disclosure-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #159447 0%, #0d6e32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.disclosure-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}
.disclosure-btn {
    background-color: transparent;
    color: #159447;
    border: 2px solid #159447;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: max-content;
}
.disclosure-btn:hover {
    background-color: #159447;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(21, 148, 71, 0.3);
}

/* Indian / International Students Section */
.info-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
}
.info-section h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #159447;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.info-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #f7a800;
    border-radius: 2px;
}
.info-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Override Tailwind CSS visibility: collapse on Bootstrap navbar */
.navbar-collapse.collapse {
    visibility: visible !important;
}
