body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #222;
}

.navbar {
    background-color: #007bff;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #e2e6ea !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: #007b5e !important;
}
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
    color: #007b5e !important;
}

.header {
    text-align: center;
    padding: 50px 0;
    background: url('../assets/images/header-bg.jpg') no-repeat center center/cover;
    color: #ffffff;
}

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

.header p {
    font-size: 1.25rem;
}

.donate-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    text-decoration: underline;
}

.btn-custom {
    background-color: #28a745;
    color: #ffffff;
}

.btn-custom:hover {
    background-color: #218838;
}

/* General Styles */
body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #222;
}

/* Navbar Custom */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: #007b5e !important;
}
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
    color: #007b5e !important;
}

/* Hero Section */
section.bg-light {
    background: linear-gradient(90deg, #e0f7fa 0%, #fff 100%);
}
.display-4 {
    color: #007b5e;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 8px 24px rgba(0,123,94,0.15);
}
.card-title {
    color: #007b5e;
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-success {
    background-color: #007b5e;
    border: none;
}
.btn-primary:hover, .btn-success:hover {
    background-color: #005f46;
}

/* Footer */
footer {
    background: #007b5e;
}
footer a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s;
}
footer a:hover {
    opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
}
     /* Navbar hover and transition effects */
        .navbar-nav .nav-link {
            color: #fff !important;
            transition: color 0.3s, background 0.3s;
            border-radius: 4px;
            margin-right: 8px;
            padding: 8px 16px;
        }
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: #007b5e !important;
            background: #fcfafa;
            box-shadow: 0 2px 8px rgba(0,123,94,0.08);
            text-decoration: none;
            border-radius: 10px;
        }
        .navbar-brand {
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff !important;
            font-size: 1.7rem;
            transition: color 0.3s;
        }
        .navbar-brand:hover {
            color: #fdfdfd !important;
        }
         .about-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .about-card {
      background: #fff;
      flex: 1 1 calc(20% - 20px);
      min-width: 250px;
      max-width: 300px;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .about-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
      border: 2px solid black;
        background:  #619a8d;
    }

    .about-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #333;
    }

    .about-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-card {
        flex: 1 1 100%;
      }
    }