@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: #f5f8fa;
    --text-dark: #000000;
    --text-light: #eceff1; 
    --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;

    --primary-gradient: linear-gradient(135deg, var(--main-theme-dark-blue) 0%, var(--main-theme-blue) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--main-secondary-green) 0%, #1a7833 100%);
    --gold-gradient: linear-gradient(135deg, var(--main-accent-gold) 0%, var(--accent-color-dark) 100%);
    --hero-gradient: linear-gradient(135deg, #8B7CB5 0%, #5A6BA8 100%);

    --ophthalmic-banner-height: 450px;
    --ophthalmic-banner-blue: #42628b; 
    --ophthalmic-banner-gradient: linear-gradient(135deg, var(--main-theme-blue) 0%, var(--main-theme-dark-blue) 100%); /* Adjusted to be blue gradient */
    --ophthalmic-overlay-gradient: linear-gradient(135deg, rgba(59, 107, 168, 0.85) 0%, rgba(26, 46, 68, 0.75) 100%); /* Adjusted for blue overlay if needed */


    --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', 'Myriad', sans-serif;
    font-size: 18px;
    color: #000000;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9ee 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    padding-top: var(--header-height);
}

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', 'Myriad', sans-serif;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

p {
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 1rem;
}


.content-section {
    padding: 1.5rem;
    margin:auto;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 1.5rem;
}


.section-block {
    margin-bottom: 6rem; 
}

.section-spacing {
    margin-bottom: 8rem; 
}

.main-heading {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
   margin: auto;
    text-align: center;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.section-heading {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin:auto;
    text-align: left;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.main-content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    text-align: justify;
    margin: auto;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.section-content {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    text-align: justify;
    margin:auto;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

#banner.new-banner-design {
    background: var(--ophthalmic-banner-blue);
    color: var(--text-light);
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: var(--ophthalmic-banner-height);
    min-height: var(--ophthalmic-banner-height);
    position: relative;
    overflow: hidden;
    margin: 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(--ophthalmic-banner-blue);
    padding: 0;
    overflow: hidden;
    transform: none !important;
    transition: none !important;
}

.single-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transform: none !important; 
    transition: none !important; 
    animation: none !important; 
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.single-image-container:hover {
    transform: none !important; 
}

.banner-image {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: none !important;
    transform: none !important;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    line-height: 0;
    font-size: 0;
    will-change: auto !important;
}

.banner-right-text {
    flex: 1;
    text-align: left;
    padding: 40px;
    background: var(--ophthalmic-banner-gradient);
    color: var(--text-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    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(--text-light);
    text-shadow: none;
    text-align: left;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.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: 18px !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', 'Myriad', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important; 
    opacity: 1 !important; 
    display: block !important; 
    visibility: visible !important; 

}
.infrastructure-gallery {
    margin: 2rem 0 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.product-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    min-height: 350px;
    margin-bottom: 2rem;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    padding: 20px;
    cursor: pointer; 
}

.product-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.product-item.product-reversed {
    flex-direction: row-reverse;
}

.product-image-col img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-heading {
    color: #000000;
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-content {
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    line-height: 1.7;
    color: #000000;
    text-align: left;
    margin: 0;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000; 
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
    color: #333; 
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 10px 10px;
    color: #fff; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2002; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-sizing: border-box;
}

.lightbox-counter-top {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px; 
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 5px;
    color: white;
}

.lightbox-actions {
    display: flex;
    gap: 5px;
}

.lightbox-action-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.lightbox-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    background: transparent;
    color: white; 
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px; 
    transition: color 0.3s ease, transform 0.2s ease;
    margin-left: 10px; 
}

.lightbox-close:hover {
    color: #ff0000;
    transform: scale(1.1);
}

.lightbox-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px; 
    margin-bottom: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(90vh - 120px); 
    object-fit: contain; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-caption {
    margin-top: 15px; 
    font-size: 18px;
    color: #000000;
    text-align: center;
    font-weight: 500;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 18px; 
    line-height: 1;
    border-radius: 50%;
    width: 50px; 
    height: 50px; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 2003; 
}

.lightbox-prev {
    left: -25px; 
}

.lightbox-next {
    right: -25px; 
}

.lightbox-content .lightbox-nav.lightbox-prev {
    left: 10px; 
}
.lightbox-content .lightbox-nav.lightbox-next {
    right: 10px; 
}


.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.rebranding-image-container {
    width: 100%;
    max-width: 750px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border-light);
}

.rebranding-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color-light) 0%, var(--accent-color-dark) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color-light);
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 18px;
    color: var(--accent-color-light);
    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', 'Myriad', sans-serif;
}

.contact-item p {
    margin: 0;
    color: #cbd5e0;
    line-height: 1.5;
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e0;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-color-light);
    transform: translateX(5px);
}

.footer-link i {
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #a0aec0;
    font-size: 18px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
}

@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;
    }

    .footer-link {
        font-size: 18px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 18px;
        padding: 30px 0 20px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .contact-item strong {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 18px;
    }

    .footer-link {
        font-size: 18px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 18px;
    }

} 
.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 !important;
    font-weight: 600;
    font-size: 19px !important;
    font-family: 'Myriad Pro' !important;
    line-height: 1.2;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.nav-item:hover a {
    color: #fff !important;
    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 !important;
    font-weight: 600;
    color: white !important;
    font-family: 'Myriad Pro' !important;
}

body.education-page .education-nav a {
    transform: translateY(-1px);
}

.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; }
}
.conference-list-alternating {
    width: 1150px;
    margin: auto;
}


[data-fancybox="product-gallery"][href*="Phoenix"] img,
[data-fancybox="product-gallery"][href*="Falcon-i"] img {
    max-height: 220px; 
    width: auto;
}

.conference-item {
    display: flex;
    align-items: center; 
    gap: 25px;
    background: var(--bg-white);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--bg-white);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 350px; 
}
.conference-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.conference-item-visual {
    flex-shrink: 0;
    width: 38%;
    max-width: 300px;
    height: 250px; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; 
    background: #fff;
}


.conference-item-visual img {
    width: auto; 
    height: auto; 
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.conference-item:hover .conference-item-visual img {
    transform: scale(1.02);
}

.conference-item-content {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.conference-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
    line-height: 1.3;
}

.conference-item-date {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-theme-blue);
    margin-bottom: 12px;
}

.conference-item-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0;
}

.conference-item.reverse-order {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .conference-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .conference-item.reverse-order {
        flex-direction: column;
    }

    .conference-item-visual {
        width: 100%;
        max-width: 400px;
    }

    .conference-item-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .conference-item {
        padding: 15px;
    }
    
    .conference-item-content h3 {
        font-size: 18px;
    }
}


.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: 18px;
    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: 18px;
    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;
}
.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', 'Myriad', sans-serif;
    font-size: 18px;
    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;
    }
}

.event-images {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.event-images.four-images {
    grid-template-columns: repeat(4, 1fr);
}

.event-images.three-images {
    grid-template-columns: repeat(3, 1fr);
}

.event-images.two-images {
    grid-template-columns: repeat(2, 1fr);
}

.event-images.one-image {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 30px;
}

.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.three-images img {
    height: 280px;
}

.event-images.two-images img {
    height: 320px;
}

.event-images.one-image img {
    height: 350px;
    max-width: 100%;
}

.event-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .event-images.four-images {
        grid-template-columns: 1fr 1fr;
    }
    .event-images.three-images {
        grid-template-columns: 1fr 1fr;
    }
    .event-images.two-images {
        grid-template-columns: 1fr 1fr;
    }
    .event-images.one-image {
        grid-template-columns: 1fr;
    }
    .event-images img {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .event-images.four-images,
    .event-images.three-images,
    .event-images.two-images,
    .event-images.one-image {
        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: 18px;
    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: 18px;
    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;
    }
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--main-accent-gold, #FFD700);
    margin: 18px  27.5rem;
    border-radius: 2px;
    display: block;
}
.section-main-heading + .section-divider {
    margin-top: 0.5rem;
}
.outreach-details-link {
    text-align: right;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.outreach-details-link p {
    margin: 0;
    font-size: 18px;
    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', 'Myriad', sans-serif;
    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: 18px;
}
.footer-download-btn:hover {
    background: #ffcd38;
    color: #000;
    transform: translateY(-2px);
}