.single-banner {
    margin-bottom: 0px;
}

/* Awards Introduction Section */
.awards-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 40px;
}

.achievement-highlights {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dfa10c;
    margin-bottom: 5px;
    animation: countUp 2s ease-out;
}

.highlight-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.intro-image {
    position: relative;
    text-align: center;
}

.intro-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #dfa10c, #004499);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-badge i {
    font-size: 1.2rem;
}

/* Awards Carousel Section */
.awards-carousel-section {
    padding: 40px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.awards-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.awards-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.award-slide {
    min-width: 100%;
    /* padding: 0 20px; */
}

.award-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.award-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dfa10c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.award-content {
    padding: 30px;
}

.award-content h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.award-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.award-authority {
    color: #dfa10c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -60px;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: #dfa10c;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-50%);
}

.prev-btn {
    left: -60px;
    margin-left: 20px;
}

.next-btn {
    right: -60px;
    margin-right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dfa10c;
    transform: scale(1.2);
}

/* Certificates Gallery */
.certificates-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #dfa10c;
    border-color: #dfa10c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.certificate-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.certificate-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    transform: translateY(0);
}

.certificate-overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.certificate-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-btn {
    background: #dfa10c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #004499;
    transform: scale(1.05);
}

/* Recognition Timeline */
.recognition-timeline {
    padding: 80px 0;
    background: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #dfa10c 0%, #004499 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #dfa10c;
    border: 3px solid #ffffff;
    border-radius: 50%;
    top: 45px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item.left::after {
    right: -9px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-item.right::after {
    left: -9px;
}

.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dfa10c;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #dfa10c, #004499);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Certificate Modal */
.certificate-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-body {
    display: flex;
    min-height: 500px;
}

.modal-body img {
    width: 50%;
    object-fit: cover;
}

.modal-info {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.modal-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.modal-details {
    space-y: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.detail-item span {
    color: #dfa10c;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .awards-intro {
        padding: 60px 0;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .achievement-highlights {
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .highlight-item {
        flex: 1;
        min-width: 0;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .highlight-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .floating-badge {
        position: static;
        margin: 20px auto 0;
        width: fit-content;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: -50px;
    }

    .next-btn {
        right: -50px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left;
    }

    .timeline-item::after {
        left: 12px;
    }

    .timeline-content {
        border-left: 3px solid #dfa10c;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-body img,
    .modal-info {
        width: 100%;
    }

    .modal-info {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .intro-content h2 {
        font-size: 1.8rem;
    }

    .achievement-highlights {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .highlight-item {
        flex: 1;
        min-width: 0;
    }

    .highlight-number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .highlight-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .award-content {
        padding: 20px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-info h4 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}