/* 
  DEEPRUDRA (OPC) PRIVATE LIMITED - Custom Stylesheet & Design System
  Domain: deeprudra.com
  Theme: Dark Mode (Slate-950 + Cyan #06B6D4 Accent)
*/

/* Tailored Font & Root Settings */
html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #0f172a;
    border: 2px solid #020617;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* Keyframe Animations */
@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-pulse-slow {
    animation: pulseSlow 4s ease-in-out infinite;
}

.animate-float {
    animation: floatSlow 6s ease-in-out infinite;
}

/* Button & Utility Classes */
.btn-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cyan:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.btn-cyan-outline {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cyan-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
    transform: translateY(-1px);
}

/* Card Hover Micro-animations */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.25);
}

/* FAQ Accordion Styling */
.faq-item .faq-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

/* Estimator Checkbox styling */
.estimator-option input[type="checkbox"]:checked ~ span {
    color: #38bdf8;
}
.estimator-option:has(input[type="checkbox"]:checked) {
    border-color: rgba(6, 182, 212, 0.5);
    background-color: rgba(6, 182, 212, 0.05);
}

/* Netflix-Style Cinematic Typography Animation */
@keyframes netflixGlowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(6, 182, 212, 0.4), 0 0 40px rgba(6, 182, 212, 0.2);
    }
    50% {
        text-shadow: 0 0 35px rgba(6, 182, 212, 0.8), 0 0 70px rgba(59, 130, 246, 0.5);
    }
}

.netflix-glow-text {
    animation: netflixGlowPulse 3s ease-in-out infinite;
}

#netflix-animated-text {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

#netflix-animated-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    box-shadow: 0 0 15px #06b6d4;
    border-radius: 2px;
}

