/* General Styles */
body {
    font-family: 'Hind Siliguri', 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    padding: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    color: white;
    /* Set text color to white */
    display: flex;
    /* Use flexbox for centering */
    align-items: center;
    /* Center items vertically */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay for contrast */
    padding: 2rem;
    /* Padding for content */
    border-radius: 10px;
    /* Rounded corners */

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 1rem;
        /* Reduce padding on smaller screens */
        border-radius: 5px;
        /* Smaller radius for compact view */
    }

    .hero-overlay p {
        font-size: 1.2rem;
        /* Adjust text size */
    }

    .hero-overlay .btn {
        font-size: 1rem;
        /* Smaller button text */
        padding: 0.6rem 1.2rem;
        /* Adjust button padding */
    }
}

.hero-section h1 {
    font-size: 3rem;
    /* Larger font size for the title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Text shadow for better readability */
}

.hero-section p {
    font-size: 1.2rem;
    /* Slightly larger font size for paragraphs */
}

.btn-success {
    padding: 10px 20px;
    /* More padding for the button */
    font-size: 1.2rem;
    /* Larger font size for the button text */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover */
}

.btn-success:hover {
    background-color: #28a745;
    /* Darker shade on hover */
}

/* About Us Section */
.about-us {
    padding: 2rem 1rem;
}

.about-us h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.about-us p {
    font-size: 1.1rem;
    color: #555;
}

/* How It Works Section */
.how-it-works {
    padding: 2rem 1rem;
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 1.5rem;
}

.how-it-works .card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.how-it-works .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.how-it-works .card i {
    color: #0d6efd;
    font-size: 3rem;
}

/* Contact Us Section */
.contact-us {
    padding: 2rem 1rem;
}

.contact-us h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.contact-us .form-control {
    border-radius: 8px;
    box-shadow: none;
}

.contact-us .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #0d6efd;
    color: #fff;
    padding: 1rem;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 1rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    .how-it-works .card i {
        font-size: 4rem;
    }
}

/* Justify text in card body */
.card-body p {
    text-align: justify;
}

/* Space between cards in row */
.how-it-works .card {
    margin-bottom: 20px;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Icon color and font size adjustments */
.card-body i {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .card-body i {
        font-size: 2rem;
    }
}

.about-text {
    text-align: justify;
    /* Align text to both left and right */
    font-size: 1.25rem;
    /* Increase font size */
    line-height: 1.8;
    /* Increase line height for better readability */
    margin: 0 auto;
    /* Center the text block */
    max-width: 800px;
    /* Set a maximum width for better readability */
}

.donate-section {
    background-color: #f8f9fa;
    /* Light background for contrast */
    padding: 50px 0;
    /* Top and bottom padding */
}

.donate-section h5 {
    margin-top: 15px;
    /* Space between icon and title */
    font-size: 1.2rem;
    /* Font size for method titles */
}

.donate-section p {
    font-size: 1rem;
    /* Adjusted font size for descriptions */
}

.donate-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.donation-note p {
    font-size: 1.2rem;
    /* Slightly larger font size */
    color: #333;
    /* Darker text color for emphasis */
    background-color: #f8f9fa;
    /* Light background for subtle highlighting */
    padding: 1rem;
    border-radius: 5px;
}

.donation-note p a.highlight-link {
    color: #d9534f;
    /* Highlight color for link (Bootstrap's danger color) */
    text-decoration: underline;
    font-weight: bold;
}

/* Optionally add a hover effect */
.donation-note p a.highlight-link:hover {
    color: #c9302c;
}

.icon-image {
    width: 3rem;
    height: 3rem;
}