/* Custom CSS for GRcoop CRM */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Animation for buttons */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.5);
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Animation for feature cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #f97316, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Custom form inputs */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* FAQ animation */
.faq-content {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        height: auto;
    }
}

/* Video Zoom Out Effect */
.video-zoom-out {
    animation: zoomOut 15s ease-in-out infinite alternate;
    object-fit: contain;
    background-color: #000;
}

@keyframes zoomOut {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(0.9);
    }
}