* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: system-ui, "Arial", sans-serif;
    color: #222;
    line-height: 1.6;
}

h1 {
    font-weight: 600;
}


/* NAVBAR */
.navbar {
    font-size: large;
    font-weight: 600;
    transition: color 0.3s, font-weight 0.3s; 
    margin: 0;
    padding: 0;
}

.nav-link:hover {
    color: #2D3B92;
}

.btn-donate {  
    font-size: large;
    background-color: #2D3B92; 
    color: white; 
    border: 1px solid #2D3B92;
    font-weight: bolder;
    padding: 10px 25px; 
    border-radius: 30px; 
    box-sizing: border-box; 
}

.btn-donate:hover { 
    font-size: large;
    background-color: white;
    color: #2D3B92;
    border: 1px solid #2D3B92;
    padding: 10px 25px;
    border-radius: 30px;
}

/* NAVBAR END*/


/* HERO SECTION */
header.hero {
    position: relative;
    background: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') no-repeat center center/cover;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 90px;
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    z-index: 2;
}

.hero p {
    margin-bottom: 30px;
    max-width: 630px;
}

@media (max-width: 768px) {
    .responsive-text {
      text-align: center; 
      font-size: 16px; 
    }
}

section {
    padding: 50px 0;
    background-color: #333;
}


/* HERO SECTION END */



/* Form */
.form {
    margin-top: -40px;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 3;
}

.contact-card h3 {
    margin-bottom: 20px;
    color: #0056b3;
}

.contact-card p {
    color: #222;
}

.contact-card i {
    color: #003366;
    font-size: 1rem;
    margin-right: 10px;
}

.contact-information {
    margin-top: 80px;
    color: #003366;
}

.contact-info {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #0056b3;
}

.contact-info p {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 2;
    color: #444;
}

.btn-primary {
    background-color: #2D3B92;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #0b1974;
    transform: translateY(-3px);
}

/* Form submit alert */
.alert {
    font-size: 20px;
    font-weight: 500;
    background-color:  #5c9a44;
    color: white;
    text-align: center;
    padding: 10px;
    display: none;
    animation: fadeIn 1s ease-in-out forwards;
}


/* GET INVOLVED */
.get-involved {
    background: linear-gradient(140deg, #086f87, #273697);
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 25px;
}

.get-involved h1 {
    color: white;
    /* font-family: "Great Vibes"; */
}

.get-involved p {
color: white;
}

.get-involved a {
    color: #2D3B92;
}

.get-involved .cta-btn {
    background-color: white; 
    color: #2D3B92; 
    padding: 12px 25px; 
    font-size: 16px; 
    text-align: center;
    display: inline-block;
    text-decoration: none; 
    border-radius: 25px; 
    transition: all 0.3s ease; 
}

/* Hover effect */
.get-involved .cta-btn:hover {
    background: linear-gradient(140deg, #086f87, #273697);
    color: white; 
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    /* Get Involved */
    .get-involved {
        border-radius: 0;
        padding: 20px !important;
    }

}

/* Center the donate button on small screens */
@media (max-width: 991.98px) {
    .center-donate {
      display: flex;
      justify-content: center; /* Horizontally center */
      margin-top: 10px; /* Optional: Add spacing */
      width: 100%; /* Take full width */
      margin-bottom: 10px;
    }
  }