@import url('style.css'); 

:root {
    --main-theme-blue: #3b6ba8;
    --main-theme-dark-blue: #1A2E44;
    --main-accent-gold: #FFC107;
    --main-secondary-green: #28A745;

    --light-bg-section: #ffffff; 
    --text-dark: #334155;
    --text-light: #ffffff; 
    --border-light: #e0e4e8;
    --health-icon-bg: #ff6b6b;
    --health-badge-bg: #ffecec;
    --health-text-color: #ff6b6b;

    --edu-icon-bg: #5cc16b;
    --edu-badge-bg: #e6f9ec;
    --edu-text-color: #5cc16b;

    --consult-icon-bg: #4a90e2;
    --consult-badge-bg: #eaf4ff;
    --consult-text-color: #4a90e2;

    --research-icon-bg: #805ad5;
    --research-badge-bg: rgba(128, 90, 213, 0.1);
    --research-text-color: #805ad5;

    --supplies-icon-bg: #d69e2e;
    --supplies-badge-bg: rgba(214, 158, 46, 0.1);
    --supplies-text-color: #d69e2e;

    --tech-icon-bg: #319795; 
    --tech-badge-bg: rgba(49, 151, 149, 0.1);
    --tech-text-color: #319795; 

    --awards-icon-bg: #dd6b20;
    --awards-badge-bg: rgba(221, 107, 32, 0.1);
    --awards-text-color: #dd6b20;

    --events-icon-bg: #e53e3e;
    --events-badge-bg: rgba(229, 62, 62, 0.1);
    --events-text-color: #e53e3e;

    --accent-color-light: var(--main-accent-gold);
    --accent-color-dark: #ffcd38; 

    --it-gradient-dark: linear-gradient(135deg, #1a202c 0%, #2d3748 100%); 
    --it-gradient-accent: linear-gradient(135deg, #319795 0%, #4fd1c7 100%);

    --info-banner-height: 450px;
    --info-banner-blue: var(--main-theme-blue); 
    --info-banner-gradient: linear-gradient(135deg, var(--main-theme-blue) 0%, var(--main-theme-dark-blue) 100%); /* Blue gradient for RHS */

    --shadow-elegant: 0 10px 40px rgba(26, 46, 68, 0.1);
    --shadow-royal: 0 20px 60px rgba(26, 46, 68, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 193, 7, 0.3);

    --navbar-height: 50px; 
    
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Myriad Pro'; 
    margin: 0;
    padding: 0;
    background: white; 
    background-attachment: fixed;
    color: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Myriad Pro';
    color: #000000; 
    font-weight: 600; 
    margin-top: 0;
    margin-bottom: 0.8rem; 
    line-height: 1.2;
    font-size: 19px;
}

p {
    font-family: 'Myriad Pro';
    font-size: 19px; 
    line-height: 1.7; 
    color: #000000;
    text-align: left; 
    margin-bottom: 1rem;
}

#banner.new-banner-design {
    background: var(--info-banner-blue); 
    color: var(--text-light); 
    padding: 0;
    display: flex;
    align-items: stretch; 
    justify-content: center;
    height: var(--info-banner-height); 
    min-height: var(--info-banner-height); 
    max-height: var(--info-banner-height); 
    position: relative;
    overflow: hidden;
    margin: 0; 
    width: 100%;
    background-attachment: scroll;
    transform: translateZ(0); 
}

#banner::before {
    content: 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(--info-banner-blue); 
    padding: 0;
    overflow: hidden; 
    transform: translateZ(0);
    will-change: auto;
}

.single-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden; 
    margin: 0;
    padding: 0;
    border: none; 
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.single-image-container:hover {
    transform: none; 
}

.banner-image {
    width: 100%;
    display: block;
    object-fit: cover; 
    object-position: center center; 
    transition: none; 
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    line-height: 0; 
    font-size: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: auto;
    image-rendering: auto;
}

.banner-right-text {
    flex: 1;
    text-align: left; 
    padding: 40px;
    background: var(--main-theme-blue);
    color: var(--text-light) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    font-family: 'Myriad Pro';
    overflow: auto; 
    box-sizing: border-box;
}

.banner-right-text * {
    color: var(--text-light) !important; 
}

.report-title h1 {
    font-size: 29px;
    font-weight: 800;
    margin: 25px 0;
    line-height: 1.1;
    color: var(--text-light) !important; 
    text-shadow: none;
    text-align: left; 
    font-family: 'Myriad Pro';
}

.report-title .highlight {
    color: var(--main-accent-gold) !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: static;
}

.banner-description {
 font-size: 19px !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; 
}

@media (prefers-reduced-motion: no-preference) {
    .banner-image {
        transform: translate3d(0, 0, 0); 
    }
}

.banner-inner-content,
.banner-left-visual,
.single-image-container,
.banner-image {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}


#banner.new-banner-design {
    contain: layout style paint;
    isolation: isolate;
}

.banner-left-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--info-banner-blue);
    z-index: -1;
}

@media (max-width: 768px) {
    #banner.new-banner-design {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
    
    .banner-inner-content {
        flex-direction: column;
    }
    
    .banner-left-visual,
    .banner-right-text {
        flex: none;
        height: 300px;
    }
    
    .report-title h1 {
        font-size: 19px;
    }
    
    .banner-description {
        font-size: 19px;
        max-width: 100%;
    }
}

.content-offset {
    padding-top: calc(var(--header-height) + var(--banner-height));
}

.content-section {
    padding: 100px 20px;
    background: var(--light-bg-section); 
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-block {
    margin-bottom: 3rem;
}

.main-heading {
    font-family: 'Myriad Pro'; 
    font-size: 19px; 
    font-weight: 600; 
    color: #000000; 
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--main-accent-gold); 
    border-radius: 2px;
}

.section-heading {
    font-family: 'Myriad Pro'; 
    font-size: 19px; 
    font-weight: 600; 
    color: #000000;
    margin-bottom: 1.2rem;
    text-align: left; 
    border-left: 5px solid var(--main-accent-gold);
    padding-left: 15px;
}

.section-heading.text-center {
    text-align: center;
    border-left: none; 
    padding-left: 0;
}
.section-heading.text-center::after { 
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--main-accent-gold);
    border-radius: 2px;
}

.image-gallery-section {
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex; 
    flex-direction: column;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px; 
    object-fit: contain; 
    transition: transform 0.3s ease;
    background-color: #fff;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    font-family: 'Myriad Pro';
    padding: 20px;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}


.engagements-section {
    margin-top: 60px;
}

.engagement-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engagement-content p {
    font-family: 'Myriad Pro'; 
    font-size: 19px; 
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left; 
}

.engagement-content p:last-child {
    margin-bottom: 0;
}

.achievements-container-box {
    background: #ffffff; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
    padding: 40px; 
    display: flex; 
    flex-direction: column;
    gap: 30px; 
}

.achievement-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; 
}

.achievement-row.bottom-row {
    justify-content: center; 
    grid-template-columns: repeat(2, minmax(280px, 1fr)); 
    max-width: calc(2 * 280px + 30px);
    margin: 0 auto; 
}

@media (max-width: 1024px) {
    .achievement-row.bottom-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        max-width: 100%; 
        margin: 0;
    }
}


.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 20px;
    border-radius: 15px;
    background: var(--light-bg-section); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.item-image-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light); 
}

.item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.achievement-item p {
    font-family: 'Myriad Pro'; 
    font-size: 19px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    text-align: left; 
}

footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    font-size: 16px;
    font-family: 'Inter', 'Myriad Pro', Arial, sans-serif;
}

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: 16px;
    font-family: 'Myriad Pro';
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
    font-size: 16px;
    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: 16px;
    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: 16px;
    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: 14px;
    font-family:'Myriad Pro';
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ffffff !important;
    font-size: 14px;
    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: 16px;
        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: 16px;
    }

    .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: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 14px;
        padding: 30px 0 20px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .contact-item strong,
    .contact-item p {
        font-size: 14px;
    }

    .footer-link,
    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .new-banner-design {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 2rem;
    }

    .banner-inner-content {
        flex-direction: column; 
        gap: 2rem;
    }

    .banner-left-visual,
    .banner-right-text {
        max-width: 100%;
        text-align: center;
    }

    .report-title h1 {
        text-align: center;
    }

    .title-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-description {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .achievements-container-box {
        padding: 30px
    }
    .achievement-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 20px;
    }
    .achievement-row.bottom-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: calc(2 * 250px + 20px);
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    .main-header.white-header {
        padding: 10px 20px;
        height: 70px;
    }
    .main-header.white-header .logo {
        height: 40px;
    }

    .new-banner-design {
        padding-top: 70px; 
    }

    .report-title h1 {
        font-size: 19px;
    }

    .banner-description {
        font-size: 19px;
    }

    .content-section {
        padding: 3rem 0;
    }

    .main-heading {
        font-size: 19px;
    }

    .section-heading {
        font-size: 19px;
        padding-left: 10px;
    }
    .section-heading.text-center::after { 
        left: 50%;
        transform: translateX(-50%);
    }

    p, .main-content-text, .section-content, .engagement-content p, .achievement-item p {
        font-size: 19px; 
        text-align: left; 
    }

    .gallery-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .gallery-item img {
        height: 180px;
    }

    .achievements-container-box {
        padding: 20px; 
    }
    .achievement-row {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .item-image-wrapper {
        width: 120px; 
        height: 120px;
        margin-bottom: 20px;
    }
    .item-image-wrapper img {
        width: 90px; 
        height: 90px;
    }

    .footer-content {
        grid-template-columns: 1fr;         
        text-align: center;
    }
    .footer-section h3,
    .contact-item,
    .social-links a,
    .footer-section ul li {
        text-align: center;
        justify-content: center; 
    }
    .footer-section p,
    .footer-section li,
    .social-links a,
    .contact-item {
        font-size: 0.85rem;
    }
    .contact-item i {
        margin-right: 0.5rem;
    }
    .footer-bottom p, .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-header.white-header {
        padding: 8px 15px;
        height: 60px;
    }
    .main-header.white-header .logo {
        height: 35px;
    }
    .new-banner-design {
        padding-top: 60px;
    }
    .report-title h1 {
        font-size: 19px;
    }
    .banner-description {
        font-size: 19px;
    }
    .container {
        padding: 0 1rem;
    }
    .main-heading {
        font-size: 19px;
    }
    .section-heading {
        font-size: 19px;
    }
    .engagement-content {
        padding: 25px;
    }
    .achievement-item {
        padding: 15px; 
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid var(--main-accent-gold); 
    outline-offset: 2px;
}


.simple-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-elegant);
}

.simple-carousel .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.simple-carousel .carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; 
    border-radius: 10px;
    overflow: hidden;
}

.simple-carousel .carousel-item img {
    width: 100%;
    height: 350px; 
    object-fit: contain;
    background-color: #fff; 
}

.simple-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.simple-carousel button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.simple-carousel .carousel-prev {
    left: 10px;
}

.simple-carousel .carousel-next {
    right: 10px;
}

.lightbox-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px; 
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.scroll-to-top {
    display: none !important;
}
.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: 14px;
    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; }
}

.conferences-section {
    margin: 40px auto 60px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

   .conference-list-alternating {
    width: 1150px;
    margin: auto;
}


.conference-item {
    display: flex;
    align-items: center;
    gap: 10px;                
    background: #fff;
    border-radius: 22px;      
    padding: 32px;            
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    min-height: 300px;       
    max-width: 1100px;        
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s;
}
.conference-item-visual {
    flex-shrink: 0;
    width: 420px;             
    height: 280px;          
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.11);
    display: flex;
    align-items: stretch;
}
.conference-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.3s;
}
.conference-item-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.conference-item-content h3 {
    font-size: 19px;        
    font-weight: 700;
    margin-bottom: 18px;
    color: #000000;
}
.conference-item-content p {
    font-size: 19px;       
    color: #000000;
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .conference-list-alternating,
    .conference-item {
        max-width: 98vw;
    }
    .conference-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 18px;
        min-height: 120px;
    }
    .conference-item-visual {
        width: 94vw;
        max-width: 100vw;
        height: 200px;
    }
    .conference-item-content {
        min-height: 120px;
        width: 100%;
        text-align: center;
    }
    .conference-item-content h3 {
        font-size: 19px;
        text-align: center;
    }
    .conference-item-content p {
        font-size: 19px;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .conference-item-visual {
        height: 130px;
    }
    .conference-item {
        padding: 10px;
        gap: 10px;
    }
    .conference-item-content h3 {
        font-size: 19px;
    }
    .conference-item-content p {
        font-size: 19px;
    }
}

.event-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}
.event-heading {
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}
.event-date {
    display: block;
    text-align: center;
    color: #000000;
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}
.event-images {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    height: 250px; 
    border-radius: 12px;
    overflow: hidden;
}

.event-images.four-images {
    grid-template-columns: repeat(4, 1fr);
}
.event-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.event-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.event-content p {
    font-family: 'Myriad Pro';
    font-size: 19px;
    font-weight: normal;
    line-height: 1.7;
    color: #000000;
    text-align: left;
    margin-bottom: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .event-images.four-images {
        grid-template-columns: 1fr 1fr;
    }
    .event-images img {
        height: 180px;
    }
}
@media (max-width: 600px) {
    .event-images.four-images {
        grid-template-columns: 1fr;
    }
    .event-images img {
        height: 150px;
    }
}

.major-event-section {
    padding: 0 0 0 0;
}
.major-event-section .section-main-heading {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 0.7em;
    margin-top: 0;
}
.event-images.four-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.event-images.four-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    background: #f5f8fa;
    display: block;
}
.event-content {
    font-size: 19px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    color: #000000;
}
@media (max-width: 1100px) {
    .event-images.four-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 700px) {
    .event-images.four-images {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .event-images.four-images img {
        height: 180px;
    }
}

.gallery-card-equal .event-images {
    display: flex;
    gap: 15px;
    margin: 30px auto;
    justify-content: center;
    align-items: flex-start; /* Changed from stretch to flex-start */
    width: 100%;
    max-width: 1000px;
}

/* Auto-sizing based on number of images */
.gallery-card-equal .event-images.four-images {
    gap: 12px;
}

.gallery-card-equal .event-images.four-images a {
    flex: 1 1 calc(25% - 9px);
    max-width: calc(25% - 9px);
    min-width: 200px;
}

.gallery-card-equal .event-images.three-images a {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    min-width: 250px;
}

.gallery-card-equal .event-images.two-images a {
    flex: 1 1 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
    min-width: 300px;
}

.gallery-card-equal .event-images.one-image a {
    flex: 1 1 100%;
    max-width: 500px;
    min-width: 300px;
}

/* Image styling - FIXED to prevent cutting */
.gallery-card-equal .event-images a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    /* Remove fixed height - let images determine height */
}

.gallery-card-equal .event-images a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* FIXED: Flexible height images */
.gallery-card-equal .event-images img {
    width: 100%;
    height: auto; /* Changed from fixed 220px to auto */
    min-height: 180px; /* Minimum height to maintain consistency */
    max-height: 280px; /* Maximum height to prevent too tall images */
    object-fit: cover;
    object-position: center center; /* Ensure proper centering */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card-equal .event-images a:hover img {
    transform: scale(1.05);
}

/* Alternative approach: Maintain aspect ratio */
.gallery-card-equal .event-images.maintain-aspect a {
    aspect-ratio: 4/3; /* Consistent aspect ratio */
    overflow: hidden;
}

.gallery-card-equal .event-images.maintain-aspect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.gallery-card-equal .event-images.flexible-height img {
    width: 100%;
    height: auto;
    min-height: 160px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .gallery-card-equal .event-images.four-images {
        flex-wrap: wrap;
    }
    
    .gallery-card-equal .event-images.four-images a {
        flex: 1 1 calc(50% - 6px);
        max-width: calc(50% - 6px);
        min-width: 200px;
    }
    
    .gallery-card-equal .event-images.three-images a {
        min-width: 200px;
    }
    
    .gallery-card-equal .event-images img {
        min-height: 160px;
        max-height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery-card-equal .event-images {
        gap: 10px;
        margin: 20px auto;
    }
    
    .gallery-card-equal .event-images.four-images,
    .gallery-card-equal .event-images.three-images {
        flex-wrap: wrap;
    }
    
    .gallery-card-equal .event-images.four-images a,
    .gallery-card-equal .event-images.three-images a {
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
        min-width: 150px;
    }
    
    .gallery-card-equal .event-images.two-images a {
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
        min-width: 150px;
    }
    
    .gallery-card-equal .event-images img {
        min-height: 140px;
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-card-equal .event-images {
        flex-direction: column;
        gap: 8px;
    }
    
    .gallery-card-equal .event-images.four-images a,
    .gallery-card-equal .event-images.three-images a,
    .gallery-card-equal .event-images.two-images a,
    .gallery-card-equal .event-images.one-image a {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: unset;
    }
    
    .gallery-card-equal .event-images img {
        min-height: 180px;
        max-height: 220px;
    }
}

/* Equal height approach (if you prefer uniform heights) */
.gallery-card-equal .event-images.equal-height {
    align-items: stretch;
}

.gallery-card-equal .event-images.equal-height a {
    height: 220px; /* Fixed height for all cards */
    display: flex;
    align-items: center;
}

.gallery-card-equal .event-images.equal-height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* CSS Grid approach for better control */
.gallery-card-equal .event-images.grid-layout {
    display: grid;
    gap: 15px;
    margin: 30px auto;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.gallery-card-equal .event-images.grid-layout.four-images {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-card-equal .event-images.grid-layout.three-images {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-card-equal .event-images.grid-layout.two-images {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-card-equal .event-images.grid-layout.one-image {
    grid-template-columns: 1fr;
    max-width: 500px;
}

.gallery-card-equal .event-images.grid-layout a {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.gallery-card-equal .event-images.grid-layout img {
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: 260px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
}

/* Grid responsive */
@media (max-width: 1100px) {
    .gallery-card-equal .event-images.grid-layout.four-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-card-equal .event-images.grid-layout.three-images,
    .gallery-card-equal .event-images.grid-layout.four-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-card-equal .event-images.grid-layout img {
        min-height: 160px;
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .gallery-card-equal .event-images.grid-layout.four-images,
    .gallery-card-equal .event-images.grid-layout.three-images,
    .gallery-card-equal .event-images.grid-layout.two-images {
        grid-template-columns: 1fr;
    }
    
    .gallery-card-equal .event-images.grid-layout img {
        min-height: 180px;
        max-height: 240px;
    }
}
.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: 0;
    font-size: 19px;
    color: #000000;
    font-weight: 500;
}

.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: var(--main-theme-dark-blue, #1A2E44);
    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);
}