body {
    font-family: 'Poppins', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #003087; /* Dark blue text */
    line-height: 1.7;
    background: linear-gradient(to bottom, #F5F9FF, #E6F0FA); /* Light blue gradient */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-header {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, #F5F9FF 60%, #E6F0FA 100%); /* Blue gradient */
    color: #003087; /* Dark blue text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 123, 255, 0.1), transparent); /* Light blue tint */
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #007BFF; /* Bright blue */
    margin-right: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar .logo:hover {
    color: #0056B3; /* Medium blue */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links a {
    color: #007BFF; /* Bright blue */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ffffff;
    background: #007BFF; /* Bright blue hover */
}

.hero-content h1 {
    font-size: 3em;
    margin: 0 0 12px;
    color: #0056B3; /* Medium blue */
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3em;
    font-weight: 400;
    color: #003087; /* Dark blue */
    max-width: 650px;
    margin-bottom: 20px;
}

.section {
    padding: 60px 0;
}

.section.alternate-bg {
    background: #E6F0FA; /* Light blue */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1100px;
}

.section-title {
    font-size: 2.2em;
    text-align: left;
    margin-bottom: 30px;
    color: #0056B3; /* Medium blue */
    border-bottom: 3px solid #007BFF; /* Bright blue underline */
    padding-bottom: 10px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0056B3; /* Medium blue accent */
}

.card {
    background: #ffffff;
    color: #003087; /* Dark blue text */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #007BFF; /* Bright blue border */
    min-height: 200px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.15); /* Blue shadow */
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    max-width: 150px;
    max-height: 150px;
}

.team-card h3 {
    margin: 0 0 10px;
    font-size: 1.3em;
    font-weight: 600;
}

.team-card p {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

footer {
    background: linear-gradient(to top, #E6F0FA, #0056B3); /* Blue gradient */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 30px 0;
    font-size: 1em;
    border-top: 1px solid #E6F0FA; /* Light blue border */
}

.section-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #003087; /* Dark blue */
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    max-width: 100%;
}

.timeline {
    position: relative;
    padding: 1.5em 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #007BFF, #E6F0FA); /* Blue gradient */
    left: 25px;
}

.timeline-item {
    margin-bottom: 1.5em;
    position: relative;
    margin-left: 50px;
}

.timeline-item h3 {
    margin-bottom: 0.4em;
    color: #0056B3; /* Medium blue */
    font-size: 1.2em;
    font-weight: 600;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -13px;
    width: 12px;
    height: 12px;
    background: #007BFF; /* Bright blue dot */
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
}

.link-text a, .contact-list li a {
    color: #007BFF; /* Bright blue */
    text-decoration: none;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.link-text a:hover, .contact-list li a:hover {
    color: #ffffff;
    background: #007BFF; /* Bright blue hover */
}

.news-item {
    margin-bottom: 20px;
}

.news-item h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #0056B3; /* Medium blue */
    margin-bottom: 5px;
}

.funding-logo {
    max-width: 300px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.funding-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    max-width: 100px;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}