/* GLOBAL */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* HEADINGS */
h2, h3, h4, h5 {
    font-weight: 600;
    color: #0c234b;
}

/* SPACING SYSTEM */
.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }

/* TYPOGRAPHY SCALE */
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p {
    font-size: 15px;
    line-height: 1.7;
}

/* CONTAINER WIDTH REFINEMENT */
.container {
    max-width: 1140px;
}


.btn {
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
}

/* SECONDARY BUTTON */
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
    background: #fff;
    color: #0c234b;
}

.card {
    transition: 0.3s;
    border: 1px solid #f1f1f1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ACTIVE INDICATOR (SUBTLE TOP BORDER) */
.navbar-nav .nav-link.active {
    background: transparent;
    color: #21bda1 !important;
    border-bottom: 2px solid #21bda1;
}

/* REMOVE BACKGROUND STYLE */
.navbar-nav .nav-link:hover {
    background: transparent;
}

@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        box-shadow: none;
        border: none;
    }
}

:root {
    --primary: #21bda1;
    --dark: #0c234b;
    --light-bg: #f8fafc;
}

/* LINKS */
a {
    text-decoration: none;
}
a:hover {
    color: #21bda1;
}

/* SECTION */
section {
    padding: 80px 0;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(12,35,75,0.85), rgba(12,35,75,0.9)),
                url('../images/research2.jpg') center/cover no-repeat;
    color: #fff;
    padding: 110px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================= BUTTON ================= */
.btn-primary {
    background-color: #21bda1;
    border: none;
    border-radius: 30px;
}
.btn-primary:hover {
    background-color: #199d86;
}

/* ================= NAVBAR ================= */
#mainNavbar {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

#mainNavbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* LOGO */
.navbar-brand img {
    height: 60px;
    transition: 0.3s;
}
#mainNavbar.scrolled .navbar-brand img {
    height: 45px;
}

/* NAV LINKS */
.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #0c234b;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.25s;
}

/* HOVER */
.navbar-nav .nav-link:hover {
    background: rgba(33,189,161,0.08);
    color: #21bda1;
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    background: #21bda1;
    color: #fff !important;
}

/* DROPDOWN */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ================= CARDS ================= */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ================= SECTION TITLES ================= */
.section-title {
    font-size: 28px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
}

/* ================= OBJECTIVES ================= */
.objective-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    height: 100%;
}

.objective-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(33,189,161,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    color: #21bda1;
    font-size: 22px;
}

/* ================= PAGE BANNER ================= */
.page-banner {
    background: linear-gradient(135deg, #0c234b, #163a6b);
    padding: 40px 0;
    color: #fff;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    color:white;
}

/* ===== BREADCRUMB PROFESSIONAL STYLE ===== */

.breadcrumb {
    display: inline-flex;
    background: #ffffff;            /* clean white background */
    padding: 6px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* LINKS */
.breadcrumb-item a {
    color: #0c234b;
    font-weight: 500;
    transition: 0.2s;
}

/* HOVER */
.breadcrumb-item a:hover {
    color: #21bda1;
}

/* ACTIVE */
.breadcrumb-item.active {
    color: #21bda1;
    font-weight: 600;
}

/* DIVIDER (CUSTOM) */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #999;
    padding: 0 8px;
}



/* OBJECTIVE CARD IMPROVED */
.objective-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
}

.objective-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* RESOURCE CARD */
.resource-card i {
    color: #21bda1;
}

/* EXPLORE CARD (PREMIUM) */
.explore-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.explore-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.explore-card:hover img {
    transform: scale(1.05);
}

.explore-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.explore-card h5 a {
    color: #fff;
    font-weight: 600;
}

/* CONTENT BOX */
.content-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #21bda1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    font-size: 15.5px;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* MISSION CARD */
.mission-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.mission-card i {
    font-size: 26px;
    color: #21bda1;
    margin-bottom: 10px;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ACTIVITY CARD */
.activity-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #21bda1;
    height: 100%;
}

.activity-card ul {
    padding-left: 18px;
}

.activity-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}
section:nth-child(even) {
    background-color: #f9fbfd;
}

.table {
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
}

.table thead {
    background-color: #0c234b;
    color: #fff;
}

.footer {
    background: #0c234b;
    color: #cfd8e3;
    padding: 50px 0 20px;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* subtle underline accent */
.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #21bda1;
    display: block;
    margin-top: 6px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cfd8e3;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #21bda1;
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 25px 0;
}

.footer-copy {
    font-size: 13px;
    color: #9fb3c8;
}
.resource-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.resource-title {
    font-size: 18px;
    font-weight: 600;
    color: #0c234b;
    margin-bottom: 10px;
}

.resource-title a {
    text-decoration: none;
    color: inherit;
}

.resource-title a:hover {
    color: #21bda1;
}

.resource-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    min-height: 60px;
}

.resource-link {
    font-size: 14px;
    font-weight: 500;
    color: #21bda1;
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
}

/* EXPLORE SECTION - ALWAYS ACTIVE STYLE */
.explore-static {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.snapshot-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.snapshot-title {
    font-size: 20px;
    font-weight: 600;
    color: #0c234b;
    margin-bottom: 5px;
}

.snapshot-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* SECTION BLOCK */
.snapshot-block {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #21bda1;
}

.snapshot-block h6 {
    font-weight: 600;
    color: #0c234b;
    margin-bottom: 6px;
}

.snapshot-block p {
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}