/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /* line-height: 1.6; */
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: #00509e;
}

/* Header Section */
.header {
    position: relative;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;

    /* ========================= */
    /* MODIFICATION: 06/02/2025  */
    /* ========================= */
    /* New for Hamburger Icon    */
    /* Menu for phone.           */
    /* ========================= */
    position: relative;
}

.nav-bar ul {
    display: flex;
    list-style: none;
}

.nav-bar li {
    margin: 0 15px;
}

.nav-bar a {
    color: #00509e;
    font-weight: bold;
}
/* ================================ */
/* ================================ */
/* ================================ */
/* ================================ */


/* ================================ */
/* MODIFICATION: 06/02/2025         */
/* ================================ */
/* Allow Hamburg Icon on Phone      */
/* ================================ */
.nav-menu ul{
    margin:0;
    padding:0; 
}


.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #00509e;
    font-weight: bold;
    text-decoration: none;
}

/* ================ */
/* Hamburger button */
/* ================ */
.hamburger {display: none;
            font-size: 2rem;
            background: none;
            border: none;cursor: pointer;
            color: #00509e;
}



/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
     }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 50px;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        width: 200px;z-index: 1000;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 10px;
    }
        
    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu.active {
        display: block;
    }
}



/* ================================ */
/* ================================ */
/* ================================ */
/* ================================ */









/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 75%;
    left: 4%;
    transform: translateY(-50%);
    color: white;
}

.banner-text .title {
    font-size: 3.0em;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-text .subtitle {
    font-size: 2.0em;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Main Goal Section */
.main-goal {
    padding: 50px 0;
    background-color: #fff;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.main-goal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    width: 50%;
}

.text-content h3 {
    font-size: 1.2em;
    color: #00aaff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.text-content h2 {
    font-size: 2.5em;
    color: #00509e;
    margin-bottom: 20px;
}

.text-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-primary {
    background-color: #2f8fde;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d04373;
}
.video-content {
    width: 45%;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.play-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.play-button:hover {
    opacity: 0.8;
}

/* Hide play button when the video is playing */
.video-content video:focus + .play-button,
.video-content video:active + .play-button {
    display: none;
}


/* What We Do Section */
.what-we-do {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.what-we-do .section-title {
    font-size: 1.2em;
    color: #12b4ef;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.what-we-do .main-title {
    font-size: 2.5em;
    color: #00509e;
    margin-bottom: 40px;
}

.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service {
    width: 23%;
    text-align: center;
}

.service img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.service p {
    color: #777;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Your Money Saves Lives Section */
.money-saves-lives {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.money-saves-lives .section-title {
    font-size: 1.2em;
    color: #00aaff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.money-saves-lives .main-title {
    font-size: 2.5em;
    color: #00509e;
    margin-bottom: 40px;
}

.donations {
    display: flex;
    justify-content: space-between;
}

.donation {
    width: 48%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.donation img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.donation-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.donation h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.donation p {
    margin-bottom: 20px;
}

.donation .btn-primary {
    background-color: #00aaff;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.donation .btn-primary:hover {
    background-color: #d04373;
}

/* Achievements / Why This Matters Section */
.achievements {
    padding: 50px 0;
    background-color: #fff;
}

.achievements .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.achievements-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.achievements-image {
    flex-basis: 50%;
    padding-right: 20px;
}

.achievements-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.achievements-text {
    flex-basis: 50%;
    padding-left: 20px;
    text-align: left;
}

.achievements .section-title {
    font-size: 1.2em;
    color: #00aaff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.achievements .main-title {
    font-size: 2.5em;
    color: #00509e;
    margin-bottom: 20px;
}

.achievements p {
    font-size: 1em;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.6;
}

.achievements-stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5em;
    color: #00aaff;
    margin-bottom: 5px;
}

.stat p {
    font-size: 1em;
    color: #333;
}

/* Footer Section */
.footer {
    background-color: #346b95; /* Dark blue background */
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: #f76c85; /* Pink for company name */
    margin-bottom: 10px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s;
}

.social-icons a img {
    width: 24px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-links h4,
.footer-instagram h4,
.footer-message h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f76c85;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f76c85; /* Pink hover color */
}

.instagram-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.instagram-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.footer-message input[type="email"] {
    width: 200px;
    padding: 8px;
    border-radius: 20px;
    border: none;
    margin-bottom: 10px;
    outline: none;
}

.footer-message .message-btn {
    padding: 8px 20px;
    background-color: #f76c85; /* Pink button */
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer-message .message-btn:hover {
    background-color: #072f56;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.impact-section {
    display: flex;
    padding: 2rem;
    background-color: #f5f5f5;
}

.impact-text {
    flex: 1;
    padding-right: 2rem;
}

.impact-text h2 {
    color: #0073e6;
    font-size: 1.2rem;
}

.impact-text h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin: 0.5rem 0;
}

.impact-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.more-btn {
    padding: 0.5rem 1rem;
    color: white;
    background-color: #0073e6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.impact-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5rem;
}

.image {
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Fade-in effect when in view */
.image.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Our Research Section */
.our-research {
    background-color: #f9f9fb;
    padding: 50px 20px;
    text-align: center;
    color: #333;
}

.section-title {
    font-size: 2.5rem;
    color: #004080; /* Dark blue */
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.research-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.research-item {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 260px;
    text-align: left;
}

.research-item h3 {
    color: #004080;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.research-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.research-item ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    font-size: 1rem;
    margin-top: 10px;
}

.research-item ul li {
    margin: 5px 0;
}

.learn-more-link {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.learn-more-link:hover {
    text-decoration: underline;
}
