/* NOIDA DIGITIZER PREMIUM UI/UX STYLE DEFINITIONS */

/* Typography settings */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #111827;
    background-color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #CBD5E1;
}

/* --------------------------------------------------------
   CLAYMORPHISM & GLASSMORPHISM TOKENS
   -------------------------------------------------------- */

/* Claymorphic Card */
.clay-card {
    background: #FFFFFF;
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 24px;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.04), 
        0 1px 3px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.clay-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.08), 
        0 0 0 1px rgba(249, 115, 22, 0.05);
}

/* Claymorphic Buttons */
.clay-btn {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    color: #FFFFFF;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.clay-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.clay-btn-secondary {
    background: #F8FAFC;
    color: #111827;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.clay-btn-secondary:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    border-color: #CBD5E1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.clay-btn-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: #FFFFFF;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.clay-btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Glassmorphic Panel */
.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);
}

/* Claymorphic Inputs */
.clay-input {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.clay-input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------
   KEYFRAMES & ANIMATIONS
   -------------------------------------------------------- */

/* Marquee Scrolling (Trusted logos) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Typing text cursor blink */
.typed-cursor {
    display: inline-block;
    width: 2px;
    background-color: #F97316;
    animation: blink 0.8s infinite;
    margin-left: 3px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Floating effect */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float-slow {
    animation: float-slow 5s ease-in-out infinite;
}

/* Pulsing background blur shapes */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
.animate-pulse-glow {
    animation: pulse-glow 8s ease-in-out infinite;
}

/* Featured Ribbon Tag */
.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.2);
}

/* Accordion FAQs Height Transition */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Timeline vertical lines */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background: #E5E7EB;
}
@media (min-width: 768px) {
    .timeline-track::before {
        left: 50%;
        margin-left: -1px;
    }
}

/* Custom Claymorphic Badges */
.clay-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.05); /* very light black */
    color: #111827; /* deep black */
    border: 1px solid rgba(17, 24, 39, 0.1);
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}
.clay-badge-success {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22C55E !important;
    border-color: rgba(34, 197, 94, 0.2) !important;
}
.clay-badge-warning {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #F59E0B !important;
    border-color: rgba(245, 158, 11, 0.2) !important;
}
.clay-badge-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #EF4444 !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
}
.clay-badge-info {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3B82F6 !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

