body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text color */
}

header {
    background-color: #1f1f1f; /* Dark header background */
    color: #e0e0e0;
    padding: 10px 0;
    display: none; /* Hide the header text */
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white; /* Accent color */
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('{{ asset('images/hero-bg.jpg') }}') no-repeat center center/cover;
    color: #e0e0e0;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #8B0000;
    color: #121212;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #8B0000;
}

.features, .about-us, .outreach, .agro, .contact-us {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 40px 20px;
        color: white;
        font: semibold;
    }
.feature, .about-item, .outreach-item, .agro-item, .contact-info {
        background: #424242;
        padding: 20px;
        margin: 10px;
        border-radius: 8px;
        width: 300px;
        text-align: center;
        
    }
.feature img, .about-item img, .outreach-item img, .agro-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }

.feature h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 18px;
}

.feature-button {
    background-color: #8B0000;
    color: #121212;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.feature-button:hover {
    background-color: #8B0000;
}

.testimonials {
    padding: 50px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.testimonial {
    background-color: #292929;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #e0e0e0;
}

footer {
    background-color: #1f1f1f; /* Dark footer background */
    color: white;
    text-align: center;
    padding: 20px 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0;
    height: 100vh;
    padding: 0;
    background-color: #1e1e1e; /* Dark login background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden;
    color: #e0e0e0;
}

.login-container h2 {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    
    color: #e0e0e0;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: blue;
    color: #121212;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: blue;
}

.register-link {
    margin-top: 15px;
    font-size: 14px;
    color: blue;
}

.register-link a {
    color: blue;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.card {
    background-color: white; /* Dark background */
    padding: 20px; /* Inner spacing */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Light gray shadow */
    color: black; /* Text color */
}

.no-scroll {
    overflow: hidden;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.toggle-checkbox:checked + .toggle-label {
        background-color: #4CAF50; /* Green when active */
    }

    .toggle-label {
        transition: background-color 0.3s ease;
    }

    .toggle-checkbox:checked + .toggle-label .dot {
        transform: translateX(24px); /* Move the dot to the right */
    }

    .dot {
        transition: transform 0.3s ease; /* Smooth transition */
    }
    
.modal-body {
    font-family: 'Nunito', sans-serif;
 }
 
  .payment-logo {
    height: 24px; /* Adjust the size */
    width: auto;  /* Maintain aspect ratio */
    margin-right: 8px; /* Spacing between logo and text */
  }
