.create-card {
    display: block;
    padding: 25px 15px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* 🔥 ICON - BIG + GLOW */
.create-card .icon span {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
    transition: transform 0.3s ease;
}

/* 🧠 TITLE - BIGGER + BOLDER */
.create-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ✨ HOVER EFFECT */
.create-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #00c6ff, #0d6efd);
}

/* 🔥 ICON POP ON HOVER */
.create-card:hover .icon span {
    transform: scale(1.2) rotate(5deg);
}

/* 💫 OPTIONAL: subtle pulse animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,255,255,0.6); }
    100% { box-shadow: 0 0 0 rgba(255,255,255,0.3); }
}

.create-card {
    animation: pulseGlow 3s infinite;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}

.features-list {
    list-style-type: none;
    padding: 0;
}

.features-list li:before {
    content: '• ';
    color: #0056b3;
}

.logo-quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    width: 100%;
}

@media (min-width: 768px) {
    .logo-quote-container {
        flex-direction: row;
    }
}

.img-fluid {
    max-width: 75%; /* Small screens */
    height: auto;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .img-fluid {
        max-width: 25%; /* Larger screens */
    }
}

.quote-text {
    font-style: italic;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    max-width: 600px;
    margin: auto;
}


/* this is all for the carousels*/

.testimonials {
    padding: 2rem 0; /* Adjust padding for the section */
}
.supporters img {
    max-height: 200px; /* Adjust this value for the desired size */
    width: auto; /* Maintain aspect ratio */
}
.carousel-inner {
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Adjust as needed for height */
    text-align: center; /* Center text inside the carousel */
}

.carousel-item img {
    max-width: 100%; /* Ensures the image doesn't exceed its container */
    height: auto; /* Maintains the original aspect ratio */
}

.carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Ensures all items are the same height */
    padding: 1rem; /* Add some padding for better spacing */
}
.carousel-item p.lead {
    font-size: 1.5rem; /* Adjust for larger text */
    margin-bottom: 0.5rem; /* Space between text and attribution */
}
.carousel-item small {
    font-size: 1rem;
    color: #6c757d; /* Optional: muted color for attribution */
}
.quote-text {
    margin-top: 1rem;
    font-size: 1rem; /* Adjust text size if needed */
}
.testimonial-text {
    max-width: 600px; /* Set a desired maximum width */
    margin: 0 auto; /* Center the text container */
    text-align: center; /* Ensure text alignment remains centered */
}

/* Make the prev/next icons visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for visibility */
    border-radius: 50%; /* Optional: make the icons circular */
    width: 30px; /* Adjust icon size */
    height: 30px;
}

/* Optional: Add hover effect for better usability */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* this is all for the carousels*/