@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: #334155;
    --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%);

    --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); 

    --heading-color: var(--main-theme-dark-blue); 
    --banner-height: 450px; 
    --navbar-height:60px;
    --banner-gradient-blue: linear-gradient(135deg, #0f4c81 0%, #3498db 100%); 
    --banner-gradient-patientcare: linear-gradient(135deg, #0e5b92 0%, #2f8bd3 100%); 


    --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); 

    --header-height: 80px;
    --heading-color: var(--main-theme-dark-blue); 
    --bg-white: #ffffff;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.15);
    --patientcare-card-shadow: var(--shadow-light); 
    --patientcare-primary: #3b6ba8; 

}


@font-face {
    font-family: 'Myriad Pro';
    src: local('Myriad Pro Regular'), local('MyriadPro-Regular');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: local('Myriad Pro Bold'), local('MyriadPro-Bold');
    font-weight: bold;
    font-style: normal;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    font-family: 'Myriad Pro';
    margin: 0;
    padding: 0;
    background-color: white;
    background-attachment: fixed;
    color: black !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 19px !important;
}

body.no-scroll {
    overflow: hidden;
}
a {
    text-decoration: none;
    color: #ffd700;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Myriad Pro' !important;
    color: black !important;
    font-weight: 600; 
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: 19px !important;
}

/* All text elements consistent styling */
p,li, td, th, label, input, textarea, select {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
}

.content-offset {
    padding-top: 0 !important;
}


.hero-banner {
    height: 500px;
    min-height: 500px;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000; 
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content-integrated {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%; 
    width: 100%;
}

.hero-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    height: 100%; 
    min-height: unset; 
}

.hero-image-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    background: #000000; 
}

.hero-integrated-image {
    width: 100%;
    height: 108%; 
    min-height: unset; 
    object-fit: cover; 
    object-position: center center; 
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; 
}

.hero-text-right {
    color: #ffffff;
    text-align: left;
    padding: 2rem; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--banner-gradient-patientcare); 
    position: relative;
    z-index: 2;
    box-sizing: border-box; 
}

.hero-title-group {
    margin: 1.5rem;
}

.hero-title {
    font-family: 'Myriad Pro' !important;
    font-size: 2.8rem !important;
    font-weight: 700;
    color: #ffc107 !important;
    margin: 1rem;
    line-height: 1.1; 
    text-align: center;
    word-wrap: break-word; 
}

.hero-subtitle {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 400;
    color: rgba(245, 245, 245, 0.95) !important;
    line-height: 1.4;
    margin: 1.5rem;
    text-align: center;
    max-width: 100%; 
    word-wrap: break-word; 
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; 
    margin: 20px; 
    max-width: 100%;
}

.hero-stat-box {
    background: white; 
    backdrop-filter: blur(0);
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 12px;
    padding: 20px 15px; 
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    box-sizing: border-box; 
}

.hero-stat-box:hover {
    transform: translateY(-3px); 
    background: #f9f9f9; 
    border-color: var(--accent-color-dark); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
}

.stat-number {
    font-family: 'Myriad Pro' !important;
    font-size: 28px !important;
    font-weight: bold;
    color: var(--main-theme-dark-blue) !important;
    line-height: 1.1; 
    margin: 5px;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.stat-label {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 500;
    color: black !important;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
    line-height: 1.2; 
}

.banner-button {
    display: inline-block; 
    background: var(--main-accent-gold); 
    color: var(--main-theme-dark-blue); 
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    padding: 12px 25px;
    border-radius: 8px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px; 
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center; 
    border: none; 
    cursor: pointer;
    max-width: fit-content;
}

.banner-button:hover {
    background: var(--accent-color-dark); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--main-theme-dark-blue); 
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--main-accent-gold, #FFD700);
    margin: 0 auto 2.5rem auto;
    border-radius: 2px;
    display: block;
}
.section-main-heading + .section-divider {
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .hero-layout-grid {
        grid-template-columns: 1fr;
        height: auto; 
        min-height: 550px; 
    }
    
    .hero-image-left {
        order: 1;
        height: 280px; 
        min-height: unset; 
    }
    
    .hero-integrated-image {
        height: 100%; 
        min-height: unset; 
        object-position: center center;
    }
    
    .hero-text-right {
        order: 2;
        text-align: center;
        padding: 1.5rem; 
        background: var(--banner-gradient-patientcare); 
        height: auto;
        min-height: 270px; 
    }
    
    .hero-title-group {
        text-align: center;
        margin: 1rem; 
    }
    
    .hero-title {
        text-align: center;
        font-size: 2.4rem !important;
        margin: 0.8rem; 
    }
    
    .hero-subtitle {
        text-align: center; 
        margin: 1rem; 
    }
    
    .hero-stats-grid {
        gap: 12px; 
        margin: 15px;
    }
    
    .hero-stat-box {
        padding: 16px 12px;
        min-height: 85px; 
    }
    
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 19px !important;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto; 
        min-height: 500px; 
    }
    
    .hero-layout-grid {
        min-height: 500px; 
    }
    
    .hero-image-left {
        height: 240px; 
        min-height: unset;
    }
    
    .hero-integrated-image {
        min-height: unset;
        object-position: center center; 
    }
    
    .hero-text-right {
        padding: 1.5rem 1rem; 
        background: var(--banner-gradient-patientcare);
        min-height: 260px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        text-align: center;
        margin: 0.6rem; 
    }
    
    .hero-subtitle {
        font-size: 19px !important;
        text-align: center;
        margin: 0.8rem; 
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px; 
        max-width: 280px; 
        margin: 15px auto; 
    }
    
    .stat-number {
        font-size: 22px !important;
    }
    
    .stat-label {
        font-size: 19px !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 450px; 
    }
    
    .hero-layout-grid {
        min-height: 450px;
    }
    
    .hero-image-left {
        height: 200px; 
    }
    
    .hero-text-right {
        padding: 1rem 0.8rem; 
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin: 0.5rem; 
    }
    
    .hero-subtitle {
        font-size: 19px !important;
        margin: 0.7rem; 
    }
    
    .hero-stat-box {
        padding: 14px 10px; 
        min-height: 75px; 
    }
    
    .stat-number {
        font-size: 20px !important;
    }
    
    .stat-label {
        font-size: 19px !important;
    }
}
section {
    padding: 1.5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-full-width {
    padding: 3rem 0;
    background: var(--light-bg-section);
}

.section-main-heading {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 700;
    color: black !important;
    text-align: center;
    position: relative;
    padding: 1rem;
}

.section-intro-text {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    line-height: 1.6;
    color: black !important;
    margin: 1.5rem;
    text-align: left;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--main-accent-gold, #FFD700);
    margin: 0 auto 2.5rem auto;
    border-radius: 2px;
    display: block;
}


.performance-new-section {
    background: linear-gradient(135deg, var(--light-bg-section) 0%, #ffffff 100%);
    padding: 4rem 0;
}

.performance-block {
    margin: 22.3px;

}

.performance-heading {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    text-align: center;
    margin: 1.8rem;
}
.performance-content-grid {
    display: flex;
    flex-direction: column; 
    gap: 0.8rem;
    background: white;
    padding: 0.8rem; 
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(26, 46, 68, 0.07);
    border: 1px solid var(--border-light);
    overflow: hidden; 
}

.performance-heading-card {
    text-align: center;
    padding: 1.5rem;
    margin: 1.5rem;
    background: white;
    border-bottom: 2px solid var(--border-light);
}

.performance-heading-in-card {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 700;
    color: black !important;
    margin: 0;
}

.performance-image {
    flex-shrink: 0;
    width: 180px;
    height: auto;
}

.performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.performance-calculations {
    padding: 0.9rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.calculation-item {
    text-align: center;
    padding: 0.9rem;
    background: var(--light-bg-section);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-light);
}

.calculation-item.math-operator-centered {
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.calculation-item:not(.total) .calc-number {
    color: var(--main-theme-dark-blue);
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.18));
    text-shadow: 0 0 1.5px rgba(255, 193, 7, 0.08);
}

.calculation-item.total {
    background: var(--primary-gradient);
    color: white;
    grid-column: 1 / -1;
    padding: 1.2rem;
}
.calculation-item.total .calc-number,
.calculation-item.total .calc-label {
    color: white !important;
}

.calc-number {
    font-family: 'Myriad Pro' !important;
    display: block;
    font-size: 19px !important;
    font-weight: 800;
    margin: 0.3rem;
    color: black !important;
}

.calc-label {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

.performance-block {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .performance-heading-in-card {
        font-size: 19px !important;
    }
    
    .performance-calculations {
        padding: 1.5rem;
    }
    
    .calc-label {
        font-size: 19px !important;
    }
}

.text-lg {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
}

.text-bold {
    font-family: 'Myriad Pro' !important;
    font-weight: 700;
    color: black !important;
}
.total-surgeries-highlighted {
    background-color: #67afccbe; 
   
}
.image-caption:hover,
.image-caption-3col:hover {
    color: var(--main-theme-dark-blue); 
    text-decoration: underline;
}

.map-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 1.2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.outreach-camps-section {
    background: linear-gradient(135deg, var(--light-bg-section) 0%, #eef1f4 100%);
    padding: 2.5rem 0;
}
.outreach-camps-section h3 {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    margin: 1.2rem 0 0.8rem 0;
    text-align: center;
}

.primary-care-delivery-section {
    background: white;
    padding: 2.5rem 0;
}

.content-image-grid {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    margin: 1.2rem;
}

.content-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.content-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.content-text {
    flex: 1;
    max-width: 55%;
    line-height: 1.6;
    color: black !important;
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    order: 2;
}

.content-text ul {
    margin-top: 0.5rem;
    list-style-type: disc;
    padding-left: 1.2rem;
}

.content-text ul li {
    font-family: 'Myriad Pro' !important;
    margin: 0.3rem;
    font-size: 19px !important;
    color: black !important;
}
.global-outreach-section {
    background: linear-gradient(135deg, #eef1f4 0%, var(--light-bg-section) 100%);
    padding: 2.5rem 0;
}

.eye-bank-table-section {
    padding: 1.5rem ;
    background-color: var(--light-bg-section);
}

.eye-bank-content-layout {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.eye-bank-image-rhs {
    flex: 1 1 48%;
    min-width: 350px;
    max-width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(26, 46, 68, 0.07);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
}

.eye-bank-image-rhs .eye-bank-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.eye-bank-table-wrapper {
    flex: 1 1 48%;
    min-width: 350px;
    max-width: 50%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(26, 46, 68, 0.07);
    border: 1px solid var(--border-light);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  position: relative;
}


.eye-bank-table-wrapper canvas {
    width:82% !important;
    height:336px !important;
}
.chart-title {
  font-family: 'Myriad Pro' !important;
  font-size: 19px !important;
  font-weight: 700;
  color: black !important;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.comment-box {
  width: 100%;
  margin-top: 9rem;
  padding: 1rem 1.25rem;
  background-color: #f9f9f9;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: var(--shadow-elegant);
  font-family: 'Myriad Pro' !important;
}

.comment-box h3 {
  font-family: 'Myriad Pro' !important;
  font-size: 19px !important;
  margin-bottom: 0.75rem;
  color: black !important;
}

.comment-note {
  font-family: 'Myriad Pro' !important;
  font-size: 19px !important;
  color: black !important;
  margin: 0;
}
.corner-insight {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background-color: #f9f9f9;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: var(--shadow-elegant);
  padding: 0.75rem 1rem;
  max-width: 240px;
  font-family: 'Myriad Pro' !important;
}

.corner-insight h3 {
  font-family: 'Myriad Pro' !important;
  font-size: 19px !important;
  margin-bottom: 0.5rem;
  color: black !important;
}

.corner-insight .comment-note {
  font-family: 'Myriad Pro' !important;
  font-size: 19px !important;
  color: black !important;
}


.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;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-header {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.lightbox-title {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 700;
    color: black !important;
    margin: 0;
}

.lightbox-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: calc(90vh - 100px); 
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    border-radius: 8px;
}

.lightbox-caption {
    margin-top: 15px; 
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display:none;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 2001; 
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    background: transparent;
    color: #ccc;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.7);
    color: white;
    transform: scale(1.1);
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 992px) {
    .eye-bank-content-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .eye-bank-image-rhs,
    .eye-bank-table-wrapper {
        max-width: 90%;
        min-width: unset;
    }

    .eye-bank-image-rhs .eye-bank-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .main-header.fixed-banner {
        padding: 10px 20px;
    }
    .main-header.fixed-banner .logo {
        height: 40px;
    }

    /* Override all media query font sizes to maintain 19px */
    .hero-subtitle, .explore-button, .explore-button i, .scroll-text, .stat-label, .section-intro-text, .calc-label, .text-lg,
    .infrastructure-new-section h3, .outreach-camps-section h3, .primary-care-delivery-section .new-vision-centers-heading,
    .image-caption, .image-caption-3col, .content-text, .content-text ul li {
        font-family: 'Myriad Pro' !important;
        font-size: 19px !important;
        color: black !important;
    }
}

/* FOOTER SECTION - Keep original white text colors */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff !important;
    padding: 60px 0 20px;
    position: relative;
    font-size: 18px;
    font-family: 'Myriad Pro' !important;
}

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: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color-light) !important;
    font-family: 'Myriad Pro' !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color-light) !important;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff !important;
    font-size: 18px;
    font-family: 'Myriad Pro' !important;
}

.contact-item p {
    margin: 0;
    color: #cbd5e0 !important;
    line-height: 1.5;
    font-size: 18px;
    font-family: 'Myriad Pro' !important;
}

.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 !important;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 18px;
    font-family: 'Myriad Pro' !important;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-color-light) !important;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #a0aec0 !important;
    font-size: 18px;
    font-family: 'Myriad Pro' !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
}

@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;
    }

    .footer-link {
        font-size: 16px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 14px;
        padding: 30px 0 20px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .contact-item strong {
        font-size: 14px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .footer-link {
        font-size: 14px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* Continue with responsive design for main content */
@media (max-width: 768px) {
    .hero-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .hero-text-right {
        text-align: center;
    }
    .hero-title-group {
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-left {
        order: 1;
    }
    .hero-text-right {
        order: 2;
    }

    .performance-content-grid {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    .performance-image {
        width: 120px;
    }
    .performance-calculations {
        grid-template-columns: 1fr;
    }
    .calculation-item {
        padding: 0.7rem;
    }
    .calculation-item.math-operator-centered {
        font-size: 1.8rem;
    }
    .calc-number {
        font-size: 19px !important;
    }
    .image-gallery-4-cols,
    .image-gallery-3-cols {
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }
    .image-gallery-4-cols .image-item img,
    .image-gallery-3-cols .image-item img,
    .image-gallery-4-cols .image-item-3col img,
    .image-gallery-3-cols .image-item-3col img {
        height: 180px; 
        aspect-ratio: 1 / 0.7; 
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    .content-image-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .content-image, .content-text {
        max-width: 100%;
        text-align: center;
    }
    .content-text ul {
        text-align: left;
        padding-left: 2rem;
    }
    .map-image {
        max-width: 80%;
    }

    .eye-bank-content-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .eye-bank-image-rhs, .eye-bank-table-wrapper {
        max-width: 100%;
        min-width: unset;
    }
    .eye-bank-image-rhs .eye-bank-image {
        max-width: 95%;
    }

    .lightbox-content {
        padding: 15px;
        max-width: 95%;
        max-height: 95vh;
    }
    .lightbox-title {
        font-size: 19px !important;
    }
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
    }
    .lightbox-prev:hover, .lightbox-next:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin: 20px auto;
    }
    .explore-button {
        padding: 0.7rem 1.5rem;
        font-size: 19px !important;
        font-family: 'Myriad Pro' !important;
    }
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    .scroll-text {
        font-size: 19px !important;
        font-family: 'Myriad Pro' !important;
        color: black !important;
    }
    .calc-number {
        font-size: 19px !important;
    }
    .calc-label {
        font-size: 19px !important;
    }
    section {
        padding: 2.5rem 0;
    }
    .container {
        padding: 0 1rem;
    }
    .section-main-heading {
        font-size: 19px !important;
        margin: 1rem;
    }
    .lightbox-content {
        padding: 10px;
    }
    .lightbox-title {
        font-size: 19px !important;
    }
    .lightbox-caption {
        font-size: 19px !important;
    }
    .lightbox-close {
        top: 5px;
        right: 5px;
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }
    .lightbox-prev, .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
.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; }
}
.conferences-section {
    margin: 40px auto 60px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.conference-list-alternating {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1100px;       
    margin: 0 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: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;        
}
.conference-item-content h3 {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;          
    font-weight: 700;
    margin-bottom: 18px;
    color: black !important;
}
.conference-item-content p {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
}

@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: left;
    }
    .conference-item-content h3 {
        font-size: 19px !important;
        text-align: center;
    }
    .conference-item-content p {
        font-size: 19px !important;
        text-align: left;
    }
}
@media (max-width: 500px) {
    .conference-item-visual {
        height: 130px;
    }
    .conference-item {
        padding: 10px;
        gap: 10px;
    }
    .conference-item-content h3 {
        font-size: 19px !important;
    }
    .conference-item-content p {
        font-size: 19px !important;
    }
}

.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' !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
}
.event-heading {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 600;
    color: black !important;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}
.event-date {
    display: block;
    text-align: center;
    color: black !important;
    font-size: 19px !important;
    margin: 25px;
    font-weight: 500;
    font-family: 'Myriad Pro' !important;
}
.event-images {
    display: grid;
    gap: 15px;
    margin: 30px;
    align-items: center;
    justify-content: center;
}

.event-images.one-image {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 30px auto;
}

.event-images.two-images {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 30px auto;
}

.event-images.three-images {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 30px auto;
}

.event-images.four-images {
    grid-template-columns: repeat(4, 1fr);
}
.event-content p {
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: normal;
    line-height: 1.7;
    color: black !important;
    text-align: left;
    margin: 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-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    font-weight: 700;
    color: black !important;
    text-align: center;
    margin: 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: 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-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    text-align: left;
    max-width:1053px;
    margin: 0 auto;
}
@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;
    }
}


/* Base gallery container */
.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 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: 20px;
    padding: 20px;
    border-top: 2px solid #e5e7eb;
    font-family: 'Myriad Pro' !important;
}

.outreach-details-link p {
    margin: 0;
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    color: black !important;
    font-weight: 500;
}

.details-link {
    color: #2563eb !important;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Myriad Pro' !important;
    font-size: 19px !important;
    transition: color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
    border-bottom: 2px solid transparent;
}

.details-link:hover {
    color: #1d4ed8 !important;
    border-bottom: 2px solid #2563eb;
}

.footer-download-btn {
    display: inline-block;
    background: var(--main-accent-gold, #FFC107);
    color: var(--main-theme-dark-blue, #1A2E44) !important;
    font-family: 'Myriad Pro' !important;
    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;
    color: var(--main-theme-dark-blue, #1A2E44) !important;
}

.footer-download-btn:hover {
    background: #ffcd38;
    color: #000 !important;
    transform: translateY(-2px);
}

.footer-download-btn:hover i {
    color: #000 !important;
}images.four-images {
        flex-wrap: wrap;
    }
    
