@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Rozha+One&family=Yantramanav:wght@400;500;700;900&display=swap');

[x-cloak] {
    display: none !important;
}

/* Anti-Copy & Content Protection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow normal text selection inside input fields so users can fill forms */
input, textarea, select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

:root {
    --primary-solar: #F59E0B;
    --primary-solar-glow: rgba(245, 158, 11, 0.4);
    --secondary-sky: #0284C7;
    --accent-emerald: #10B981;
    --dark-bg: #0B1120;
    --card-bg: rgba(15, 23, 42, 0.75);
    --card-border: rgba(255, 255, 255, 0.12);
    --card-border-glow: rgba(245, 158, 11, 0.3);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: #F8FAFC;
    overflow-x: hidden;
    min-height: 100vh;
}

.font-heading {
    font-family: 'Outfit', sans-serif;
}

.font-hindi {
    font-family: 'Yantramanav', sans-serif;
}

/* Aurora Solar Background Mesh */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0B1120 75%);
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: orbFloat 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.aurora-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, rgba(217, 119, 6, 0.1) 70%);
    top: -15%;
    left: 15%;
    animation-duration: 14s;
}

.aurora-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.4) 0%, rgba(14, 165, 233, 0.05) 70%);
    top: 35%;
    right: -10%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.aurora-orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.05) 70%);
    bottom: -10%;
    left: 20%;
    animation-duration: 16s;
    animation-delay: -8s;
}

.solar-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, 30px) scale(1.08);
    }
    100% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

/* Glassmorphism Components */
.glass-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-input {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.glass-input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    outline: none;
    background: rgba(15, 23, 42, 0.95);
}

/* Solar Shimmer & Glow Effects */
.solar-glow-btn {
    position: relative;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
    transition: all 0.3s ease;
    overflow: hidden;
}

.solar-glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg);
    transition: all 0.75s ease;
}

.solar-glow-btn:hover::after {
    left: 130%;
}

.solar-glow-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.65);
}

.solar-text-gradient {
    background: linear-gradient(135deg, #FDE047 0%, #F59E0B 50%, #FB923C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyan-text-gradient {
    background: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: #1E293B;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F59E0B;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8), 0 0 0 3px #FFFFFF;
    transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F59E0B;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8), 0 0 0 3px #FFFFFF;
    border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B1120;
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F59E0B;
}

/* Pulse animation */
@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.animate-pulse-dot {
    animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
