/* Custom styles that complement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Animation for the alert icons in hero section */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Custom bullet points */
.custom-bullet {
    position: relative;
    padding-left: 1.5rem;
}

.custom-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #10B981; /* green-500 */
}

/* Hover effects for cards */
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Transition for all hover effects */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom underline for headings */
.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #10B981; /* green-500 */
    border-radius: 2px;
}

/* Responsive typography */
@media (min-width: 768px) {
    .text-hero {
        font-size: 3.5rem;
        line-height: 1.2;
    }
}