/* Global Reset & Modern Styling Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Accessibility: skip link */
.skip-link:focus {
    position: absolute;
    left: 20px;
    top: 12px;
    z-index: 10000;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid rgba(161, 3, 3, 0.1);
    outline: none;
}


body {
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 400;
    /* Slightly larger base typography across the site */
    font-size: 17px;
}



/* FAQ Font Override */

:root {
    --primary-color: #200596;
    /* Sleek Dark Midnight Blue */
    --accent-color: #fbff00;
    /* Radiant Sun Gate Gold */
    --accent-hover: #1f0594;
    /* Deeper Gold */
    --light-bg: #e7e6e6;
    --text-color: #000000;
    --muted-text: #0a0a0a;

    --white: #ffffff;
    --success: #2ecc71;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Global typography baseline */
body {
    font-weight: 300;
}

/* Bold everything (matches previous intent, but without breaking font-family/size) */
body,
body * {
    font-weight: 700 !important;
}





/* Customer-Friendly Navigation Bar UI */
header {
    background-color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 192px;
    height: 70px;
    object-fit: contain;
    display: block;
}



.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(17, 29, 40, 0.9), rgba(17, 29, 40, 0.85)), url('../images/simple-images.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 90px 20px;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.hero p {
    font-size: 19px;
    max-width: 750px;
    margin: 0 auto 30px;
    color: #bdc3c7;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
}

/* Keyboard focus (accessibility) */
:focus-visible {
    outline: 3px solid rgba(251, 255, 0, 0.65);
    outline-offset: 2px;
    border-radius: 10px;
}

/* Keep focus styling keyboard-only (mouse users won't see this) */
.btn-primary:focus-visible {
    box-shadow: 0 0 0 4px rgba(251, 255, 0, 0.35);
}

.form-control:focus-visible {
    border-color: rgba(32, 5, 150, 0.35);
    box-shadow: 0 0 0 4px rgba(32, 5, 150, 0.12);
}

.btn-primary:disabled,
.btn-primary.btn-loading {
    opacity: 0.9;
    cursor: wait;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
    transition: all 0.2s ease;
}

/* Login Button - Split Slide Animation */
.btn-login {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #200596;
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
    min-width: 100px;
}

.btn-login::before,
.btn-login::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #f1c40f;
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-login::before {
    top: 0;
    transform: translateY(0);
}

.btn-login::after {
    bottom: 0;
    transform: translateY(0);
}

.btn-login span {
    position: relative;
    z-index: 1;
}

.btn-login:hover {
    color: #fff;
}

.btn-login:hover::before {
    transform: translateY(-100%);
}

.btn-login:hover::after {
    transform: translateY(100%);
}

#serviceLeadFormStatus {
    min-height: 44px;
    /* reserve space to reduce layout shift */
}

/* Generic shared form status element (used when pages create/append it) */
.result-display.result-display--form-status {
    min-height: 44px;
}


/* When hidden, keep the reserved height but avoid reading the old message */
#serviceLeadFormStatus[aria-hidden="true"] {
    visibility: hidden;
}

#serviceLeadFormStatus.result-display {
    transition: background-color 120ms ease, border-color 120ms ease;
}

@media (prefers-reduced-motion: reduce) {
    #serviceLeadFormStatus {
        transition: none;
    }
}

/* Shared form status messages (used by multiple pages) */
.result-display.form-status--loading,
.result-display.form-status--success,
.result-display.form-status--error {
    display: block;
    border-width: 1px;
    border-style: dashed;
}

.form-status--loading {
    background-color: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
}

.form-status--success {
    background-color: #f2ffdf;
    border-color: var(--accent-color);
}

.form-status--error {
    background-color: #fff0f0;
    border-color: #e74c3c;
}





/* Main Container Layout */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Section rhythm helpers (safe to add; pages can opt-in later) */
.section {
    padding: 70px 0;
}

.section+.section {
    border-top: 1px solid rgba(32, 5, 150, 0.08);
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(32, 5, 150, 0.18), transparent);
    margin: 35px auto;
    width: 80%;
}

.section-title {

    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-header .section-intro,
.section-header .career-intro {
    font-size: 20px;
}

/* Grid layout & Interactive Cards */
.grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    display: grid;
    align-items: start;
}

/* Make the 3-column cards use the same height within their grid */
.grid .card {
    height: 100%;
}

.grid.card-grid {
    align-items: stretch;
}

.grid.card-grid .card {
    height: 100%;
    padding: 22px;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {

    .grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .nav-links li {
        margin-left: 0;
    }
}


.card {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    /* Softer, modern elevation */
    box-shadow:
        0 10px 24px rgba(16, 24, 40, 0.10),
        0 2px 6px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(32, 5, 150, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 180px at 50% -10%, rgba(251, 255, 0, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 36px rgba(16, 24, 40, 0.12),
        0 4px 12px rgba(16, 24, 40, 0.08);
    border-color: rgba(251, 255, 0, 0.55);
}

.card:hover::before {
    opacity: 1;
}


.card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 22px;
}

.card p {
    color: var(--muted-text);
}

/* Mini stats inside calculator */
.mini-stat {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 12px 12px;
}

.mini-stat-label {
    font-size: 12px;
    color: var(--muted-text);
    margin-bottom: 6px;
}

.mini-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Interactive Calculator Widget Component */
.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    margin-inline: auto;
    border-left: 5px solid var(--accent-color);
}

.calculator-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-height: 420px;
    overflow-y: auto;
    padding: 20px 20px 20px 40px;
    border: 1px solid rgba(32, 5, 150, 0.15);
    border-radius: 12px;
    background: #fafbfc;
    scroll-behavior: smooth;
}

/* Horizontal Timeline */
.horizontal-timeline-container {
    overflow-x: auto;
    overflow-y: visible;
    padding: 35px 20px 25px;
    border: 1px solid rgba(32, 5, 150, 0.15);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.horizontal-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-timeline-container::-webkit-scrollbar-track {
    background: #e7e6e6;
    border-radius: 4px;
}

.horizontal-timeline-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.horizontal-timeline {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
    min-width: max-content;
}

.ht-line {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9a862, var(--primary-color));
    border-radius: 3px;
}

.ht-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 160px;
}

.ht-dot {
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    top: 39px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.ht-year {
    font-weight: 800;
    font-size: 18px;
    color: #200596;
    white-space: nowrap;
    margin-bottom: 85px;
    letter-spacing: 0.5px;
}

.ht-content {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(32, 5, 150, 0.12);
    text-align: center;
    min-width: 145px;
    max-width: 145px;
    margin-top: 0;
}

.ht-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #200596;
    line-height: 1.3;
}

.ht-content p {
    font-size: 12px;
    color: #444;
    margin: 0;
    line-height: 1.45;
    font-weight: 500;
}

.ht-present .ht-dot {
    background: #e63946;
    width: 26px;
    height: 26px;
    top: 37px;
    border: 4px solid var(--white);
}

.ht-present .ht-year {
    color: #e63946;
    font-weight: 800;
}

.ht-present .ht-content {
    background: #fff8f8;
    border-color: #e63946;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.12);
}

.ht-present .ht-year {
    color: #e63946;
}

.ht-present .ht-content {
    background: #fff5f5;
    border-color: #e63946;
}

.ht-present .ht-content h3 {
    color: #e63946;
}

.timeline::-webkit-scrollbar {
    width: 8px;
}

.timeline::-webkit-scrollbar-track {
    background: #e7e6e6;
    border-radius: 4px;
}

.timeline::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.timeline::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.timeline__line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    padding-bottom: 35px;
    padding-left: 30px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -29px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline__content {
    background: var(--white);
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
    border: 1px solid rgba(32, 5, 150, 0.1);
}

.timeline__content:hover {
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.12);
    transform: translateX(4px);
    transition: all 0.25s ease;
}

.timeline__content--present {
    background: linear-gradient(135deg, #fff9e6, #fffef8);
    border-color: var(--accent-color);
}

.timeline__year {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline__content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline__content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 6px;
}

.timeline__content p:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccd1d9;
    border-radius: 6px;
    font-size: 16px;
    opacity: 0.70;
    transition: all 0.2s ease;
}

.form-control:hover {
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 71, 0.15);
    opacity: 1;
}

.result-display {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    border: 1px dashed var(--accent-color);
}

/* Career Specific Badges */
.badge {
    background-color: var(--success);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.badge-urgent {
    background-color: #e74c3c;
}

/* FAQ Component */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-tools {
    border-left: 5px solid var(--accent-color);
}

.faq-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.faq-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.faq-filter-chip {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.faq-filter-chip:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    border-color: rgba(32, 5, 150, 0.3);
}

.faq-filter-chip.is-active {
    background: var(--accent-color);
    border-color: rgba(32, 5, 150, 0.2);
}

/* Service chips hover */
.service-chip:hover {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
}

.faq-no-results {
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 800;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    text-align: center;
}

@media (max-width: 520px) {
    .faq-search-row {
        grid-template-columns: 1fr;
    }
}

/* Existing FAQ item styles */


.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    cursor: pointer;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.faq-item summary:hover {
    background-color: rgba(251, 255, 0, 0.08);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-item[open] summary::before {
    content: "−";
    transform: rotate(180deg);
}

/* Smooth expand/collapse animation */
.faq-item p {
    padding: 0 20px 16px 54px;
    color: var(--muted-text);
    font-size: 1rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item[open] p {
    max-height: 200px;
    opacity: 1;
}

/* Reusable Section Intro */
.section-intro {
    text-align: center;
    max-width: 820px;
    margin: -25px auto 45px;
    color: var(--muted-text);
}

/* CTA Block */
.cta-block {
    background: #ffffff;
    padding: 10px;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-left: 6px solid var(--accent-color);
}


/* Scroll Reveal Animations */
@keyframes sgFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sgFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sgFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-18px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sgFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(18px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sgZoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sgPopIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translate3d(0, 10px, 0);
    }

    70% {
        opacity: 1;
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
    }
}

/* Basic class to apply fade-in */
.ewallet-reveal[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 600ms ease, transform 600ms ease;
}

.ewallet-reveal[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Card entry animations (FAQ + other .card elements) */
.card-anim {
    will-change: transform, opacity;
    opacity: 0;
    padding: 35px;
    box-sizing: border-box;
}

.card-anim.is-visible {
    opacity: 1;
    animation-duration: 700ms;
    animation-timing-function: cubic-bezier(.2, .8, .2, 1);
    animation-fill-mode: both;
}

/* Page navigation fade-out (A: fade-in on scroll, fade-out when changing pages) */
body.sg-page-fade-out {
    animation: sgPageFadeOut 260ms ease forwards;
}

@keyframes sgPageFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.card-anim[data-anim="fade-up"].is-visible {
    animation-name: sgFadeInUp;
}

.card-anim[data-anim="fade-down"].is-visible {
    animation-name: sgFadeInDown;
}

.card-anim[data-anim="fade-left"].is-visible {
    animation-name: sgFadeInLeft;
}

.card-anim[data-anim="fade-right"].is-visible {
    animation-name: sgFadeInRight;
}

.card-anim[data-anim="zoom"].is-visible {
    animation-name: sgZoomIn;
}

.card-anim[data-anim="pop"].is-visible {
    animation-name: sgPopIn;
}

@media (prefers-reduced-motion: reduce) {
    .card-anim {
        opacity: 1;
        transform: none !important;
    }

    .card-anim.is-visible {
        animation: none !important;
    }
}


/* E-Wallet section styling */
.ewallet-section {
    margin-top: 70px;
}

.ewallet-header {
    text-align: center;
    margin-bottom: 22px;
}

.ewallet-title {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ewallet-subtitle {
    color: var(--muted-text);
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.ewallet-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right, #ecfdf5, #ecf6ff);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    padding: 26px;
}

.ewallet-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ewallet-icon {
    font-size: 34px;
}

.ewallet-feature {
    font-size: 22px;
    color: #047857;
}

.ewallet-description {
    color: #475569;
    margin-bottom: 18px;
}

.ewallet-supported-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #334155;
    margin-bottom: 12px;
}

.ewallet-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.ewallet-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ewallet-logo-label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

/* Footer Element */
footer {
    background-color: var(--primary-color);
    color: #a6b1bc;
    text-align: center;
    padding: 25px;
    margin-top: 80px;
    font-size: 14px;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(229, 255, 0, 0.12);
    border: 1px solid rgba(229, 255, 0, 0.35);
    color: var(--accent-color);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
    transform: translateY(-2px);
    background: rgba(229, 255, 0, 0.22);
}

.footer-social-icon {
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
}

.sgpi-services {
    padding: 2rem;
    background-image: url("../images/career.png");
    opacity: 0.8;
}

/* Services Hero Section */
.services-hero {
    background-image: url('../Images/Gemini_Generated_Image_a94xc5a94xc5a94x.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 98, 0.35) 0%, rgba(139, 115, 85, 0.35) 50%, rgba(201, 168, 98, 0.35) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-logo-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.services-logo-mark svg {
    width: 100%;
    height: 100%;
}

.services-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
    border: 1px solid rgba(32, 5, 150, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.12);
    border-color: rgba(32, 5, 150, 0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    color: #200596;
    background: rgba(201, 168, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.6;
    margin: 0;
}

.calculator-container {
    background: url("../images/Gemini_SUNRAY2_Image_6678jf6678jf6678.png");
    opacity: 0.97;
}

.calculator-section {
    max-width: 720px;
    margin-inline: auto;
}

/* Shared utilities / reusable design components */
.text-muted {
    color: var(--muted-text);
}

/* Careers page small typography utilities */
.grid-gap-15 {
    gap: 15px;
}

/* Used to override calculator inline grid styles on careers page */
.grid-2col {
    grid-template-columns: 1fr 1fr;
}

/* Extra spacing utility for 2-col grids */
.grid-gap-15 {
    gap: 15px;
}

.career-form-help {
    font-size: 12px;
    color: var(--muted-text);
    margin-top: 6px;
}

/* Careers form resume filename UI (used by static/js/careers.js) */
.resume-file-info {
    margin-top: 10px;
}

.resume-file-info__hint {
    color: var(--muted-text);
    font-weight: 600;
}

.resume-file-info__filename {
    color: var(--primary-color);
    font-weight: 800;
}

.resume-file-info__size {
    color: var(--muted-text);
    font-weight: 700;
}

.resume-file-info__type {
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

.career-intro {

    text-align: center;
    max-width: 800px;
    margin: -35px auto 15px;
    color: var(--muted-text);
}

.career-positions-title {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.career-apply-box {
    margin-top: 60px;
    max-width: 700px;
}

.career-body-small {
    margin-top: 10px;
    font-size: 14px;
}

.career-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted-text);
    margin-bottom: 15px;
}


/* Trust / Proof section (reusable across pages) */
.trust-section {
    margin-top: 55px;
}

.trust-header {
    text-align: center;
    max-width: 820px;
    margin: -20px auto 30px;
}

.trust-header p {
    margin-top: 10px;
    color: var(--muted-text);
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: transparent !important;
    background-image: none !important;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-card {
    background: var(--white);
    border: 1px solid rgba(32, 5, 150, 0.10);
    border-radius: 16px;
    padding: 18px;
    box-shadow:
        0 10px 24px rgba(16, 24, 40, 0.06),
        0 2px 6px rgba(16, 24, 40, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 255, 0, 0.55);
    box-shadow:
        0 16px 36px rgba(16, 24, 40, 0.10),
        0 4px 12px rgba(16, 24, 40, 0.06);
}

.trust-card .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(251, 255, 0, 0.18);
    border: 1px solid rgba(251, 255, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--muted-text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}

/* Reduce reliance on inline styles in future pages */
.callout {
    background: #ffffff;
    border-left: 6px solid var(--accent-color);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(32, 5, 150, 0.08);
}