/* Custom styles for Nexra Link */

/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Button Styles */
.btn-primary {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #4f46e5;
    --tw-gradient-to: #0d9488;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.btn-primary:hover {
    --tw-gradient-from: #4338ca;
    --tw-gradient-to: #0f766e;
}

/* Header Styles */
header {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Scroll animation for header */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Hero Section */
#hero {
    position: relative;
    overflow: hidden;
}

/* Neumorphic Elements */
.neumorphic {
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.05),
                -8px -8px 15px rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg, #f3f4f6, #ffffff);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.neumorphic:hover {
    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.07),
                -12px -12px 20px rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.duration-btn {
    transition: all 0.3s ease;
}

.duration-btn.active {
    background-color: #4f46e5;
    color: white;
}

/* FAQ Section */
.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile Menu */
.mobile-menu {
    transition: all 0.3s ease;
}

/* Utility Classes */
.shadow-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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