.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.hero-content .btn {
    padding: 12px 30px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-content .btn:hover {
    background-color: #0097a7;
}

.hero-logos {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logos img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero-logos img:hover {
    transform: scale(1.1);

}

@media (max-width: 768px) {
    .hero-logos {
        gap: 20px;
        padding: 10px 20px;
        bottom: 20px;
    }

    .hero-logos img {
        height: 30px;
        max-width: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-logos img {
        height: 40px;
    }
}

.frosted-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 20px;
}

.president-message-section {
    background-color: #fdfdfd;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.president-photo-wrapper {
    position: relative;
    display: inline-block;
}



.signature-img {
    max-width: 280px;
    height: auto;
}

.signature-divider {
    border: none;
    border-top: 8px solid #144542 !important;
    width: 70%;
}


.president-message-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    background: transparent;
    padding: 0;
}


.work-icon-inner i {
    transform: rotate(45deg) !important;
    color: #aaadb1 !important;

}


.card-header.bg-primary {
    background-color: #177d82 !important;
    color: #ffffff !important;
}

.badge.bg-primary {
    background-color: #177d82 !important;
    color: #ffffff;
}



.text-primary {
    color: #177d82 !important;
}


#programModal {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#programModal .container-fluid {
    max-width: 800px;
    margin: 0 auto;
}

#programModal .text-center {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
}

#programModal h2 {
    color: #177d82;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#programModal .text-muted {
    color: #6c757d !important;
    font-size: 1rem;
}

#programModal .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

#programModal .card-header {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-bottom: none;
}

#programModal .list-group-item {
    padding: 1rem 1.25rem;
    border-left: none;
    border-right: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

#programModal .list-group-item:hover {
    background-color: #f8f9fa;
}

#programModal .badge {
    min-width: 60px;
    padding: 0.5em 0.75em;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

#programModal .fw-medium {
    font-weight: 500;
    flex: 1;
}

#programModal .alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    background-color: #e7f5ff;
    border: 1px solid #d0ebff;
    color: #495057;
}

#programModal .alert strong {
    color: #177d82;
}

@media (max-width: 576px) {
    #programModal .list-group-item {
        flex-direction: column;
        align-items: flex-start;
    }

    #programModal .badge {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

.description-limit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
