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

body {
    background-color: #f8f9fa;
    font-size: 18px;
    font-family: "Arial", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
.header-section {
    height: 100vh;
    background: linear-gradient(to right, rgba(45, 59, 146, 0.8), rgba(85, 105, 205, 0.8)),
        url('https://images.pexels.com/photos/3184324/pexels-photo-3184324.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    animation: fadeIn 2s ease-in-out;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


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

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

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

.btn-donate {  
    font-size: large; 
    background-color: #FFC701;
    color: #2D3B92; 
    border: 2px solid #FFC701;
    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: 2px solid #FFC701;
    padding: 10px 25px;
    border-radius: 30px;
}

/* NAVBAR END*/




@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Donation Form Section */

.donation-form-section {
    padding: 50px 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: -150px auto 40px;
    max-width: 600px;
}

.donation-form-section .icon {
    font-size: 60px;
    color: #F09C11;
    margin-bottom: 20px;
    background-color: white;
}

.donation-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.donation-form-section .form-control,
.donation-form-section .btn-submit {
    border-radius: 30px;
}

.donation-form-section .btn-submit {
    background-color: #2D3B92;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s ease-in-out;
}

.donation-form-section .btn-submit:hover {
    background-color: #5569CD;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(to right, #2D3B92, #5569CD);
    color: white;
    padding: 60px 20px;
}

.impact-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.impact-cards .card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.impact-cards .card:hover {
    transform: translateY(-10px);
}

.impact-cards .card h3 {
    font-size: 2rem;
    color: #2D3B92;
}

/* 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;
    }
  }
