@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Space Grotesk", sans-serif; */
    /* font-family: "Michroma", sans-serif; */
    /* font-family: 'Josefin Sans', sans-serif; */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #7c3aed 50%, #4338ca 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* Color Classes */
.text-white { color: #ffffff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-purple-300 { color: #d8b4fe; }
.text-purple-400 { color: #c084fc; }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-indigo-300 { color: #a5b4fc; }
.text-green-400 { color: #4ade80; }

/* Text Size Classes */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

/* Layout Classes */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-20 { top: 5rem; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.left-20 { left: 5rem; }
.right-20 { right: 5rem; }
.z-10 { z-index: 10; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-1 { width: 0.25rem; }
.h-1 { height: 0.25rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.w-80 { width: 20rem; }
.h-80 { height: 20rem; }
.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.max-h-96 { max-height: 24rem; }

/* Flexbox Classes */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid Classes */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.col-span-1 { grid-column: span 1; }

/* Border and Rounded */
.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
.border-purple-500\/20 { border-color: rgba(147, 51, 234, 0.2); }
.border-purple-500\/30 { border-color: rgba(147, 51, 234, 0.3); }
.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.border-indigo-500\/20 { border-color: rgba(99, 102, 241, 0.2); }
.border-green-500\/20 { border-color: rgba(34, 197, 94, 0.2); }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-orange-500\/20 { border-color: rgba(249, 115, 22, 0.2); }
.border-orange-500\/30 { border-color: rgba(249, 115, 22, 0.3); }
.border-slate-500\/20 { border-color: rgba(100, 116, 139, 0.2); }
.border-slate-500\/30 { border-color: rgba(100, 116, 139, 0.3); }
.border-slate-600 { border-color: #475569; }
.border-slate-800 { border-color: #1e293b; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Background Classes */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #581c87, var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.to-indigo-900 { --tw-gradient-to: #312e81; }
.from-white { --tw-gradient-from: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #e9d5ff, var(--tw-gradient-to, rgba(233, 213, 255, 0)); }
.to-blue-200 { --tw-gradient-to: #dbeafe; }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-600 { --tw-gradient-to: #0891b2; }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.to-emerald-600 { --tw-gradient-to: #059669; }
.from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.to-red-600 { --tw-gradient-to: #dc2626; }
.from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-rose-600 { --tw-gradient-to: #e11d48; }
.from-yellow-500 { --tw-gradient-from: #eab308; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 179, 8, 0)); }
.to-orange-600 { --tw-gradient-to: #ea580c; }
.from-slate-500 { --tw-gradient-from: #64748b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(100, 116, 139, 0)); }
.to-slate-600 { --tw-gradient-to: #475569; }
.from-slate-600 { --tw-gradient-from: #475569; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 85, 105, 0)); }
.to-slate-800 { --tw-gradient-to: #1e293b; }
.from-purple-500\/10 { --tw-gradient-from: rgba(168, 85, 247, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.to-violet-500\/10 { --tw-gradient-to: rgba(139, 92, 246, 0.1); }
.from-blue-500\/10 { --tw-gradient-from: rgba(59, 130, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-500\/10 { --tw-gradient-to: rgba(6, 182, 212, 0.1); }
.from-green-500\/10 { --tw-gradient-from: rgba(34, 197, 94, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.to-emerald-500\/10 { --tw-gradient-to: rgba(16, 185, 129, 0.1); }
.from-orange-500\/10 { --tw-gradient-from: rgba(249, 115, 22, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.to-red-500\/10 { --tw-gradient-to: rgba(239, 68, 68, 0.1); }
.from-slate-500\/10 { --tw-gradient-from: rgba(100, 116, 139, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(100, 116, 139, 0)); }
.to-slate-600\/10 { --tw-gradient-to: rgba(71, 85, 105, 0.1); }

/* Background with opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-700\/50 { background-color: rgba(51, 65, 85, 0.5); }
.bg-green-400 { background-color: #4ade80; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-purple-400 { background-color: #c084fc; }
.bg-purple-400\/30 { background-color: rgba(192, 132, 252, 0.3); }
.bg-purple-400\/40 { background-color: rgba(192, 132, 252, 0.4); }
.bg-red-400 { background-color: #f87171; }
.bg-yellow-400 { background-color: #facc15; }

/* Background gradients with opacity */
.from-purple-500\/20 { --tw-gradient-from: rgba(168, 85, 247, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.to-blue-500\/20 { --tw-gradient-to: rgba(59, 130, 246, 0.2); }
.from-blue-500\/20 { --tw-gradient-from: rgba(59, 130, 246, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-purple-500\/20 { --tw-gradient-to: rgba(168, 85, 247, 0.2); }
.from-green-500\/20 { --tw-gradient-from: rgba(34, 197, 94, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.to-blue-500\/20 { --tw-gradient-to: rgba(59, 130, 246, 0.2); }
.to-emerald-500\/20 { --tw-gradient-to: rgba(16, 185, 129, 0.2); }
.to-cyan-500\/20 { --tw-gradient-to: rgba(6, 182, 212, 0.2); }
.to-violet-500\/20 { --tw-gradient-to: rgba(139, 92, 246, 0.2); }
.to-pink-500\/20 { --tw-gradient-to: rgba(236, 72, 153, 0.2); }
.from-orange-500\/20 { --tw-gradient-from: rgba(249, 115, 22, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.to-yellow-500\/20 { --tw-gradient-to: rgba(234, 179, 8, 0.2); }
.from-pink-500\/20 { --tw-gradient-from: rgba(236, 72, 153, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-rose-500\/20 { --tw-gradient-to: rgba(244, 63, 94, 0.2); }
.from-slate-500\/20 { --tw-gradient-from: rgba(100, 116, 139, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(100, 116, 139, 0)); }
.to-gray-500\/20 { --tw-gradient-to: rgba(107, 114, 128, 0.2); }
.from-purple-600\/20 { --tw-gradient-from: rgba(147, 51, 234, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.to-blue-600\/20 { --tw-gradient-to: rgba(37, 99, 235, 0.2); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.from-slate-900\/30 { --tw-gradient-from: rgba(15, 23, 42, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-slate-900\/30 { --tw-gradient-to: rgba(15, 23, 42, 0.3); }
.from-slate-900\/50 { --tw-gradient-from: rgba(15, 23, 42, 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-purple-900\/20 { --tw-gradient-to: rgba(88, 28, 135, 0.2); }
.to-purple-900\/30 { --tw-gradient-to: rgba(88, 28, 135, 0.3); }

/* Text Gradient */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* Shadow and Blur */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.blur-3xl { filter: blur(64px); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #1d4ed8 100%);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

.btn-primary-lg {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
}

.btn-primary-lg:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #1d4ed8 100%);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

.btn-secondary-lg {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.btn-secondary-lg:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Hover Effects */
.hover\:text-white:hover { color: white; }
.hover\:border-white\/30:hover { border-color: rgba(255, 255, 255, 0.3); }
.hover\:border-white\/40:hover { border-color: rgba(255, 255, 255, 0.4); }
.hover\:scale-102:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* Background Patterns */
.bg-dots {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 60px 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    
    .text-5xl, .text-6xl, .text-7xl { font-size: 2.5rem; }
    .text-4xl { font-size: 2rem; }
    .text-3xl { font-size: 1.5rem; }
    
    .grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    
    .flex-col { flex-direction: column; }
    .gap-12 { gap: 2rem; }
    .gap-8 { gap: 1.5rem; }
    
    .py-24 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-16 { padding-top: 2rem; padding-bottom: 2rem; }
    
    .mb-16 { margin-bottom: 2rem; }
    .mb-12 { margin-bottom: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .lg\:text-5xl { font-size: 3rem; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:text-7xl { font-size: 4.5rem; }
    .lg\:text-left { text-align: left; }
    .lg\:justify-start { justify-content: flex-start; }
}

@media (min-width: 1025px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:text-5xl { font-size: 3rem; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:text-7xl { font-size: 3.9rem; }
    .lg\:text-left { text-align: left; }
    .lg\:justify-start { justify-content: flex-start; }
}

/* Progress Bar */
.progress-bar {
    background: #475569;
    border-radius: 9999px;
    height: 0.75rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: pulse 2s ease-in-out infinite;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.6);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.8);
}


/*Heder CSS*/

/* Header Styles */
/* Navigation Bar */
/* .navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #030e2a 0%, #33077e 50%, #080250 100%);
} */


.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* width: calc(120% - 0px); */
    /* max-width: 1200px; */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* border-radius: 20px; */
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #030e2a 0%, #33077e 50%, #080250 100%);
    width: 100%;
    border-bottom: 1px solid #4e5394;
}

.navbar:hover {
   background: linear-gradient(135deg, #7e0093 0%, #00005e 50%, #7a0ab3 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

/* Brand/Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    z-index: -1;
}

/* CTA Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
    width: 20px;
    height: 20px;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mobile-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary-mobile,
.btn-primary-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-mobile {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary-mobile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .brand-text {
        font-size: 20px;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 5px;
        width: calc(100% - 10px);
    }

    .nav-container {
        padding: 10px 15px;
    }

    .mobile-menu {
        padding: 15px 20px;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.cut-highlight {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: inline-block;
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }


        .highlight-text {
    background: linear-gradient(45deg, #ee00ff, #0093ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
}


/*Styling Why Choose Us Section*/

/* Main Section */
.why-choose-us-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #312e81 100%); */
    background: linear-gradient(135deg, #241944 0%, #431a6a 50%, #372069 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Background Elements */
.background-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
}

.bg-element-1 {
    top: 25%;
    left: 25%;
    width: 256px;
    height: 256px;
    background: rgba(59, 130, 246, 0.1);
}

.bg-element-2 {
    bottom: 25%;
    right: 25%;
    width: 256px;
    height: 256px;
    background: rgba(139, 92, 246, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Container */
.content-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

/* Central Image */
.central-image-container {
    position: relative;
    z-index: 20;
}

.image-card {
    width: 390px;
    /* height: 450px; */
    /* background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.8)); */
    border-radius: 16px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
    transition: transform 0.3s ease;
    border: 1px solid #7915d3;
    padding: 10px;
}

.image-card:hover {
    transform: scale(1.02);
}

.image-wrapper {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2)); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Feature Cards */
.feature-card {
    position: absolute;
    width: 300px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Card Positions */
.top-left {
    top: 0;
    left: 0;
    transform: translate(-16px, -16px);
}

.top-right {
    top: 0;
    right: 0;
    transform: translate(16px, -16px);
}

.bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-16px, 16px);
}

.bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(16px, 16px);
}

.left {
    left: 0;
    top: 50%;
    transform: translate(-16px, -50%);
}

.right {
    right: 0;
    top: 50%;
    transform: translate(16px, -50%);
}

/* Card Content */
.card-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3); */
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-content:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.card-content:hover .icon-container {
    transform: scale(1.1);
}

.icon-container i {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.card-content:hover .card-title {
    color: #93c5fd;
}

.card-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Connecting Lines */
.connecting-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lines-svg {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.animated-path {
    animation: pulse 3s ease-in-out infinite;
}

/* CTA Section */
.cta-container {
    text-align: center;
    margin-top: 64px;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        min-height: 500px;
    }
    
    .image-card {
        width: 280px;
        height: 320px;
    }
    
    .feature-card {
        width: 220px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .content-container {
        flex-direction: column;
        min-height: auto;
        gap: 40px;
    }
    
    .feature-card {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        transform: none !important;
    }
    
    .connecting-lines {
        display: none;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .image-card {
        width: 240px;
        height: 280px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
}



/*Styling FAQ Section*/

.faq-section-new
{
    background: linear-gradient(135deg, #342d7f 0%, #4d2385 50%, #512a99 100%);
    padding: 100px 0;

}


 .faq-section {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.125rem;
            color: white;
            user-select: none;
        }

        .faq-question:hover {
            color: #e0e7ff;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-answer.active {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0.4rem 1.5rem 1.5rem;
            color: #ddd6fe;
            line-height: 1.7;
            font-size: 1rem;
        }

        .cta-section {
            text-align: center;
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-section p {
            font-size: 1.125rem;
            color: #ddd6fe;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: white;
            color: #6366f1;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 1rem 1rem;
            }
        }
