 
        /* About Hero Section */
        .about-hero-section {
            position: relative;
            background: var(--primary-blue);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.05) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-hero-title .highlight-gold {
            color: var(--accent-gold);
            display: inline-block;
            position: relative;
        }

        .about-hero-title .highlight-gold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
        }

        .about-hero-description {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-lighter);
            line-height: 1.7;
            margin: 0;
            max-width: 700px;
        }

        /* Animations */
        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 120px 0 80px;
            }

            .about-hero-container {
                padding: 0 30px;
            }

            .about-hero-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 110px 0 70px;
            }

            .about-hero-container {
                padding: 0 20px;
            }

            .about-hero-title {
                font-size: 34px;
                letter-spacing: -0.3px;
            }

            .about-hero-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 100px 0 60px;
            }

            .about-hero-title {
                font-size: 30px;
            }

            .about-hero-description {
                font-size: 14px;
            }
        }
    
    
    
    
    
/* Awards & Events Section */
.awards-events-section {
    background: #ffffff;
    padding: 120px 0;
}

.awards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 72, 118, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.award-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 72, 118, 0.06);
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 72, 118, 0.12);
}

.award-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.award-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover .award-image img {
    transform: scale(1.05);
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.award-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.award-info {
    padding: 24px 20px;
}

.award-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 6px;
    line-height: 1.4;
}

.award-info p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 72, 118, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Events Gallery */
.events-gallery {
    margin-top: 100px;
}

.events-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 72, 118, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-large {
    grid-column: span 2;
    grid-row: span 2;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 72, 118, 0.14);
}

.event-image {
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.event-large .event-image {
    padding-bottom: 50%;
}

.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 72, 118, 0) 0%, 
        rgba(0, 72, 118, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-content {
    width: 100%;
}

.event-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.event-large .event-content h4 {
    font-size: 24px;
}

.event-content p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.event-large .event-content p {
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 40px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .awards-events-section {
        padding: 80px 0;
    }
    
    .awards-container {
        padding: 0 24px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 70px;
    }
    
    .events-gallery {
        margin-top: 70px;
    }
    
    .events-heading {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .event-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .event-overlay {
        opacity: 1;
        background: linear-gradient(180deg, 
            rgba(0, 72, 118, 0) 0%, 
            rgba(0, 72, 118, 0.9) 100%);
        padding: 20px;
    }
    
    .event-content h4 {
        font-size: 17px;
    }
    
    .event-large .event-content h4 {
        font-size: 19px;
    }
    
    .event-content p {
        font-size: 13px;
    }
    
    .event-large .event-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 30px;
    }
    
    .events-heading {
        font-size: 26px;
    }
    
    .award-info {
        padding: 20px 16px;
    }
}
