/**
 * Complete CSS Reset with Professional Styling
 * Eliminates ALL hover effects and provides clean professional design
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3 !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #555 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff;
    border: none;
}

.btn-outline-primary {
    color: #0056b3;
    border: 2px solid #0056b3;
    background-color: transparent;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Professional sections */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section { padding: 3rem 0; }
    .section-title { font-size: 2rem; }
    h1 { font-size: 2rem; }
}

/**
 * COMPLETE HOVER EFFECTS ELIMINATION
 * This section completely prevents any text or element movement when moving cursor
 */

/* CRITICAL: Remove ALL transitions and transformations */
*, *::before, *::after {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

/* Disable all hover effects that cause movement */
*:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Specific fixes for common movement-causing elements */
.btn:hover,
.btn-primary:hover,
.btn-outline-primary:hover,
.document-card:hover,
.nav-link:hover,
a:hover {
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
}

/* Remove translateY transformations */
.btn-primary:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline-primary:hover {
    transform: none !important;
    box-shadow: none !important;
}

.document-card:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; /* Keep original shadow */
}

/* Force static positioning for all elements */
* {
    position: static !important;
}

/* Override any flex or grid movements */
.hero-title,
.hero-subtitle,
.section-title,
.document-title,
.document-description,
p, h1, h2, h3, h4, h5, h6,
.nav-link,
.btn,
.card,
.step,
.feature {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: static !important;
}

/* Disable any keyframe animations */
@keyframes * {
    0%, 100% {
        transform: none !important;
    }
}

/* Force all elements to stay in place */
body *, 
body *:hover,
body *:focus,
body *:active {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
}

/* Remove any CSS that could cause layout shifts */
.navbar,
.hero-section,
.container,
.row,
.col,
.card,
.btn {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Ensure text stays exactly where it is */
span, p, h1, h2, h3, h4, h5, h6, a, button, div {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: static !important;
    will-change: auto !important;
}

/* Remove any backdrop or overlay effects */
::before,
::after {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Disable GPU acceleration that might cause movement */
* {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
}

/* Final override to ensure absolute stillness */
.no-movement,
.no-movement *,
.no-movement *:hover,
.no-movement *:focus {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: static !important;
    will-change: auto !important;
}