:root {
    --gov-blue: #13253aff;
    --gov-deep: #010a18ff;
    --accent-yellow: #facc15;
    --accent-red: #d50000;
    --muted: #5b6b85;
    --card-border: #e5e7eb;
}

html{
    scroll-behavior: smooth;
}

/* Top utility bar */
.utility {
    background: #ffffff;
    border-bottom: 1px solid var(--card-border);
}

.gov-logo {
    height: 44px;
}

/* Section Title with underline bar */
.section-title {
    font-weight: 800;
    color: linear-gradient(135deg, #2f5069ff, #006eb8, #4ca4d8);
    ;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #facc15, #f59e0b);
    margin-top: 8px;
}

/* Notice box like NCS */
.notice {
    background: linear-gradient(90deg, #fff7e0, #ffffff);
    border-left: 4px solid var(--accent-red);
}

/* Icon card */
.info-card {
    background: #ffffffff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(6, 8, 15, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 8, 15, 0.08);
}

.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: var(--accent-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* What's new marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee>div {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Small responsive tweaks */
@media (max-width:768px) {
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* footer small */
footer a {
    color: var(--gov-deep);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 150px 40px;
    background-color: #f5f9ff;
    /* Same as landing page */
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-content h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #00e5ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(53, 50, 50, 0.6);
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 229, 255, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 15px 30px;
    background: rgba(0, 229, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

.premium-card {
    background: linear-gradient(to bottom right, #ffffff, #f1f4f9);
    border-radius: 15px;
    padding: 15px 15px;
    text-align: center;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 12px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.10),
        0 4px 14px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom right, #ffffff, #eef3ff);
}

.premium-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d2241;
    letter-spacing: -1px;
}

.premium-label {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #556070;
    font-weight: 500;
}