@Font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('../fonts/MyriadPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Semibold.woff2') format('woff2'),
        url('../fonts/MyriadPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.woff2') format('woff2'),
        url('../fonts/MyriadPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --accent-color-light: #7257c7;
    --accent-color-dark: #4a90e2;
    --main-theme-blue: #3b6ba8;
    --main-theme-dark-blue: #1A2E44;
    --text-on-dark: #FFFFFF;
    --main-accent-gold: #FFC107;
    --recognition-banner-height: 450px;
    --navbar-height: 50px;
    
    --recognition-banner-blue: var(--main-theme-blue);
    --recognition-banner-gradient: linear-gradient(135deg, var(--main-theme-blue) 0%, var(--main-theme-dark-blue) 100%); /* Blue gradient for RHS text area */
}

body {
    font-family: 'Myriad Pro';
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: black;
    background-color: #f8f8f8;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 18px;
}

h1,h2, h3, h4, h5, h6 {
    font-family: 'Myriad Pro';
    color: black;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-size: 18px;
}

p, li, a {
    font-family: 'Myriad Pro';
    font-size: 18px;
    color: black;
}

#banner.new-banner-design {
    background: var(--recognition-banner-blue);
    color: var(--text-on-dark);
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: var(--recognition-banner-height);
    min-height: var(--recognition-banner-height);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

#banner::before {
    display: none;
}

.banner-inner-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    width: 100%;
    gap: 0;
    position: relative;
    z-index: 1;
    height: 100%;
}

.banner-left-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    background: var(--recognition-banner-blue);
    padding: 0;
    overflow: hidden;
}

.single-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transform: none;
    transition: none;
    animation: none;
    position: relative;
}

.single-image-container:hover {
    transform: none;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: none;
}

.banner-right-text {
    flex: 1;
    text-align: left;
    padding: 40px;
    background: var(--recognition-banner-gradient);
    color: var(--text-on-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Myriad Pro';
    overflow: auto;
    box-sizing: border-box;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.report-title h1 {
    font-size: 29px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    color:var(--main-accent-gold);
    text-shadow: none;
    text-align: left;
    font-family: 'Myriad Pro';
}

.report-title .highlight {
    color: var(--main-accent-gold);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: static;
}

.banner-description {
    font-size: 20px !important;
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
    font-family: 'Myriad Pro';
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.scroll-down,
.scroll-indicator {
    display: none !important;
}

@media (max-width: 992px) {
    .banner-inner-content {
        flex-direction: column;
        height: auto;
    }
    #banner.new-banner-design {
        height: auto;
        min-height: auto;
    }

    .banner-left-visual {
        height: 300px;
        min-height: unset;
        order: 1;
    }

    .single-image-container {
        height: 100%;
        min-height: unset;
    }

    .banner-image {
        height: 100%;
        min-height: unset;
    }

    .banner-right-text {
        text-align: center;
        padding: 40px 20px;
        height: auto;
        min-height: unset;
        order: 2;
    }

    .report-title h1 {
        font-size: 18px;
    }

    .banner-description {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #banner.new-banner-design {
        min-height: auto;
    }

    .banner-inner-content {
        min-height: auto;
    }

    .banner-left-visual {
        height: 250px;
        min-height: auto;
    }

    .banner-right-text {
        padding: 30px 20px;
        min-height: auto;
    }

    .report-title h1 {
        font-size: 18px;
    }

    .banner-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-left-visual {
        height: 200px;
        min-height: auto;
    }

    .banner-right-text {
        padding: 20px 15px;
    }

    .report-title h1 {
        font-size: 18px;
    }

    .banner-description {
        font-size: 18px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.content-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.category-header h2 {
    font-size: 25px;
    color: black;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 19px;
    color: black;
    font-family: 'Myriad Pro';
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.award-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.award-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awards-category.individual-awards .award-image,
.awards-category.aios-2024 .award-image {
    height: 200px;
}

.awards-category.individual-awards .award-image img,
.awards-category.aios-2024 .award-image img {
    object-fit: cover;
    object-position: center;
}

.award-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.award-content h3 {
    font-size: 18px;
    color: black;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Myriad Pro';
}

.award-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.award-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    color: black;
    font-family: 'Myriad Pro';
}

.award-meta i {
    color: #7257c7;
}

.award-description {
    font-family: 'Myriad Pro';
    font-size: 18px;
    color: black;
    margin-bottom: 20px;
}

.award-badge {
    align-self: flex-start;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-top: auto;
    text-transform: uppercase;
}

.award-badge.industry { background-color: #5cb85c; }
.award-badge.regional { background-color: #f0ad4e; }
.award-badge.lifetime { background-color: #e74c3c; }
.award-badge.academic { background-color: #3498db; }
.award-badge.professional { background-color: #9b59b6; }
.award-badge.community { background-color: #1abc9c; }
.award-badge.national { background-color: #27ae60; }
.award-badge.institutional { background-color: #d35400; }
.award-badge.fellowship { background-color: #8e44ad; }
.award-badge.international { background-color: #f1c40f; }
.award-badge.heroes { background-color: #c0392b; }


.awards-category:nth-of-type(2) .awards-grid .award-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.research-excellence {
    background-color: #eef4f8;
    padding: 60px 0;
    border-radius: 12px;
}

.research-highlight {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.research-image {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.research-content {
    flex-grow: 1;
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.research-achievement, .annual-recognition {
    margin-bottom: 30px;
}

.research-content h3 {
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
    border-bottom: 2px solid #7257c7;
    padding-bottom: 5px;
    display: inline-block;
    font-family: 'Myriad Pro';
}

.research-content p {
    font-family: 'Myriad Pro';
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
}

.researchers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.researchers-list li {
    font-family: 'Myriad Pro';
    font-size: 18px;
    color: black;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.researchers-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #7257c7;
    position: absolute;
    left: 0;
    top: 0;
}

.awards-stats {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stats-header {
    margin-bottom: 40px;
}

.stats-header h2 {
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
    font-family: 'Myriad Pro';
}

.stats-header p {
    font-size: 18px;
    color: black;
    font-family: 'Myriad Pro';
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.stat-card {
    background: linear-gradient(to bottom right, #7257c7, #4a90e2);
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: white;
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    font-size: 18px;
    font-family:  'Myriad Pro';
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7b500 0%, #DAA520 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f7b500;
    text-align: left;
    font-family: 'Myriad Pro';
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #f7b500;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    font-family:'Myriad Pro';
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
    font-size: 18px;
    font-family:'Myriad Pro';
}


.footer-links-grid {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 180px;
}

.footer-link,
.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 18px;
    font-family: 'Myriad Pro';
    cursor: pointer;
}

.footer-link:hover,
.footer-links a:hover {
    color: #f7b500 !important;
    transform: translateX(5px);
}

.footer-link i,
.footer-links a i {
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    color: inherit;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 18px;
    font-family: 'Myriad Pro';
}

.social-links a:hover {
    color: #f7b500 !important;
    transform: translateX(5px);
}

.social-links a i {
    font-size: 1.1rem;
    width: 20px;
    color: inherit;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-family:'Myriad Pro';
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Myriad Pro';
}

.footer-bottom-links a:hover {
    color: #f7b500 !important;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-links-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        font-size: 18px;
        padding: 40px 0 20px;
    }

    .footer-section h3 {
        font-size: 18px;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .contact-item i {
        margin-top: 0;
    }

    .contact-item div {
        text-align: center;
    }

    .contact-item strong,
    .contact-item p {
        text-align: center;
        font-size: 18px;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-links-column {
        min-width: 0;
        text-align: center;
    }

    .footer-link,
    .footer-links a {
        font-size: 18px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 18px;
        padding: 30px 0 20px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .contact-item strong,
    .contact-item p {
        font-size: 18px;
    }

    .footer-link,
    .footer-links a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 18px;
    }

    .footer-bottom-links a {
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@keyframes golden-glow {
    0% {
        text-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
        box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.6);
    }
    100% {
        text-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
        box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
    }
}

@keyframes golden-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.award-card.premium {
    position: relative;
    overflow: hidden;
    border: 2px solid #DAA520;
    background: linear-gradient(135deg, #ffffff 0%, #fefbf5 100%);
    animation: golden-pulse 3s ease-in-out infinite;
}

.award-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.award-card.premium .award-content {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.award-badge.gold {
    background: linear-gradient(135deg, #DAA520 0%, #f4d03f 50%, #DAA520 100%);
    color: #1a202c;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #B8860B;
    animation: golden-glow 2s ease-in-out infinite alternate;
}

.award-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 50%, #E5E4E2 100%);
    color: #2c3e50;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #A8A8A8;
}

.award-badge.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #66ccff 50%, #b9f2ff 100%);
    color: #0066cc;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #4da6d9;
}

.award-card.premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: none;
}


.golden-text {
    color: #DAA520;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.golden-text.glow {
    animation: golden-glow 2s ease-in-out infinite alternate;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.golden-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #DAA520 50%, transparent 100%);
    margin: 30px 0;
    border-radius: 1px;
}

.golden-divider.thick {
    height: 4px;
}

.title-golden {
    background: linear-gradient(135deg, #DAA520 0%, #f4d03f 50%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    position: relative;
}

.title-golden::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DAA520 0%, #f4d03f 50%, #DAA520 100%);
    border-radius: 2px;
}

.btn-golden {
    background: linear-gradient(135deg, #DAA520 0%, #f4d03f 50%, #DAA520 100%);
    color: #1a202c;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-family: 'Myriad Pro', Arial, sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-golden:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #DAA520 50%, #f4d03f 100%);
}

.btn-golden:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
}

.loading-golden {
    position: relative;
    overflow: hidden;
}

.loading-golden::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }

    .main-header,
    .back-to-top,
    .scroll-indicator,
    footer {
        display: none !important;
    }

    .award-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        background: white !important;
    }

    .golden-text,
    .title-golden {
        color: #333 !important;
        text-shadow: none !important;
        -webkit-text-fill-color: #333 !important;
    }

    .award-badge {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }

    .scroll-down i {
        animation: none !important;
    }

    .award-card.premium {
        animation: none !important;
    }

    .golden-text.glow {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    .golden-text {
        color: #000;
        text-shadow: none;
    }

    .award-badge {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }

    .btn-golden {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
}

.award-card:focus,
.social-links a:focus,
.footer-links a:focus,
.btn-golden:focus {
    outline: 3px solid #DAA520;
    outline-offset: 2px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #DAA520 0%, #f4d03f 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #DAA520 100%);
}

.horizontal-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: var(--navbar-height);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-nav-container {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-nav-container::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item a {
    display: block;
    padding: 18px 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Myriad Pro', sans-serif;
}

.nav-item:hover a {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
}

.home-nav a { background: #8e44ad; }
.patient-nav a { background: #158481; }
.education-nav a { background: #144984; }
.consultancy-nav a { background: #9b1c25; }
.research-nav a { background: #5b5aa7; }
.ophthalmic-nav a { background: #0c628a; }
.information-nav a { background: #b97e2b; }
.recognition-nav a { background: #9b59b6; }
.events-nav a { background: #e67e22; }

.nav-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-family: 'Myriad Pro';
}



.nav-item.active a::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 6px;
    border-radius: 2px;
    animation: underlineSlide 0.4s ease-in-out;
}

@keyframes underlineSlide {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}
.outreach-details-link {
    text-align: right;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
    font-family: 'myraid pro';
}

.outreach-details-link p {
    margin: 9px;
    font-size: 18px;
    color: black;
    font-weight: 500;
    font-family: 'Myriad Pro';
}

.details-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
    border-bottom: 2px solid transparent;
}

.details-link:hover {
    color: #1d4ed8;
    border-bottom: 2px solid #2563eb;
}
.footer-download-btn {
    display: inline-block;
    background: var(--main-accent-gold, #FFC107);
    color: black;
    font-family: 'Myriad Pro';
    font-weight: 700;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.13);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.footer-download-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}
.footer-download-btn:hover {
    background: #ffcd38;
    color: #000;
    transform: translateY(-2px);
}