: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;
}

/*** Hero Section ***/
.hero {
    position: relative;
    height: 60vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.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;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 20px;
}

.hero-paragraph {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.highlight-box {
    background-color: #FF6F0F; /* Captivating color */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}
.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.cta-buttons:hover {
    background-color: #ff4a3d;
}

/*** Impact Showcase Section ***/
.impact-showcase {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.impact-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.impact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.impact-card {
    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;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.impact-card p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Donation Options Section ***/
.donation-options {
    text-align: center;
    padding: 50px 20px;
}

.donation-options h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.donation-options .one-time-donation,
.donation-options .monthly-donation {
    background-color: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.donation-options h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var (--dark);
}

.donation-options p {
    font-size: 1rem;
    color: var (--dark);
    margin-bottom: 20px;
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.amount-buttons button,
.amount-buttons input {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    background-color: white;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
}

.amount-buttons button:hover,
.amount-buttons input:hover {
    background-color: var(--primary);
    color: white;
}

.amount-buttons input {
    width: 150px;
    text-align: center;
}

.amount-buttons button.active {
    background-color: var(--primary);
    color: white;
}

.donation-options button[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.donation-options button[type="submit"]:hover {
    background-color: #ff4a3d;
}

/*** Other Ways to Support Section ***/
.other-ways {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.other-ways h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.option {
    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;
}

.option:hover {
    transform: translateY(-10px);
}

.option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.option p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.option a:hover {
    text-decoration: underline;
}

/*** Donation Impact Section ***/
.donation-impact {
    text-align: center;
    padding: 50px 20px;
}

.donation-impact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.impact-stories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.story {
    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;
}

.story:hover {
    transform: translateY(-10px);
}

.story img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.story h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.story p {
    font-size: 1rem;
    color: var(--dark);
}

.transparency {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.transparency h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.transparency p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var (--dark);
}

.transparency-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.transparency-stats .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;
}

.transparency-stats .stat:hover {
    transform: translateY(-10px);
}

.transparency-stats h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.transparency-stats p {
    font-size: 1rem;
    color: var(--dark);
}

.transparency a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.transparency a:hover {
    text-decoration: underline;
}

/* ** Footer **
/* Footer Section */
/*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;
}*/
/*** Footer ***/
footer {
    background-color: var(--dark);
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer img {
    width: 100px;
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; /* Change to column for vertical alignment */
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

footer ul li {
    display: inline;
}

footer ul a {
    color: white;
    text-decoration: none;
}

footer ul a:hover {
    color: var(--primary);
}

.footer-nav {
    display: flex;
    flex-direction: column; /* Change to column for vertical alignment */
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-social img {
    width: 20px;
    margin: 0 10px;
}

.footer-social a:hover img {
    filter: brightness(0.8);
}

footer p {
    font-size: 0.875rem;
}

/* Add hover effect for better user experience (optional) */
: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;
}

/*** Hero Section ***/
.hero {
    position: relative;
    height: 60vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.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;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.cta-buttons:hover {
    background-color: #ff4a3d;
}

/*** Impact Showcase Section ***/
.impact-showcase {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.impact-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.impact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.impact-card {
    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;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.impact-card p {
    font-size: 1rem;
    color: var(--dark);
}

/*** Donation Options Section ***/
.donation-options {
    text-align: center;
    padding: 50px 20px;
}

.donation-options h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.donation-options .one-time-donation,
.donation-options .monthly-donation {
    background-color: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.donation-options h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var (--dark);
}

.donation-options p {
    font-size: 1rem;
    color: var (--dark);
    margin-bottom: 20px;
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.amount-buttons button,
.amount-buttons input {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    background-color: white;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
}

.amount-buttons button:hover,
.amount-buttons input:hover {
    background-color: var(--primary);
    color: white;
}

.amount-buttons input {
    width: 150px;
    text-align: center;
}

.amount-buttons button.active {
    background-color: var(--primary);
    color: white;
}

.donation-options button[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.donation-options button[type="submit"]:hover {
    background-color: #ff4a3d;
}

/*** Other Ways to Support Section ***/
.other-ways {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.other-ways h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.option {
    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;
}

.option:hover {
    transform: translateY(-10px);
}

.option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.option p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.option a:hover {
    text-decoration: underline;
}

/*** Donation Impact Section ***/
.donation-impact {
    text-align: center;
    padding: 50px 20px;
}

.donation-impact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.impact-stories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.story {
    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;
}

.story:hover {
    transform: translateY(-10px);
}

.story img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.story h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.story p {
    font-size: 1rem;
    color: var(--dark);
}

.transparency {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light);
}

.transparency h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.transparency p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var (--dark);
}

.transparency-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.transparency-stats .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;
}

.transparency-stats .stat:hover {
    transform: translateY(-10px);
}

.transparency-stats h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.transparency-stats p {
    font-size: 1rem;
    color: var(--dark);
}

.transparency a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.transparency a:hover {
    text-decoration: underline;
}

/*** Footer ***/
/* Footer Section */
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 */
}