/* ===== NEXTGENASSIST - Custom Styles ===== */

* { box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; }

/* Gradient utilities */
.bg-blue-grad   { background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%); }
.bg-orange-grad { background: linear-gradient(135deg, #e85d04 0%, #ff8c00 100%); }
.bg-navy-grad   { background: linear-gradient(135deg, #1a2a5e 0%, #0066cc 100%); }

/* Text gradients */
.text-blue-grad {
    background: linear-gradient(135deg, #0066cc, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-orange-grad {
    background: linear-gradient(135deg, #e85d04, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Navbar shrink on scroll */
#main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,102,204,0.18);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,170,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,93,4,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section heading style */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,170,255,0.1));
    border: 1px solid rgba(0,102,204,0.2);
    color: #0066cc;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Card hover effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,102,204,0.15);
}

/* Icon box */
.icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,170,255,0.15));
    flex-shrink: 0;
}

/* Step connector line */
.step-line::after {
    content: '';
    position: absolute;
    top: 30px; left: calc(100% + 0px);
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    opacity: 0.2;
}

/* Testimonial card */
.testimonial-card {
    border-left: 4px solid #0066cc;
}

/* Stat number */
.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a2a5e 0%, #0066cc 60%, #00aaff 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Divider orange accent */
.divider-accent {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.divider-accent span {
    display: block;
    height: 3px; border-radius: 2px;
}
.divider-accent .line-blue  { width: 40px; background: #0066cc; }
.divider-accent .line-orange { width: 20px; background: #e85d04; }

/* Blog card image */
.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

/* Policy pages */
.policy-content h2 { color: #1a2a5e; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.policy-content h3 { color: #0066cc; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.05rem; }
.policy-content p  { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; color: #4b5563; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: 0.5rem; line-height: 1.7; }

/* Breadcrumb */
.page-hero {
    background: linear-gradient(135deg, #1a2a5e 0%, #0066cc 100%);
    padding: 60px 0;
}

/* Scroll to top button */
#scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: white; border: none; border-radius: 50%;
    cursor: pointer; display: none; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,102,204,0.35);
    z-index: 999; transition: transform 0.2s;
}
#scroll-top:hover { transform: scale(1.1); }
#scroll-top.show  { display: flex; }

