:root {
    /* Primary Brand Colors */
    --primary: #1f4ea3;
    --primary-dark: #143775;
    --primary-light: #4f7ad1;
    /* Secondary */
    --secondary: #2e6bd4;
    --secondary-light: #dce7fb;
    /* Accent */
    --accent: #eef4ff;
    /* Backgrounds */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark-light: #eef4ff;
    /* Text */
    --text-dark: #1e293b;
    --text-light: #64748b;
    /* Borders */
    --border: #e2e8f0;
    /* Status */
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    /* Footer */
    --footer: #10294f;
    /* Radius */
    --radius: 10px;
    /* Container */
    --container: 1280px;
    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}
h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
    line-height: 1.15;
    font-weight: 800;
}
h2 {
    font-size: clamp(1.625rem, 2.8vw, 2.25rem) !important;
    line-height: 1.2;
    font-weight: 700 !important;
}
h3 {
    font-size: 1.375rem !important;
    line-height: 1.3;
    font-weight: 700 !important;
}
h4 {
    font-size: 1.125rem !important;
    line-height: 1.4;
    font-weight: 600 !important;
}
h5 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}
p {
    font-size: 1rem !important;
    line-height: 1.75;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
body {
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}
[data-aos] {
    overflow: hidden;
    transform-distance: 20px;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.container {
    /* width: min(calc(100% - 5rem), var(--container)); */
    /* width: 100%; */
    width: min(100% - 2rem, 1280px);
    padding-inline: clamp(1rem, 3vw, 5rem);
    margin-inline: auto;
}
@media (max-width: 768px) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }
}
section {
    padding: 36px 0;
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 992px) {
    section {
        padding: 40px 0;
    }
}
@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}
.text-muted {
    color: var(--text-light);
}
.section-light {
    background: var(--bg-light);
}
.section-title {
    max-width: 700px;
    margin: 0 auto 52px;
    text-align: center;
}
.section-title h2 {
    margin-bottom: 16px;
}
.section-title p {
    color: var(--text-light);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 14px 28px; */
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.35s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
@media (max-width: 1250px) {
    .btn-primary,
    .btn-outline {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 14px 28px; */
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: 0.35s ease;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.card {
    background: white;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.card:hover .ri-eye-line,
.card:hover .ri-flag-line,
.card:hover .ri-target-line {
    transform: scale(1.1);
}
.card i {
    transition: 0.35s ease;
}
.card:hover h4,
.card:hover h3 {
    color: var(--primary);
}
.card h3,
.card h4 {
    transition: 0.35s ease;
}
/* ==========================
NAVBAR
========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding-inline: clamp(1rem, 3vw, 5rem); */
    padding-inline: clamp(1rem, 2vw, 2rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: 0.35s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.nav-container {
    /* min-height: 90px; */
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* ==========================
LOGO
========================== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;
}
.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.logo-subtitle {
    font-size: 0.68rem;
    color: var(--text-light);
    max-width: 180px;
    line-height: 1.4;
}
/* ==========================
MENU
========================== */
.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1400px) {
    .nav-menu {
        gap: 18px;
    }
}
@media (max-width: 1250px) {
    .nav-menu {
        gap: 12px;
    }
}
@media (max-width: 1350px) {
    .logo img {
        width: 48px;
        height: 48px;
    }
    .logo-title {
        font-size: 1rem;
    }
    .logo-subtitle {
        font-size: 0.65rem;
    }
}
@media (max-width: 1300px) {
    .nav-menu {
        gap: 14px;
    }
}
.nav-link {
    position: relative;
    letter-spacing: 0.2px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}
.dropdown {
    position: relative;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: normal;
    text-align: center;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 15px;
    transition: 0.3s ease;
}
.dropdown-menu a:hover {
    background: var(--secondary-light);
    color: var(--primary);
}
/* ==========================
CTA
========================== */
.nav-actions {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 10px;
    align-items: center;
}
/* ==========================
MOBILE TOGGLE
========================== */
.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: none;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    margin: 6px auto;
    transition: 0.3s;
}
/* ==========================
MOBILE MENU
========================== */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}
.mobile-menu.active {
    max-height: 700px;
}
.mobile-link {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
}
.mobile-link:hover {
    color: var(--primary);
}
.mobile-btn {
    margin: 12px;
    justify-content: center;
}
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    background: none;
    /* border: none; */
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
}
.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* transition:
max-height 0.35s ease,
opacity 0.25s ease,
padding 0.35s ease; */
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
}
.mobile-dropdown-content a {
    display: block;
    padding: 10px 0;
    color: var(--text-light);
}
.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
    max-height: 500px; /* Larger than the content height */
    opacity: 1;
}
.mobile-dropdown-btn i {
    transition: transform 0.3s ease;
}
.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}
/* ==========================
MOBILE
========================== */
@media (max-width: 1150px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .logo-subtitle {
        display: none;
    }
    .logo img {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 1280px) {
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.88rem;
    }
    .btn-primary {
        padding: 10px 14px;
        font-size: 0.88rem;
    }
    .logo-subtitle {
        max-width: 150px;
    }
}
@media (max-width: 576px) {
    .nav-container {
        min-height: 80px;
    }
    .logo-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
main {
    padding-top: 90px;
    overflow-x: hidden;
}
@media (max-width: 576px) {
    main {
        padding-top: 80px;
    }
}
.hero {
    background:
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url("../images/world-map.svg");
    background-position: center;
    background-size: cover;
}
.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}
.hero .swiper-slide img {
    transition: 8s ease;
}
.hero .swiper-slide-active img {
    transform: scale(1.08);
}
#heroText {
    min-height: 80px;
}
.card img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
.strategy-card {
    min-height: 240px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    transition: 0.7s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-filter {
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.gallery-filter:hover {
    background: var(--primary);
    color: white;
}
.active-filter {
    background: var(--primary);
    color: white;
}
.active-filter:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.35s ease;
}
.gallery-item img {
    transition: 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bg-footer {
    background: #10294f;
}
.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}
.footer-social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}
.footer-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
}
.footer-input {
    flex: 1;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 16px;
    border-radius: 10px 0 0 10px;
    color: #111;
}
.footer-submit {
    width: 55px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 10px 10px 0;
}
/* notice report detail page */
.content-area {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}
.content-area p {
    margin-bottom: 1.5rem;
}
.content-area h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content-area ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}
.content-area li {
    margin-bottom: 0.75rem;
}
/* Pagination css */
.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    color: #fff;
}
/* Back to top */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}
.scroll-top.active {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-4px);
}
/* Certificates */
.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s;
}
.btn-light:hover {
    transform: translateY(-3px);
}
.category-card {
    transition: all 0.4s ease;
}
.category-card:hover {
    transform: translateY(-8px);
}
/* .cert-filter {
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.cert-filter:hover {
    background: var(--primary);
    color: white;
} */
.active-filter {
    background: var(--primary);
    color: white;
}
.active-filter:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}
.certification-card .group {
    height: 100%;
}
.certification-card img {
    transition: transform 0.7s ease;
}
.certification-card:hover img {
    transform: scale(1.08);
}
/* contact page */
.contact-card {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.contact-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 10px;
    background: var(--secondary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
/* program css */
.program-filter {
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s ease;
    white-space: nowrap;
}
.program-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.active-filter {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.active-filter:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}
.program-card {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
/* publication css */
.publication-filter {
    padding: 12px 24px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
}
.publication-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.active-filter {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.active-filter:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}
.publication-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.4s;
}
.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.publication-image {
    position: relative;
    overflow: hidden;
}
.publication-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.7s;
}
.publication-card:hover img {
    transform: scale(1.08);
}
.publication-content {
    padding: 24px;
}
.publication-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}
.publication-content h4 {
    margin-bottom: 12px;
}
.publication-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}
.publication-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}
.publication-content a i {
    transition: 0.3s;
}
.publication-card:hover a i {
    transform: translateX(5px);
}
.publication-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}
.publication {
    background: #dbeafe;
    color: #1f4ea3;
}
.news {
    background: #dcfce7;
    color: #15803d;
}
.report {
    background: #fef3c7;
    color: #b45309;
}
.story {
    background: #fde7f3;
    color: #be185d;
}
/* publication details css */
.prose {
    color: var(--text-dark);
}
.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.prose p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
}
.prose ul {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
}
.prose li {
    margin-bottom: 0.75rem;
}
.prose blockquote {
    border-left: 4px solid var(--primary);
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}
/* teams css */
.team-card img {
    transition: 0.4s ease;
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-card:hover {
    border-color: var(--primary);
}
#teamProfileModal .overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}
#teamProfileModal .overflow-y-auto::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}
#teamProfileModal .overflow-y-auto::-webkit-scrollbar-track {
    background: #f1f5f9;
}
/* testimonial css */
.testimonialSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}
.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #cbd5e1;
}
.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
}
.testimonial-filter {
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s ease;
}
.testimonial-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.active-filter {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.active-filter:hover {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: 0.4s;
}
.testimonial-card:hover::before {
    transform: scaleX(1);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.testimonial-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.testimonial-top img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}
.testimonial-top h5 {
    margin-bottom: 4px;
}
.testimonial-top span {
    color: var(--text-light);
    font-size: 14px;
}
.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
}
.form-input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0 16px;
    transition: 0.3s;
    outline: none;
}
textarea.form-input {
    height: auto;
    padding: 16px;
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(31, 78, 163, 0.08);
}
@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.animate-modal {
    animation: modalFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
