:root {
    --health-icon-bg: #ff6b6b;
    --health-badge-bg: #ffecec;
    --health-text-color: #ff6b6b;
    --health-highlight-color: #ff6b6b; 

    --edu-icon-bg: #5cc16b;
    --edu-badge-bg: #e6f9ec;
    --edu-text-color: #5cc16b;
    --edu-highlight-color: #5cc16b; 

    --consult-icon-bg: #4a90e2;
    --consult-badge-bg: #eaf4ff;
    --consult-text-color: #4a90e2;
    --consult-highlight-color: #4a90e2; 

    --research-icon-bg: #805ad5;
    --research-badge-bg: rgba(128, 90, 213, 0.1);
    --research-text-color: #805ad5;
    --research-highlight-color: #805ad5; 

    --supplies-icon-bg: #d69e2e;
    --supplies-badge-bg: rgba(214, 158, 46, 0.1);
    --supplies-text-color: #d69e2e;
    --supplies-highlight-color: #d69e2e; 

    --tech-icon-bg: #319795;
    --tech-badge-bg: rgba(49, 151, 149, 0.1);
    --tech-text-color: #319795;
    --tech-highlight-color: #319795;

    --awards-icon-bg: #dd6b20;
    --awards-badge-bg: rgba(221, 107, 32, 0.1);
    --awards-text-color: #dd6b20;
    --awards-highlight-color: #dd6b20; 

    --events-icon-bg: #e53e3e;
    --events-badge-bg: rgba(229, 62, 62, 0.1);
    --events-text-color: #e53e3e;
    --events-highlight-color: #e53e3e; 

    --accent-color-light: #ffc107;
    --accent-color-dark: #ffcd38;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --dark-text: #333;
    --black-heading: #1a202c; 
    --banner-height: 540px; 
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Regular.woff') format('woff'), 
         url('fonts/MyriadPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Bold.woff') format('woff'), 
         url('fonts/MyriadPro-Bold.ttf') format('truetype'); 
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
    margin: 0;
    padding: 0;
    background: linear-gradient rgba(0, 0, 0, 0.4);
    background-attachment: fixed;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 18px;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: rgba(255, 255, 255, 0.068);
    color: #ffffff;
    padding: 20px;
    box-shadow: -4px 0 20px rgba(248, 248, 248, 0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

#nav.open {
    right: 0;
}

.nav-close {
    margin-bottom: 20px;
    text-align: right;
}

.nav-close i {
    font-size: 1.8rem;
    cursor: pointer;
    color: #a0aec0;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-close i:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.nav-brand {
    text-align: center;
    margin-bottom: 30px;
}

.nav-logo {
    max-width: 150px;
    height: auto;
}

.nav-menu-heading {
    margin-bottom: 15px;
    padding-left: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.nav-menu-heading h3 {
    font-size: 20px; 
    color: #a0aec0;
    font-weight: 600;
    margin: 0;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

#nav ul {
    flex-grow: 1;
    overflow-y: auto;
}

#nav ul li {
    margin-bottom: 8px;
}

#nav ul li a {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    color: #e2e8f0;
    font-size: 18px; 
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

#nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

#nav ul li a:hover::before {
    left: 100%;
}

#nav ul li a i {
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--accent-color-light);
    transition: transform 0.3s ease;
}

#nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(8px);
}

#nav ul li a:hover i {
    transform: scale(1.2);
}

.nav-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 0;
    border-radius: 0;
}
.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff; 
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-toggle {
        width: 28px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .nav-toggle {
        display: flex !important;
        width: 26px;
        height: 16px;
    }
    
    .hamburger-line {
        height: 2px;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    display: none;
    transition: opacity 0.4s ease;
    opacity: 0;
    backdrop-filter: blur(5px);
}

.overlay.active {
    display: block;
    opacity: 1;
}
.main-header {
    background: linear-gradient(135deg, #303030 0%, #303030 100%);
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
}

.main-header.white-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.header-logo .logo {
    height: 100%; 
    width: 420px;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-logo .logo:hover {
    transform: scale(1.05);
    filter: brightness(1.4) contrast(1.3) saturate(1.2);
}
#banner.new-banner-design {
    display: flex;
    align-items: center;
    justify-content: center;
    
   
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.02"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.banner-inner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    margin: 0;
    width: 100%;
    gap: 0px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.banner-left-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 540px; /* Increased from 500px */
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 0;
}


.single-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: none;
    transform: none;
    transition: none;
    animation: none;
}

.single-image-container:hover {
    transform: none;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: none;
}

.banner-right-text {
    flex: 1;
    text-align: left;
    padding: 50px 40px; /* Increased top/bottom padding from 40px */
    background: linear-gradient(135deg, #6a93b8 60px, #3b7191 40%);
    color: #ffffff;
    height: 540px; /* Increased from 500px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Myriad Pro';
}

.report-title h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    color:#ffd700;
    text-shadow: none;
    text-align: left;
    font-family: 'Myriad Pro';
}

.date-span {
    display: block;
    font-size: 2.4rem;
    font-weight: 400;
    color: #e6f3ff;
    margin-top: 10px;
    line-height: 1.2;
}

.title-underline {
    width: 400px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    margin: 20px 0 30px 0;
    border-radius: 5px;
}

.aravind-system-info {
    margin: 4px;
}

.aravind-system-info h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.system-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-list li {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.5;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.banner-description {
    display: none;
}

@media (max-width: 768px) {
    .banner-right-text {
        padding: 30px 20px;
        text-align: center;
    }
    
    .report-title h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .date-span {
        font-size: 1.8rem;
    }
    
    .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .aravind-system-info h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .system-list li {
        font-size: 1rem;
        text-align: center;
    }
    
    .tagline p {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .report-title h1 {
        font-size: 1.8rem;
    }
    
    .date-span {
        font-size: 1.4rem;
    }
    
    .aravind-system-info h2 {
        font-size: 1.1rem;
    }
    
    .system-list li {
        font-size: 0.9rem;
    }
    
    .tagline p {
        font-size: 1rem;
    }
}

#navigation-menu {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; 
}

.section-header h2 {
    font-size: 2.5rem; 
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

.section-header p {
    font-size: 20px; 
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}


.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.card-container {
    position: relative;
    height: 100%;
}

.modern-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-card.highlighted {
    animation: fadeInSlideUp 0.8s ease-out forwards;
    opacity: 1 !important; 
    transform: translateY(0) !important; 
    border: 3px solid transparent; 
}

.healthcare-card.highlighted {
    border-color: var(--health-text-color);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
}
.education-card.highlighted {
    border-color: var(--edu-text-color);
    box-shadow: 0 10px 40px rgba(92, 193, 107, 0.4);
}
.consultancy-card.highlighted {
    border-color: var(--consult-text-color);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.4);
}
.research-card.highlighted {
    border-color: var(--research-text-color);
    box-shadow: 0 10px 40px rgba(128, 90, 213, 0.4);
}
.supplies-card.highlighted {
    border-color: var(--supplies-text-color);
    box-shadow: 0 10px 40px rgba(214, 158, 46, 0.4);
}
.tech-card.highlighted {
    border-color: var(--tech-text-color);
    box-shadow: 0 10px 40px rgba(49, 151, 149, 0.4);
}
.awards-card.highlighted {
    border-color: var(--awards-text-color);
    box-shadow: 0 10px 40px rgba(221, 107, 32, 0.4);
}
.events-card.highlighted {
    border-color: var(--events-text-color);
    box-shadow: 0 10px 40px rgba(229, 62, 62, 0.4);
}


@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 18px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.card-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.card-content h3 {
    font-size: 20px; 
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: left;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

.card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-size: 18px; 
    font-family: 'Myriad Pro', 'Myriad', sans-serif;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.explore-text {
    font-weight: 600;
    font-size: 18px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Myriad Pro', 'Myriad', sans-serif; 
}

.card-footer i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.modern-card:hover .card-footer i {
    transform: translateX(5px);
}

.healthcare-badge {
    background-color: var(--health-badge-bg);
    color: var(--health-text-color);
}

.healthcare-footer {
    color: var(--health-text-color);
}
.education-badge {
    background-color: var(--edu-badge-bg);
    color: var(--edu-text-color);
}

.education-footer {
    color: var(--edu-text-color);
}
.consultancy-badge {
    background-color: var(--consult-badge-bg);
    color: var(--consult-text-color);
}

.consultancy-footer {
    color: var(--consult-text-color);
}

.research-badge {
    background-color: var(--research-badge-bg);
    color: var(--research-text-color);
}

.research-footer {
    color: var(--research-text-color);
}

.supplies-badge {
    background-color: var(--supplies-badge-bg);
    color: var(--supplies-text-color);
}

.supplies-footer {
    color: var(--supplies-text-color);
}



.tech-badge {
    background-color: var(--tech-badge-bg);
    color: var(--tech-text-color);
}

.tech-footer {
    color: var(--tech-text-color);
}



.awards-badge {
    background-color: var(--awards-badge-bg);
    color: var(--awards-text-color);
}

.awards-footer {
    color: var(--awards-text-color);
}


.events-badge {
    background-color: var(--events-badge-bg);
    color: var(--events-text-color);
}

.events-footer {
    color: var(--events-text-color);
}

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%);
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    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: 1.2rem;
    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: 1.1rem;
    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;
}

/* 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;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .report-title h1 {
        font-size: 1.8rem; 
    }
    
    .banner-description {
        font-size: 14px; 
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 14px; 
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-content h3 {
        font-size: 16px; 
    }
    
    .card-content p {
        font-size: 14px; 
    }
    
    .card-badge {
        font-size: 14px; 
    }
    
    .explore-text {
        font-size: 14px; 
    }

    footer {
        font-size: 14px;
    }
   
    .contact-item strong {
        font-size: 14px; 
    }
    .contact-item p {
        font-size: 14px; 
    }
    .social-links a,
    .footer-links a,
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 14px; 
    }
}


html {
    scroll-behavior: smooth;
}


.modern-card:focus,
.nav-toggle:focus,
#nav ul li a:focus {
    outline: 2px solid var(--accent-color-light);
    outline-offset: 2px;
}


.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
 .animated-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .animated-icon img.flaticon-animated {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    
    .modern-card:hover .animated-icon img.flaticon-animated {
      transform: scale(1.1);
      animation: iconPulse 2s infinite;
    }
    
    @keyframes iconPulse {
      0%, 100% { transform: scale(1.1); }
      50% { transform: scale(1.2); }
    }
    
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
    }
    
    @keyframes iconRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Specific animations for each card type */
    .healthcare-card .animated-icon {
      animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }
    
    .education-card .animated-icon {
      animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }
    
    .research-card .animated-icon {
      animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }

    .consultancy-badge.animated-icon{
        animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }

    .research-badge.animated-icon{
        animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }

    .opthalmology-card.animated-icon{
        animation: iconFloat 2.5s ease-in-out infinite 0.5s;
    }
    
    .tech-card .animated-icon {
      animation: iconFloat 2s ease-in-out infinite 0.5s;
    }
    .awards-card.animated-icon{
        animation:iconFloat 2.5s ease-in-out infinite 0.5s;
    }
    .events-badge.animated-icon{
        animation:iconFloat 2.5s ease-in-out infinite 0.5s;
    }
    .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);
}

