* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Celebrating Excellence Section */
.celebrating-excellence {
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #2f5fb8 0%, #1c45a4 100%);
}
.excellence-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.excellence-content h1 span {
    color: #ff8c00;
}
.excellence-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e6edff;
    max-width: 620px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .celebrating-excellence { min-height: 220px; padding: 30px 16px; }
    .excellence-content h1 { font-size: 34px; }
    .excellence-content p { font-size: 14px; }
}
@media (max-width: 480px) {
    .excellence-content h1 { font-size: 28px; }
    .excellence-content p { font-size: 13px; }
}

/* Leader Profile Section */
.leader-profile-section {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}
.leader-container {
    max-width: 1100px;
    margin: auto;
}
.leader-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.leader-badge svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}
.leader-name {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.leader-name span {
    color: #f97316;
}
.leader-role {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}
.leader-description {
    max-width: 820px;
    margin: 0 auto 50px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}
.leader-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.leader-card {
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: 0.3s ease;
}
.leader-card:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}
.card-icon {
    width: 46px;
    height: 46px;
    background: #2f66d6;
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 16px rgba(47, 102, 214, 0.3);
    flex-shrink: 0;
}
.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.leader-card p {
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 992px) {
    .leader-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .leader-name { font-size: 30px; }
    .leader-role { font-size: 15px; }
    .leader-description { font-size: 14px; }
    .leader-cards { grid-template-columns: 1fr; }
}

/* Awards Section */
.awards-section {
    padding: 10px 40px;
    background: #ffffff;
}
.awards-container {
    max-width: 1400px;
    margin: 0 auto;
}
.awards-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}
.awards-title span {
    color: #f97316;
}
.awards-subtitle {
    max-width: 680px;
    margin: 10px auto 20px;
    font-size: 15px;
    color: #64748b;
    text-align: center;
}
.awards-grid {
    column-count: 3;
    column-gap: 26px;
}
.award-card {
    break-inside: avoid;
    margin-bottom: 26px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}
.award-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
}
.award-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.award-card:hover .award-overlay {
    opacity: 1;
}
.award-overlay p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .awards-grid { column-count: 2; }
}
@media (max-width: 640px) {
    .awards-grid { column-count: 1; }
}

/* Stats Section */
.stats-section {
    background: #2f63c8;
    padding: 60px 20px;
}
.stats-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #ffffff;
}
.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 6px;
}
.stat-item p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
}
@media (max-width: 480px) {
    .stats-container { grid-template-columns: 1fr; gap: 24px; }
    .stat-item h3 { font-size: 36px; }
}

/* Footer */
.bv-footer {
    background: #1f4ea3;
    color: #fff;
    padding-top: 60px;
    font-size: 14px;
}
.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer-logo {
    height: 90px;
    margin-bottom: 18px;
    margin-left: 20px;
}
.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}
.footer-col h3 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}
.footer-col a:hover {
    opacity: 1;
    padding-left: 6px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #ff7a00;
}
.contact-info i {
    margin-right: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
}
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}