/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #1e4672;
    padding: 15px;
}

header .logo {
    display: inline-block;
    font-size: 1.5em;
    color: white;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

header nav ul li {
    display: inline-block;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    /* background: url('../images/hero.jpg') no-repeat center center/cover; */
    background-color: #b3d9ff;
    text-align: center;
    color: #5cdbd3;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.hero .btn-primary {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Section */
.section {
    padding: 50px;
    background-color: #f5f5f5;
}

.program-box {
    display: inline-block;
    width: 45%;
    margin: 20px 2.5%;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
}

.program-box img {
    max-width: 100%;
    height: auto;
}

.program-box h3 {
    font-size: 1.5em;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Optional: for rounded corners */
    position: relative; /* Required for the pseudo-element */
}

footer:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to top, rgba(106, 90, 205, 0.8), transparent);
    border-radius: 10px; /* Optional: for rounded corners */
}

/* assets/css/style.css */

/* Change the background color of the navbar */
.navbar {
    background-color: #1a1a6f; /* Light background */
}

/* Style the navbar links */
.nav-link {
    color: #ffffff; /* Link color */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.nav-link:hover {
    color: #dc3545; /* Change color on hover */
}

/* Style the button */
.btn-danger {
    background-color: #dc3545; /* Custom background color */
    border: none; /* Remove border */
}

.btn-danger:hover {
    background-color: #c82333; /* Darker shade on hover */
}


/* Style the button */
.btn-danger {
    background-color: #dc3545; /* Custom background color */
    border: none; /* Remove border */
}

.btn-danger:hover {
    background-color: #c82333; /* Darker shade on hover */
}

/* Card Images */
.card-img {
    width: 100%; /* Ensure images take full width of the card */
    height: 200px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensure the image maintains aspect ratio and covers the entire area */
}

/* Contact Us Page */

/* Style for the banner image */
.banner-section img {
    border-bottom: 5px solid #dc3545; /* Add a red border at the bottom for emphasis */
}

/* Style for contact info section */
.contact-info-form {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 30px;
    border-radius: 8px;
}

/* Style for social media buttons */
.recommended-section a.btn {
    width: 150px;
    margin-bottom: 10px;
}

/* Style for the FAQ list */
.recommended-section ul {
    list-style-type: none;
    padding-left: 0;
}

.recommended-section ul li {
    margin-bottom: 10px;
}


/* Style for the banner */
.donate-banner img {
    border-bottom: 5px solid #dc3545; /* Add a red border at the bottom for emphasis */
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.2rem;
}

/* Style for the donation form */
.donate-form form {
    background: url('assets/images/footer-bg.webp');
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

/* Call-to-action button */
.call-to-action .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}



/* Unique Blog Section Styles */
.blog-section {
    margin: 50px auto;
    padding: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-card h5 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0;
}

.blog-card p {
    color: #666;
    font-size: 0.9rem;
}

.blog-card .read-more {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-card .read-more:hover {
    background-color: #0056b3;
}

     /* Style for the navbar toggler button */
     .navbar-toggler {
        background-color: transparent; /* Make background transparent */
        border: none; /* Remove border */
    }

    /* Style for the toggler icon */
    .navbar-toggler-icon {
        fill: darkgray; /* Set the color of the SVG icon */
        width: 30px; /* Width of the icon */
        height: 30px; /* Height of the icon */
    }

    /* Optional: Remove outline on focus */
    .navbar-toggler:focus {
        outline: none; /* Remove the default outline on focus */
    }