/* ===== Global ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050B08;
    color: #d4efe3;
    scroll-behavior: smooth;
}

/* Fade Animation */
.fade-section {
    animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Rolling Bar ===== */
.rolling-bar {
    width: 100%;
    background: linear-gradient(to right, #050B08, #0C1A14, #050B08);
    border-bottom: 2px solid #2fa76b;
    color: #adffd2;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.rolling-text {
    white-space: nowrap;
    padding-left: 100%;
    animation: roll 20s linear infinite;
}
@keyframes roll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ===== Header ===== */
header {
    position: sticky;
    top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,20,15,0.9);
    padding: 18px 34px;
    border-bottom: 2px solid #2fa76b;
    backdrop-filter: blur(12px);
    z-index: 900;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3ce48a;
}

nav a {
    color: #8bd9b2;
    margin: 0 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
nav a:hover,
nav a.active {
    color: #3ce48a;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    color: #9be7c8;
    display: none;
    font-size: 1.7rem;
}
@media (max-width: 760px) {
    nav {
        display: none;
        flex-direction: column;
        background: #07100C;
        border-left: 2px solid #2fa76b;
        border-bottom: 2px solid #2fa76b;
        width: 210px;
        position: absolute;
        top: 80px;
        right: 0;
        padding: 20px;
    }
    nav.show { display: flex; }
    .menu-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
    height: 35vh;
    background: radial-gradient(circle at top, #0F1E18, #050B08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    color: #b4f8d5;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== Policies List ===== */
.policies-list {
    max-width: 1150px;
    margin: auto;
    padding: 55px 25px;
}

.policy-cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.policy-card {
    background: #0C1A14;
    border-radius: 12px;
    padding: 22px;
    text-decoration: none;
    color: #d4efe3;
    box-shadow: 0 5px 18px rgba(0,0,0,0.55);
    transition: 0.3s ease;
}
.policy-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.75);
}
.policy-card h3 {
    margin-top: 0;
    color: #9be7c8;
}

/* ===== Footer (Updated) ===== */
.site-footer {
    margin-top: 40px;
    background: #07100C;
    border-top: 2px solid #2fa76b;
    padding: 34px 18px;
    text-align: center;
    color: #8bd9b2;
}

.footer-content p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-content a {
    color: #3ce48a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.footer-content a:hover {
    color: #58ffb4;
}
.policy-header {
    padding: 60px 20px 40px;
    text-align: center;
    background: var(--header-bg, #1a1a1a);
    border-bottom: 1px solid #333;
}

.policy-container {
    margin-top: 40px;
    padding: 0 20px 60px;
}

.policy-section {
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2b2b2b;
}

.policy-section h2 {
    margin-bottom: 10px;
}
