body {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Hind', sans-serif;
    overflow-x: hidden;
}

/* Simple Pattern */
.bg-pattern {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-image: radial-gradient(#004a8f 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Service Card */
.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-bottom: 4px solid #004a8f;
    transition: all 0.2s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #ff9933;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Marquee Container */
.marquee-container { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #004a8f; border-radius: 4px; }

/* Tri-color Border */
.tricolor-border {
    border-top: 4px solid #ff9933;
    border-bottom: 4px solid #138808;
}