:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: var(--dark);
    padding: 10px 0;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-md img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-donate {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-donate:hover {
    background-color: #ff4a3d;
}

/*** About Hero Section ***/
.about-hero {
    position: relative;
    height: 60vh;
    background: url('images/about-1.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-hero .btn-primary,
.about-hero .btn-secondary {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.about-hero .btn-primary {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
}

.about-hero .btn-primary:hover {
    background-color: #ff4a3d;
}

.about-hero .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
}

.about-hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

/*** Mission and Vision Section ***/
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.mission,
.vision {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission:hover,
.vision:hover {
    transform: translateY(-10px);
}

.mission .icon,
.vision .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.mission h2,
.vision h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.mission p,
.vision p {
    font-size: 1.2rem;
    color: var(--dark);
}

/*** How We Work Section ***/
.how-we-work {
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.how-we-work h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.work-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
}

.work-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.work-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.work-item p {
    font-size: 1rem;
    color: var(--dark);
    max-width: 600px;
}

/*** Journey Timeline Section ***/
.our-journey {
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.our-journey h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.milestone {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.milestone:hover {
    transform: translateY(-10px);
}

.milestone h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.milestone img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.milestone p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Core Values Section ***/
.core-values {
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.core-values h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.value {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value:hover {
    transform: translateY(-10px);
}

.value h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.value p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Impact Statistics Section ***/
.impact {
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.impact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Research Focus Areas Section ***/
.focus-areas {
    padding: 50px 20px;
    background-color: var(--light);
    text-align: center;
}

.focus-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.area {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.area:hover {
    transform: translateY(-10px);
}

.area img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.area h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.area p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Call to Action Section ***/
.get-involved {
    padding: 50px 20px;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.get-involved h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.get-involved p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary,
.cta-secondary {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Ensure no underline */
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.cta-primary {
    background-color: white;
    color: var(--primary);
    text-decoration: none; /* Remove underline */
}

.cta-primary:hover {
    background-color: var(--light);
    color: var(--primary-dark); /* Optional: Slightly darker shade on hover */
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none; /* Remove underline */
}

.cta-secondary:hover {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary-dark); /* Optional: Darken the border on hover */
}


/*** Footer ***/
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-item {
    flex: 1;
    min-width: 200px;
}

.footer-item img {
    margin-bottom: 10px;
}

.footer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-item p,
.footer-item ul,
.footer-item form {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: 5px;
}

.footer-item ul a {
    color: white;
    text-decoration: none;
}

.footer-item ul a:hover {
    color: var(--primary);
}

.footer-item form {
    display: flex;
    flex-direction: column;
}

.footer-item input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-item button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
}

.footer-item button:hover {
    background-color: #ff4a3d;
}

.footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer-social a img {
    width: 30px;
    height: 30px;
}

.footer-social a:hover {
    color: var(--primary);
}
/* Remove underline from footer quick links */
.footer-nav a {
    text-decoration: none;
}

/* Add hover effect for better user experience (optional) */
.footer-nav a:hover {
    text-decoration: none; /* You can replace this with any desired effect */
}
