/* Custom styles that extend Tailwind */
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* Custom animation for the hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom button hover effect */
.btn-amber {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Custom form input focus */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}
/* Product feature icons */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    background-color: #f59e0b;
}

.feature-icon:hover i {
    color: white;
}

/* Process timeline dots */
.process-step::before {
content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #f59e0b;
    border-radius: 50%;
    z-index: 1;
    border: 2px solid white;
}
@media (max-width: 767px) {
    .process-step::before {
        display: none;
    }
}