﻿/* ================= GLOBAL SPICE & PIZAZZ ================= */

/* Animated drifting background orbs */
body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vh;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 172, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 42, 95, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: drift 20s infinite alternate linear;
    mix-blend-mode: screen;
}

@keyframes drift {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-45%, -55%) rotate(10deg) scale(1.1); }
    100% { transform: translate(-55%, -45%) rotate(-10deg) scale(0.9); }
}

/* Enhanced bouncy card hover states with multi-color neon shadows */
.card, .service-card, .value-card, .stat-card, .team-card, .footer-col {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.card:hover, .service-card:hover, .value-card:hover, .stat-card:hover, .team-card:hover, .footer-col:hover {
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.25), 0 0 25px rgba(79, 172, 254, 0.15) !important;
    border-color: rgba(79, 172, 254, 0.5) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

/* Titles that pop a bit more with ambient text glow */
h1, h2, h3 {
    text-shadow: 0 0 40px rgba(79, 172, 254, 0.35);
}

/* Extra animated gradient flair on call-to-actions */
.primary-btn, .cta-btn, .services-action-btn.primary, button[type="submit"] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 30%, #ff2a5f 70%, #ff7b9c 100%) !important;
    background-size: 300% 300% !important;
    animation: gradientShift 6s ease infinite !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.primary-btn:hover, .cta-btn:hover, .services-action-btn.primary:hover, button[type="submit"]:hover {
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.6) !important;
    transform: translateY(-4px) scale(1.05) !important;
    color: #fff !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navlink active/hover glow */
.navLink:hover, .navLink.active {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(79, 172, 254, 0.6);
}

/* Sub-text gradient sweep to replace flat colors */
.sub-head, .subtitle, .team-role {
    background: linear-gradient(90deg, #4facfe, #ff2a5f, #4facfe);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Spice up the primary icons / SVGs */
.service-icon, .icon-box {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(255, 42, 95, 0.2)) !important;
    color: #ff2a5f !important;
    box-shadow: 0 0 20px rgba(255, 42, 95, 0.2) inset;
}

/* ========================================================= */
/* ============= UI & INFORMATION CLEANUP ================== */
/* ========================================================= */

/* Form fixes for Contact/RaQ Pages */
.form-wrapper, .call-section {
    background: #0f121a !important; /* Solid dark base to prevent transparency bleed */
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 12px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.fs-input, .fs-textarea, .form-control {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #334155 !important;
    color: #fff !important;
}

.fs-input:focus, .fs-textarea:focus, .form-control:focus {
    border-color: #4facfe !important;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.3) !important;
}

/* Service Page Heading Fixes */
.category-header h2 {
    background: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 2px 10px rgba(79, 172, 254, 0.3);
}

.about-hero h1, .contact-hero h1, .hero h1 {
    background: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Base text contrast improvement */
p, .desc, .lead-text {
    color: rgba(255, 255, 255, 0.85) !important; 
    line-height: 1.7;
    font-size: 1.05rem;
}
/* ================= SERVICE PAGES SPECIFIC ================= */
.service-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 9rem 2rem 4rem; /* Top padding ensures margin below header */
}

.service-hero-content {
    background: rgba(15, 18, 26, 0.9); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-radius: 16px;
    padding: 3.5rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s ease-out forwards;
}

.service-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.service-hero-content i.fa {
    font-size: 3.5rem;
    color: #4facfe;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.4));
    display: block;
}

.service-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.service-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.service-hero-content ul {
    list-style: none;
    text-align: left;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    padding: 0;
}

.service-hero-content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
}

.service-hero-content li::before {
    content: '\2713'; /* Checkmark */
    color: #00f2fe;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.4rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .service-hero-content {
        padding: 2rem;
    }
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
}
/* ================= SUPPORT PAGE SPECIFIC ================= */
.support-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.support-box {
    background: rgba(15, 18, 26, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 172, 254, 0.4);
    border-radius: 16px;
    padding: 50px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(79, 172, 254, 0.1);
}
.support-box h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-family: 'Sora', sans-serif;
}
.support-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.status-badge {
    display: inline-block;
    background: rgba(234, 0, 42, 0.1);
    color: #ff3366;
    border: 1px solid rgba(234, 0, 42, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

