/* --- HOME PAGE SECTION SPECIFIC STYLES --- */

/* Chairman & Secretary Section Background */
.home-messages-section {
    background-color: var(--bg-light); /* Matching the olive/khaki background from screenshot */
    padding: 100px 0;
}

/* Custom Section Headings with Thick Left Border */
.section-heading-custom {
    color: var(--primary);
    font-weight: 800;
    border-left: 6px solid var(--primary) !important;
    padding-left: 15px;
    margin-bottom: 35px;
    font-size: 2rem;
    line-height: 1.2;
}

/* White Cards for Chairman/Secretary */
.speech-card-white {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: none !important;
}

.speech-card-white:hover {
    transform: translateY(-5px);
}

/* Sidebar Notice Card Update */
.notice-card-custom {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: none;
}

.notice-card-custom .notice-header {
    background: #41431B; /* Dark header as seen in screenshot */
    color: #ffffff;
    padding: 18px 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-card-custom .notice-list {
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.notice-card-custom .notice-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.notice-card-custom .notice-item:last-child {
    border-bottom: none;
}

/* About Us Section - Director Card Update */
.about-section .director-message-card {
    background-color: var(--bg-light) !important; /* Greenish background for the card itself */
    border-radius: 25px !important;
    padding: 40px !important;
    border: none !important;
}

.about-section .about-title {
    font-weight: 800;
    font-size: 3.2rem; /* Larger title as seen in screenshot */
    color: var(--primary);
    margin-top: 10px;
}

.about-section .about-subtitle {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

/* General Typography Tweaks for these sections */
.text-justify-custom {
    text-align: justify;
    line-height: 1.8;
    color: #334155;
}
