@charset "UTF-8";
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-display: swap;
  src: local('Font Awesome 6 Brands');
}

body { font-family: 'Poppins', sans-serif; overflow-x: hidden;}
    .sticky-nav { transition: all 0.3s ease-in-out; }
    .scrolled {box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
html {
        scroll-behavior: smooth;
        scroll-padding-top: 10px; 
    }
#mobile-menu {
        position: fixed;
        left: 0;
        width: 100%;
        background-color: white;
    }
.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
}
.brand-icon {
    width: 36px;
    height: 36px;
    background-color: #1D4ED8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s;
    margin-right: 8px;
}
.brand-icon:hover {
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.brand-text {
    font-weight: 700;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
    letter-spacing: -0.3px;
}
.brand-text .highlight {
    color: #F97316;
}
.cta {background-color:#ea580c; padding: 8px 14px; border-radius:0.5rem; color:#fff;font-size:15px; font-weight:600;}
.cta:hover {background-color:#1d4ed8; color:#fff !important;}
.nv a:hover{color: rgb(234 88 12 / var(--tw-bg-opacity, 1));}
h1, h2, h3, h4, h5, h6, p, div p {
    word-break: break-word; 
    word-wrap: break-word; 
}
a:hover {
    font-weight: 600;
}
p {
  font-size: clamp(0.875rem, 2vw, 0.88rem);
  line-height: 1.625;
  margin-bottom: 1rem !important;
}
ul, li {
  font-size: clamp(0.8rem, 2vw, 0.85rem);
  margin-bottom: 0.7rem;
  word-break: break-word;
  line-height: 1.625;
}
li strong {
    color: #1d4ed8;
}
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}
.page-item .page-link, 
.page-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.page-item .page-link:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #2563eb;
    transform: translateY(-1px);
}
.page-item.active span,
.page-item.active .page-link {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}
.page-item.disabled span {
    background: #f8fafc;
    color: #cbd5e1;
    border-color: #f1f5f9;
    cursor: not-allowed;
}
@media (max-width: 640px) {
    .pagination {
        gap: 4px;
    }
    .page-item:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }
    .page-item .page-link, 
    .page-item span {
        min-width: 38px;
        height: 38px;
        padding: 0 8px;
        font-size: 13px;
    }
}