/* Base styling */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero {
    background-color: #f9fafb;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
}

/* Demo Converter */
.demo-container {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.demo-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
}

.demo-container input[type="file"] {
    border: 2px solid #d1d5db;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.demo-container button {
    background-color: #2563eb;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.demo-container button:hover {
    background-color: #1e40af;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #f3f4f6;
}

.features-grid div {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    background-color: #ffffff;
    padding: 40px 20px;
}

.testimonials div {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Screenshots */
.screenshots img {
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* -------------------------------------------------------------------------- */
/* Contact Page Animations & Effects */
/* -------------------------------------------------------------------------- */

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Input Group States */
.input-group:focus-within label {
    color: #2563EB;
}

.input-group:focus-within input,
.input-group:focus-within textarea {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Custom shadow for submit button matching yellow-500 */
.shadow-glow {
    box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.3), 0 4px 6px -2px rgba(234, 179, 8, 0.1);
}

/* Hide Scrollbar Utility */
.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}