/* Custom styles for Khan Pallob Website */

/* Import Tailwind CSS via CDN - included in HTML files */

/* Custom gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #d1fae5 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Review card animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom button styles */
.btn-primary {
    @apply bg-blue-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-700 transition-all duration-300 transform hover:scale-105;
}

.btn-secondary {
    @apply bg-white text-blue-600 border-2 border-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-blue-50 transition-all duration-300;
}

/* Custom card styles */
.card {
    @apply bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow duration-300;
}

/* Navigation backdrop blur */
.nav-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Success story image hover effect */
.success-image {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.success-image:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Review navigation buttons */
.review-nav-btn {
    @apply w-3 h-3 rounded-full bg-gray-300 hover:bg-blue-600 transition-colors duration-300 cursor-pointer;
}

.review-nav-btn.active {
    @apply bg-blue-600;
}

/* Form focus styles */
.form-input:focus {
    @apply ring-2 ring-blue-500 border-transparent outline-none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(180deg, #dbeafe 0%, #ffffff 50%, #d1fae5 100%);
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}