/* ===== meetings-section.css ===== */

.home-meetings {
    padding: 60px 24px;
    background: #ffffff;
}
.meetings-card {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, #0a2e4a 0%, #0a4b78 100%);
    border-radius: 20px;
    padding: 40px 36px;
    color: white;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}
.meetings-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e63946 0%, #e63946 33%, #27ae60 33%, #27ae60 66%, #1b6b9e 66%, #1b6b9e 100%);
}

.meetings-text {
    flex: 1 1 300px;
}
.meetings-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}
.meetings-text h2 span {
    color: #27ae60;
}
.meetings-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 24px;
    max-width: 500px;
}

.meetings-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e63946;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.45);
}
.meetings-btn:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.meetings-visual {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.meeting-icon-circle {
    background: rgba(255,255,255,0.1);
    border: 3px dashed rgba(255,255,255,0.3);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #27ae60;
    transition: transform 0.3s ease;
}
.meetings-card:hover .meeting-icon-circle {
    transform: scale(1.1);
}

/* Fade‑in animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 600px) {
    .meetings-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .meetings-text h2 {
        font-size: 1.8rem;
    }
    .meetings-visual {
        order: -1;
    }
}