/* Custom styles for Telebora */
.hero-gradient {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #16a34a 100%);
    transition: all 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: #f97316;
}

.industry-card {
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a:first-child {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}