﻿/* --------------------------------------------------
   BASE
-------------------------------------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1A1A1A;
    background: #ffffff;
}

.ss-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Global reset for images & iframes */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Page content wrapper for all subpages */
.ss-page-content {
    padding: 40px 0;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.ss-header {
    background: #1E4E8C;
    color: white;
    padding: 15px 0;
}

.ss-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-logo {
    font-size: 1.6rem;
    font-weight: bold;
}

.ss-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.ss-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.ss-nav a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------
   BUTTONS (GLOBAL)
-------------------------------------------------- */

.ss-btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 5px;
}

.ss-btn-primary {
    background: white;
    color: #1E4E8C;
}

.ss-btn-secondary {
    background: #1E4E8C;
    color: white;
    border: 2px solid white;
}

/* --------------------------------------------------
   SECTIONS (GLOBAL)
-------------------------------------------------- */

.ss-section {
    padding: 60px 0;
}

.ss-bg-light {
    background: #F2F2F2;
}

.ss-section-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* --------------------------------------------------
   FOOTER (DARK THEME + ICONS + SEPARATORS)
-------------------------------------------------- */

.ss-footer {
    background: #0d2a52;
    color: #ffffff;
    padding: 50px 0;
}

.ss-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.ss-footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-footer-icon {
    font-size: 1.3rem;
}

/* Footer links */
.ss-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin: 6px 0;
}

.ss-footer a:hover {
    color: #bcd7ff;
    text-decoration: underline;
}

/* Separator line */
.ss-footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 20px 0;
}

/* Footer bottom layout */
.ss-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px 0 10px; /* spacing fix */
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Left text */
.ss-footer-bottom-left {
    color: #ffffff;
}

/* Right text */
.ss-footer-bottom-right {
    color: #ffffff;
}

/* SIANSOFT fusion style: gradient + underline + glow */
.siansoft {
    font-weight: 700;
    letter-spacing: 0.5px;

    /* Gradient text */
    background: linear-gradient(90deg, #FF7A2F, #FF9A4D, #FFB36A);
    -webkit-background-clip: text;
    color: transparent;

    /* Underline */
    text-decoration: none;
    border-bottom: 2px solid #FF9A4D;
    padding-bottom: 2px;

    /* Glow */
    text-shadow: 0 0 6px rgba(255,140,66,0.35);

    transition: opacity .2s, border-color .2s, text-shadow .2s;
}

.siansoft:hover {
    opacity: 0.85;
    border-bottom-color: #FFB36A;
    text-shadow: 0 0 10px rgba(255,140,66,0.45);
}

/* --------------------------------------------------
   MOBILE RESPONSIVENESS
-------------------------------------------------- */

@media (max-width: 600px) {

    .ss-header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .ss-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .ss-footer {
        padding: 40px 20px;
    }

    .ss-footer-grid {
        gap: 25px;
    }

    .ss-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
