/* ===========================
   MKTECHSUPPORT Global Styling

/* ===========================
   Container
   =========================== */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.container:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* ===========================
   Headings
   =========================== */
.title, h1, h2, h3 {
    color: #004aad;
    margin-top: 0;
    line-height: 1.3;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #004aad;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

h1 { font-size: 1.8rem; margin-bottom: 15px; }
h2 { font-size: 1.5rem; margin-top: 25px; }
h3 { font-size: 1.2rem; margin-top: 20px; }

/* ===========================
   Paragraphs & Links
   =========================== */
p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

a {
    color: #004aad;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s;
}

a:hover {
    color: #ffcc00;
    text-decoration: underline;
    transform: scale(1.02);
}

/* ===========================
   Lists & Tables
   =========================== */
ul, ol {
    margin-left: 25px;
    line-height: 1.8;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background: #004aad;
    color: #fff;
    text-align: left;
    padding: 12px 15px;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

table tr:last-child td { border-bottom: none; }
table tr:hover { background: #f1f5ff; }

/* ===========================
   Navbar / Header
   =========================== */
/* Header / Navbar Fix */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* full width */
    z-index: 1000;
    background-color: rgba(0, 74, 173, 0.98);
    backdrop-filter: blur(6px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

header:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}



/* Inner navbar container */
.navbar {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto; /* centers inner content */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.navbar .logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.navbar nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s;
}

.navbar nav a:first-child { margin-left: 0; }
.navbar nav a:hover {
    color: #ffcc00;
    transform: scale(1.05);
}

/* Add padding so content isn't hidden under fixed header */
main {
    padding-top: 100px; /* adjust for navbar height */
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #004aad;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: #003180;
}

/* ===========================
   Footer
   =========================== */
footer, .footer-container {
    text-align: center;
    background-color: #004aad;
    color: #fff;
    padding: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

.footer-container a {
    color: #ffd700;
    text-decoration: none;
}
.footer-container a:hover { text-decoration: underline; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .container { width: 90%; padding: 30px; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; align-items: flex-start; padding: 15px; }
    .navbar nav a { margin: 10px 0 0 0; }
    h1, h2 { text-align: center; }
    main { padding-top: 140px; } /* taller mobile navbar */
}

@media (max-width: 480px) {
    .container { padding: 20px; }
    .btn { width: 100%; font-size: 1rem; }
}
