/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
    background-color: #000;
}

/* The image */
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    /* This ensures full image is always visible */
    object-fit: contain;
}

/* Dark overlay + text container */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Text content wrapper */
.hero-text {
    padding: 20px;
    width: 100%;
}

.hero-text h1 {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 1.3em;
    margin: 0 0 30px 0;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}

/* Stats Section */


/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #006633;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 20px;
}

.info-card .card-link {
    color: #ff9933;
    text-decoration: none;
    font-weight: bold;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    display: inline-block;
    border-bottom: 3px solid #ff9933;
    padding-bottom: 10px;
}

/* Leadership Section */
.leadership {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.leader-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.leader-card h3 {
    margin: 15px 0 5px;
    color: #006633;
}

.leader-card p {
    color: #ff4444;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Quick Links */
.quick-links {
    background: #006633;
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.quick-links h3 {
    color: white;
    margin-bottom: 20px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-links-grid a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    text-align: center;
}

.quick-links-grid a:hover {
    background: rgba(255,255,255,0.2);
}



/* Important News */
.important-news {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff9933;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.3em;
    margin: 0;
    color: #006633;
    border: none;
}

.view-link {
    color: #ff9933;
    text-decoration: none;
    font-size: 0.9em;
}

.view-link:hover {
    text-decoration: underline;
}

/* News List */
.important-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.news-item-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}



.news-small-img {
    object-fit: cover;
}

.news-small-icon {
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.news-small-content {
    flex: 1;
}

.news-small-content h4 {
    margin: 0 0 5px;
    font-size: 1em;
    color: #333;
}

.news-small-content small {
    font-size: 0.75em;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.news-small-content a {
    font-size: 0.8em;
    color: #ff9933;
    text-decoration: none;
    font-weight: bold;
}

/* Leader Message */
.leader-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leader-image-area {
    text-align: center;
}

.leader-msg-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff9933;
    margin-bottom: 10px;
}

.leader-image-area h4 {
    margin: 5px 0;
    color: #006633;
}

.leader-image-area p {
    font-size: 0.85em;
    color: #666;
}

.message-text p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Two Leaders Container - Side by Side */
.two-leaders-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Leader Cards */
.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* President Card Styling */
.president-card {
    border-top: 5px solid #006633;
}

/* Secretary Card Styling */
.secretary-card {
    border-top: 5px solid #ff9933;
}

/* Leader Card Header */
.leader-card-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.leader-card-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #006633;
}

/* Leader Card Content */
.leader-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Leader Photo */
.leader-photo {
    margin-bottom: 20px;
}

.leader-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid;
}

.president-card .leader-photo img {
    border-color: #006633;
}

.secretary-card .leader-photo img {
    border-color: #ff9933;
}

.leader-photo h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    color: #333;
}

.leader-photo p {
    font-size: 0.85em;
    color: #666;
}

/* Leader Short Message */
.leader-short-message {
    text-align: center;
}

.leader-short-message p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.leader-readmore {
    display: inline-block;
    color: #ff9933;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.leader-readmore:hover {
    padding-left: 5px;
    color: #e68a00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .two-leaders-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}




