:root {
    --clr-primary: #043873;
    --clr-accent: #F99D1C;
    --clr-accent-hover: #4f46e5;
    --clr-light: #fff;
    --clr-muted: #64748b;
}

body {
    background-color: var(--clr-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── NAVBAR ─── */
.navbar-custom {
    background: var(--clr-light);
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    padding: .85rem 0;
}

.navbar-custom .navbar-brand {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -.5px;
    text-decoration: none;
}

.navbar-custom .navbar-brand span {
    color: var(--clr-accent);
}

.navbar-custom .nav-link {
    color: #043873;
    font-weight: 500;
    font-size: .92rem;
    padding: .5rem .85rem;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #043873;
    background: rgba(255,255,255,.1);
}

.navbar-custom .nav-link i {
    margin-right: 5px;
    opacity: .85;
}

.navbar-custom .btn-nav-action {
    background: var(--clr-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: .88rem;
    padding: .45rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
}

.navbar-custom .btn-nav-action:hover {
    background: #fff;
    color: var(--clr-accent);
    border: solid 1px var(--clr-accent);
}

/* ─── HERO ─── */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--clr-primary) 0%, #043873 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('/assets/img/wave.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -.8px;
}

.hero-section h1 span {
    color: var(--clr-accent);
}

.hero-section p {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 1.8rem;
}

.hero-second-section {
    background: #fff;
    color: black;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-second-section h1 {
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -.8px;
}

.hero-second-section p {
    color: black;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 1.8rem;
}

/* TITLE */
.information-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b3d6d;
}

.highlight {
    background-image: url('/assets/img/yellow-line.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100%;

    padding-bottom: 10px;
}

.hero-third-section {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #043873 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-third-section h1 {
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -.8px;
}

.hero-third-section p {
    color: #fff;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 1.8rem;
}

.second-highlight {
    background-image: url('/assets/img/yellow-long-line.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100%;

    padding-bottom: 10px;
}

.btn-hero {
    background: var(--clr-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .7rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.btn-hero:hover {
    background: #fff;
    color: var(--clr-accent);
    border: solid 1px var(--clr-accent);
    transform: translateY(-1px);
}

/* ─── CARDS ─── */
.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: transform .2s, box-shadow .2s;
    background: #fff;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.card-custom .card-title {
    font-weight: 700;
    color: var(--clr-primary);
    font-size: 1.05rem;
}

.card-custom .card-text {
    color: var(--clr-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* ─── STATS ROW ─── */
.stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 1.4rem 1rem;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: .82rem;
    color: var(--clr-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
}

/* ─── TABLE ─── */
.table-custom {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden;
}

.table-custom table {
    margin: 0;
}

.table-custom thead {
    background: var(--clr-primary);
    color: #fff;
}

.table-custom thead th {
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .9rem 1rem;
    border: none;
}

.table-custom tbody td {
    padding: .85rem 1rem;
    color: var(--clr-primary);
    font-size: .92rem;
    border-bottom: 1px solid #f1f5f9;
}

.table-custom tbody tr:last-child td {
    border-bottom: none;
}

.badge-status {
    font-size: .76rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 20px;
}

/* ─── FOOTER ─── */
.footer-custom {
    background: var(--clr-primary);
    color: rgba(255,255,255,.5);
    padding: 1.8rem 0;
    font-size: .85rem;
    margin-top: auto;
}

.footer-custom a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
}

.footer-custom a:hover {
    color: #fff;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .3s ease;
}

.project-card-link:hover {
    transform: translateY(-5px);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: box-shadow .3s;
}

.project-card-link:hover .project-card {
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.project-card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    transition: .4s;
}

/* overlay text */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 1.5rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.9) 100%);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* hover zoom */
.project-card:hover img {
    transform: scale(1.05);
}

/* show overlay on hover */
.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}