/*
 * Copyright (c) 2026 PayNnet. All rights reserved.
 * Unauthorized copying, modification, or distribution of this file is strictly prohibited.
 * This software is proprietary and confidential.
 */

/* Global Styles */
:root {
    --primary-color: #0046b8;    /* Deep Blue from PPT */
    --secondary-color: #002a6e;
    --accent-color: #00d4ff;     /* Cyan/Bright Blue */
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-color: #f8f9fa;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a1a1a;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --hover-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-white-50 { color: rgba(255,255,255,0.7) !important; }
.text-muted { color: #6c757d !important; }
.bg-dark { background-color: #111 !important; }
.bg-light { background-color: #f9fafb !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
