@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #1f3d63;
    --primary-dark: #193554;
    --red: #f00;
    --secondary: #d90000;
            --light-bg: #f4f7fb;
            --border: #dfe5ec;
            --text: #263445;
            --muted: #718096;

           
          
            --success: #198754;
            --warning: #f59e0b;
            --danger: #dc3545;
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #1f3d63;
    background: #fff;
    font-size: 14px;
}


/* =========================================
   TOP BAR
========================================= */

.topbar {
    background: #1f3d63;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.topbar-left {
    gap: 15px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.topbar a:hover {
    color: #fff;
}

.top-divider {
    width: 2px;
    height: 23px;
    background: rgba(255, 255, 255, .75);
}

.topbar-right {
    min-height: 54px;
    gap: 20px !important;
}

.font-control {
    background: rgba(255, 255, 255, .22);
    border-radius: 4px;
    height: 36px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
}

.font-control button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    padding: 0;
}

.font-line {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .8);
}

.language-btn {
    border: 0;
    background: transparent;
    color: #fff;
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 4px;
}

.language-btn.active {
    background: #f00;
}


/* =========================================
   MAIN HEADER
========================================= */

.main-header {
    background: #fff;
    padding: 18px 0;
    border-bottom: 3px solid #f00;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box {
    width: 165px;
    min-width: 165px;
}

.logo-box img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-content h1 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f3d63;
    margin: 0 0 4px;
}

.brand-content h2 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: #1f3d63;
    margin: 0 0 7px;
}

.since {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: #1f3d63;
}

.since i {
    color: #ed1c24;
}


/* =========================================
   SEARCH
========================================= */

.header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.search-box {
    width: 100%;
    max-width: 575px;
    height: 52px;

    border: 1px solid #d8dde3;
    border-radius: 30px;

    display: flex;
    align-items: center;

    padding-left: 28px;

    background: #fff;
}

.search-box input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: none;

    font-size: 16px;
    color: #444;
}

.search-box input::placeholder {
    color: #666;
}

.search-box button {
    width: 60px;
    height: 100%;

    border: 0;
    background: transparent;

    color: #1f3d63;
    font-size: 21px;
}


/* =========================================
   HEADER BUTTONS
========================================= */

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-btn {
    background: #1f3d63;
    color: #fff;

    text-decoration: none;

    padding: 10px 17px;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 500;

    transition: .2s ease;
}

.header-btn:hover {
    background: #193554;
    color: #fff;
}

.header-btn i {
    margin-right: 7px;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navbar {
    background: #1f3d63;
    min-height: 50px;
}

.main-navbar .navbar-nav {
    min-height: 50px;
}

.main-navbar .nav-item {
    border-left: 1px solid rgba(255, 255, 255, .28);
}


/* MENU */

.main-navbar .nav-link {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    padding: 0 16px !important;
    font-size: 16px;
    font-weight: 400;
    transition: background .2s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.main-navbar .nav-link i {
    font-size: 17px;
}


/* =========================================
   COMPACT DROPDOWN
========================================= */

.main-navbar .dropdown-menu {
    margin: 0;
    padding: 5px 0;
    min-width: 250px;
    background: #fff;
    border: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .18);
}

.main-navbar .dropdown-item {
    padding: 9px 15px;

    font-size: 14px;
    font-weight: 400;

    color: #333;

    white-space: nowrap;
}

.main-navbar .dropdown-item:hover {
    background: #1f3d63;
    color: #fff;
}

.main-navbar .dropdown-menu a{
    height: auto;
    color: #1f3d63;
    padding: 10px 10px !important;
}
.main-navbar .dropdown-menu a:hover{color:#162f4f; background: #1f3d6329;}
/* =========================================
   DESKTOP HOVER DROPDOWN
========================================= */

@media (min-width: 1200px) {

    .main-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        animation: dropdownFade .15s ease;
    }

    .main-navbar .dropdown > .dropdown-toggle {
        pointer-events: auto;
    }

}

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   LOGIN / REGISTER
========================================= */

.nav-login {
    padding-right: 55px;
    border-left: 0 !important;
}

.nav-login a {
    display: inline-block;

    background: #f00;
    color: #fff;

    text-decoration: none;

    padding: 9px 21px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 500;

    transition: .2s ease;
}

.nav-login a:hover {
    background: #d90000;
    color: #fff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 1199px) {

    .topbar {
        padding: 7px 0;
    }

    .topbar-left {
        gap: 10px;
    }

    .topbar a {
        font-size: 13px;
    }

    .top-divider {
        height: 18px;
    }

    .topbar-right {
        gap: 8px !important;
    }

    .main-header {
        padding: 15px 0;
    }

    .brand-content h1 {
        font-size: 23px;
    }

    .brand-content h2 {
        font-size: 17px;
    }

    .header-actions {
        margin-top: 18px;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .main-navbar {
        min-height: auto;
    }

    .main-navbar .navbar-nav {
        min-height: auto;
        padding-bottom: 10px;
    }

    .main-navbar .nav-item {
        border-left: 0;
    }

    .main-navbar .nav-link {
        height: 48px;
        padding: 0 20px !important;
    }

    .nav-login {
        padding: 10px 20px;
    }
}


@media (max-width: 767px) {

    .topbar {
        min-height: auto;
    }

    .topbar-left {
        width: 100%;
    }

    .topbar-right {
        display: none !important;
    }

    .brand-area {
        align-items: flex-start;
    }

    .logo-box {
        width: 85px;
        min-width: 85px;
    }

    .brand-content h1 {
        font-size: 17px;
    }

    .brand-content h2 {
        font-size: 14px;
    }

    .since {
        font-size: 13px;
    }

    .header-buttons {
        width: 100%;
    }

    .header-btn {
        flex: 1;
        text-align: center;
        font-size: 14px;
    }
}


/* =========================================
   PORTAL CONTENT
========================================= */

.portal-content {
    padding: 28px 0 40px;
    background: #fff;
}

.portal-box {
    height: 100%;
    border: 1px solid #d9e0e7;
    border-radius: 11px;
    padding: 20px;
    background: #fff;
}


/* =========================================
   SECTION TITLE
========================================= */

.portal-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 13px;
    margin-bottom: 20px;

    border-bottom: 1px solid #d9e0e7;
}

.portal-title h3 {
    margin: 0;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #173b64;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.portal-title h3 i {
    font-size: 21px;
}


/* =========================================
   QUICK LINKS
========================================= */

.quick-links {
    display: flex;
    flex-direction: column;
}

.quick-links a {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 9px 0;
    color: #12395f;
    text-decoration: none;
    border-bottom: 1px solid #d9e0e7;
    font-size: 17px;
    font-weight: 600;
    transition: .2s ease;
}

.quick-links a:last-child {
    border-bottom: 0;
}

.quick-links a:hover {
    padding-left: 5px;
    color: #0c62a4;
}


.link-icon {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e4f2fc;

    border-radius: 9px;

    color: #123f6b;

    font-size: 18px;
}


/* =========================================
   NEWS HEADER
========================================= */

.news-title {
    gap: 15px;
}

.news-filter {
    display: flex;
    gap: 8px;
}

.news-filter button {
    border: 0;

    background: #1d3d63;
    color: #fff;

    padding: 9px 12px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 500;

    transition: .2s ease;
}

.news-filter button:hover,
.news-filter button.active {
    background: #153352;
}


/* =========================================
   NEWS CARD
========================================= */

.news-card {
    height: 100%;
    /* min-height: 258px; */
    background: #e3f2ff;
    border-left: 3px solid #173f69;
    border-radius: 12px;
    padding: 19px 18px;
    display: flex;
    flex-direction: column;
}


.news-card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #173f6945;
    margin-bottom: 10px;
}


.news-icon {
    width: 31px;
    height: 31px;

    min-width: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #173f69;
    color: #fff;

    font-size: 16px;
}


.news-card h4 {
    margin: 0;

    color: #12395f;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;
}

.news-card h4 a{text-decoration:none;color: #122945;}
.news-card p {
    margin: 6px 0 0;

    color: #3e6284;

    font-size: 16px;
    line-height: 1.55;
}


.news-date {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #12395fab;
    font-size: 15px;
    font-weight: 600;
}

.news-date i {
    font-size: 14px;
}


/* =========================================
   RESOURCES
========================================= */

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-links a {
    min-height: 49px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 10px 17px;

    border-radius: 9px;

    background: #e3f2ff;

    color: #12395f;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: .2s ease;
}

.resource-links a:hover {
    background: #d4eaff;
    transform: translateX(3px);
}

.resource-links i {
    font-size: 16px;
}


/* =========================================
   STATISTICS
========================================= */

.statistics {
    margin-top: 58px;
}

.statistics .portal-title {
    margin-bottom: 20px;
}


.stat-card {
    background: #e3f2ff;

    border-radius: 9px;

    padding: 14px 20px;

    min-height: 112px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-bottom: 10px;
}


.stat-card strong {
    color: #17446f;

    font-size: 34px;
    line-height: 1;

    font-weight: 700;

    margin-bottom: 12px;
}


.stat-card span {
    color: #12395f;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1399px) {

    .portal-title h3 {
        font-size: 20px;
    }

    .quick-links a {
        font-size: 15px;
    }

    .news-card p {
        font-size: 14px;
    }

    .news-filter {
        gap: 5px;
    }

    .news-filter button {
        padding: 8px 10px;
        font-size: 13px;
    }

}


@media (max-width: 1199px) {

    .portal-title {
        flex-wrap: wrap;
        gap: 12px;
    }

    .news-title {
        align-items: flex-start;
    }

    .news-filter {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .portal-content {
        padding: 20px 0;
    }

    .portal-box {
        padding: 15px;
    }

    .portal-title h3 {
        font-size: 19px;
    }

    .news-filter {
        flex-wrap: wrap;
    }

    .news-filter button {
        font-size: 12px;
        padding: 7px 10px;
    }

    .news-card {
        min-height: 230px;
    }

    .quick-links a {
        min-height: 75px;
    }

    .statistics {
        margin-top: 35px;
    }

}


   .partners-section {
        background: #f7f9fb;
        border: 1px solid #e3e9ef;
        padding: 40px 30px;
       
    }

    .partners-title-row {
        border-bottom: 1px solid #dce3ea;
        padding-bottom: 9px;
        margin-bottom: 14px;
    }

    .partners-title {
        color: #23456d;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .partners-title i {
        font-size: 17px;
        margin-right: 7px;
    }

    .nhqac-badge {
        background: #315d8e;
        color: #fff;
        border-radius: 20px;
        padding: 5px 13px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0,0,0,.12);
    }

    .nhqac-badge i {
        margin-right: 5px;
    }

    /* Main Partner Cards */
    .partner-card {
        background: #fff;
        border: 1px solid #dce4eb;
        border-radius: 8px;
        padding: 40px;
        height: 100%;
        box-shadow: 0 2px 5px rgba(25, 55, 85, .08);
    }

    .partner-header {
        display: flex;
        align-items: center;
        gap: 11px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #e4e9ee;
    }

    .partner-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: #f4f8fc;
        border: 1px solid #dce7f0;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #315d8e;
        font-size: 21px;
    }

    .partner-name {
        color: #274b72;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0;
    }

    .partner-website {
        color: #777f88;
        font-size: 12px;
        margin-top: 2px;
    }

    .partner-points {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .partner-points li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 15px;
        color: #59636d;
        font-size: 15px;
        line-height: 1.45;
    }

    .partner-points li:last-child {
        margin-bottom: 0;
    }

    .partner-points li::before {
        content: "\f26a";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 1px;
        color: #315d8e;
        font-size: 14px;
    }

    .partner-points strong {
        color: #34495e;
        font-weight: 700;
    }


    /* Bottom Feature Cards */
    .feature-card {
        background: #fff;
        border: 1px solid #dce4eb;
        border-radius: 8px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 2px 5px rgba(25, 55, 85, .08);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #f0f6fb;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #315d8e;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .feature-title {
        color: #294d72;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .feature-text {
        color: #68727c;
        font-size: 16px;
        line-height: 1.35;
        margin: 0;
    }


    /* Tablet */
    @media (max-width: 991.98px) {
        .partners-section {
            padding: 14px 18px;
        }

        .partner-name {
            font-size: 12px;
        }

        .partner-points li {
            font-size: 10px;
        }
    }


    /* Mobile */
    @media (max-width: 767.98px) {
        .partners-section {
            padding: 15px;
        }

        .partners-title {
            font-size: 15px;
        }

        .nhqac-badge {
            font-size: 9px;
            padding: 5px 9px;
        }

        .partner-card {
            padding: 12px;
        }

        .feature-card {
            padding: 12px;
        }

        .partner-name {
            font-size: 12px;
        }

        .partner-points li {
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .partners-title-row {
            align-items: flex-start !important;
            gap: 8px;
        }

        .nhqac-badge {
            font-size: 8px;
        }

        .partner-icon {
            width: 36px;
            min-width: 36px;
            height: 36px;
            font-size: 18px;
        }
    }


    /* ===============================
       nhqac FOOTER
    =============================== */

    .nhqac-footer {
        
        color: #153b67;
    }

    /* ===============================
       TOP POLICY MENU
    =============================== */

    .nhqac-policy-bar {
        background: #203f68;
        padding: 17px 10px;
    }

    .nhqac-policy-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nhqac-policy-menu li {
        display: flex;
        align-items: center;
    }

    .nhqac-policy-menu li:not(:last-child)::after {
        content: "";
        display: block;

        width: 1px;
        height: 27px;

        background: rgba(255,255,255,0.75);

        margin: 0 19px;
    }

    .nhqac-policy-menu a {
        color: #ffffff;
        text-decoration: none;

        font-size: 14px;
        font-weight: 700;

        line-height: 1.2;

        transition: 0.2s;
    }

    .nhqac-policy-menu a:hover {
        color: #dce9f7;
    }


    /* ===============================
       MAIN FOOTER
    =============================== */

    .nhqac-footer-main {
        background: #ffffff;
        padding: 60px 0;
    }

    .nhqac-footer-container {
        max-width: 1650px;
        margin: 0 auto;

        padding-left: 30px;
        padding-right: 30px;
    }


    /* ===============================
       CONTACT BOX
    =============================== */

    .nhqac-contact-box {
        background: #ffffff;

        border-radius: 11px;

        padding: 24px 20px;

        min-height: 225px;
    }

    .nhqac-contact-title {
        color: #173d6b;

        font-size: 23px;
        font-weight: 700;

        line-height: 1.55;

        margin: 0 0 21px 0;
    }

    .nhqac-contact-item {
        display: flex;
        align-items: flex-start;

        margin-bottom: 14px;
    }

    .nhqac-contact-item:last-child {
        margin-bottom: 0;
    }

    .nhqac-contact-icon {
        width: 34px;
        min-width: 34px;

        color: #123f70;

        font-size: 17px;

        padding-top: 1px;
    }

    .nhqac-contact-text {
        color: #143d6b;

        font-size: 16px;
        font-weight: 400;

        line-height: 1.5;
    }

    .nhqac-contact-text a {
        color: #143d6b;
        text-decoration: none;
    }


    /* ===============================
       COLUMN HEADING
    =============================== */

    .nhqac-footer-heading {
        color: #101f34;

        font-size: 25px;
        font-weight: 700;

        line-height: 1.3;

        margin: 20px 0 22px;
    }


    /* ===============================
       FOOTER LINKS
    =============================== */

    .nhqac-footer-links {
        padding: 0;
        margin: 0;

        list-style: none;
    }

    .nhqac-footer-links li {
        margin-bottom: 13px;
    }

    .nhqac-footer-links li:last-child {
        margin-bottom: 0;
    }

    .nhqac-footer-links a {
        display: inline-flex;
        align-items: center;

        color: #143d6b;

        font-size: 16px;
        font-weight: 400;

        text-decoration: none;

        transition: 0.2s;
    }

    .nhqac-footer-links a i {
        font-size: 11px;
        margin-right: 9px;
    }

    .nhqac-footer-links a:hover {
        color: #0b2c51;
        transform: translateX(2px);
    }


    /* ===============================
       SOCIAL ICONS
    =============================== */

    .nhqac-social {
        display: flex;
        gap: 11px;
        margin-top: 12px;
    }

    .nhqac-social a {
        width: 40px;
        height: 45px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 21px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .nhqac-facebook {
        background: #203f68;
    }

    .nhqac-instagram {
        background: #08bce9;
    }

    .nhqac-twitter {
        background: #000;
    }

    .nhqac-social a:hover {
        transform: translateY(-3px);
    }


    /* ===============================
       COPYRIGHT
    =============================== */

    .nhqac-copyright {
        background: #203f68;

        color: #ffffff;

        text-align: center;

        font-size: 16px;
        font-weight: 400;

        padding: 23px 10px;
    }


    /* ===============================
       TABLET
    =============================== */

    @media (max-width: 991px) {

        .nhqac-policy-menu a {
            font-size: 12px;
        }

        .nhqac-policy-menu li:not(:last-child)::after {
            margin: 0 10px;
        }

        .nhqac-footer-main {
            padding: 40px 0;
        }

        .nhqac-contact-title {
            font-size: 19px;
        }

        .nhqac-footer-heading {
            font-size: 21px;
        }

        .nhqac-contact-text,
        .nhqac-footer-links a {
            font-size: 14px;
        }
    }


    /* ===============================
       MOBILE
    =============================== */

    @media (max-width: 767px) {

        .nhqac-policy-bar {
            padding: 13px 10px;
        }

        .nhqac-policy-menu {
            display: block;
            text-align: center;
        }

        .nhqac-policy-menu li {
            display: block;
            margin-bottom: 8px;
        }

        .nhqac-policy-menu li:last-child {
            margin-bottom: 0;
        }

        .nhqac-policy-menu li:not(:last-child)::after {
            display: none;
        }

        .nhqac-policy-menu a {
            font-size: 12px;
        }

        .nhqac-footer-main {
            padding: 30px 0;
        }

        .nhqac-footer-container {
            padding-left: 15px;
            padding-right: 15px;
        }

        .nhqac-contact-box {
            min-height: auto;
            padding: 20px 17px;
        }

        .nhqac-contact-title {
            font-size: 18px;
            margin-bottom: 18px;
        }

        .nhqac-footer-heading {
            font-size: 19px;
            margin-top: 10px;
            margin-bottom: 16px;
        }

        .nhqac-contact-text,
        .nhqac-footer-links a {
            font-size: 13px;
        }

        .nhqac-contact-icon {
            font-size: 15px;
        }

        .nhqac-social {
            gap: 12px;
        }

        .nhqac-social a {
            width: 45px;
            height: 45px;
            font-size: 20px;
            border-radius: 8px;
        }

        .nhqac-copyright {
            font-size: 13px;
            padding: 17px 10px;
        }
    }


    .quality-section {
    background: linear-gradient(135deg, #1f3d63, #0b1d34);
    color: #fff;
    padding: 56px 0;
  }

  .quality-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .quality-description {
    font-size: 16px;
    line-height: 1.55;
    max-width: 1160px;
    margin-bottom: 30px;
  }

  .quality-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 22px;
  }

  .quality-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .quality-feature i {
    font-size: 17px;
    line-height: 1;
    color: #fff;
  }

  .quality-stat {
    background: #405f87;
    border-radius: 18px;
    padding: 34px 30px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quality-stat-number {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .quality-stat-text {
    font-size: 15px;
    font-weight: 200;
    margin: 0;
  }

  @media (max-width: 991.98px) {
    .quality-title {
      font-size: 40px;
    }

    .quality-description {
      font-size: 17px;
    }

    .quality-stat {
      margin-top: 30px;
    }
  }

  @media (max-width: 575.98px) {
    .quality-section {
      padding: 40px 0;
    }

    .quality-title {
      font-size: 32px;
    }

    .quality-description {
      font-size: 16px;
    }

    .quality-features {
      gap: 20px;
    }

    .quality-feature {
      font-size: 16px;
      white-space: normal;
    }

    .quality-feature i {
      font-size: 22px;
    }

    .quality-stat-number {
      font-size: 34px;
    }

    .quality-stat-text {
      font-size: 16px;
    }
  }

/* =========================================
   BREADCRUMB HEADER
========================================= */

.widget-breadcrumb {
    position: relative;
    width: 100%;
    padding: 45px 0 35px;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    border-bottom: 1px solid #e5e7eb;
}

.widget-breadcrumb .head {
    text-align: center;
}

.widget-breadcrumb h1 {
    margin: 0;
    padding: 0;
    color: #1d2a3a;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
}


/* =========================================
   BREADCRUMB NAVIGATION
========================================= */

.widget-bread {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.widget-bread .head {
    display: flex;
    align-items: center;
    min-height: 52px;
}


/* =========================================
   BREADCRUMB LIST
========================================= */

.widget-bread .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    list-style: none;

    margin: 0;
    padding: 12px 0;

    width: 100%;
}


/* =========================================
   BREADCRUMB ITEM
========================================= */

.widget-bread .breadcrumb-list li {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: #6c757d;
    font-size: 14px;
    font-weight: 500;

    line-height: 1.5;
}


/* =========================================
   HOME LINK
========================================= */

.widget-bread .breadcrumb-list li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #495057;

    text-decoration: none;

    transition: all 0.3s ease;
}

.widget-bread .breadcrumb-list li a:hover {
    color: #203f68;
}

.widget-bread .breadcrumb-list li a i {
    font-size: 14px;
}


/* =========================================
   ARROW
========================================= */

.widget-bread .breadcrumb-list .breadcrumb-arrow {
    margin: 0 12px;

    color: #adb5bd;

    font-size: 11px;
}

.widget-bread .breadcrumb-list .breadcrumb-arrow i {
    font-size: 10px;
}


/* =========================================
   ACTIVE BREADCRUMB
========================================= */

.widget-bread .breadcrumb-list li.active {
    color: #203f68;
    font-weight: 600;
}


/* =========================================
   HOVER EFFECT
========================================= */

.widget-bread .breadcrumb-list li a:hover i {
    transform: translateY(-1px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .widget-breadcrumb {
        padding: 30px 0 25px;
    }

    .widget-breadcrumb h1 {
        font-size: 26px;
    }

    .widget-bread .head {
        min-height: 48px;
    }

    .widget-bread .breadcrumb-list {
        padding: 10px 0;
    }

    .widget-bread .breadcrumb-list li {
        font-size: 13px;
    }

    .widget-bread .breadcrumb-list .breadcrumb-arrow {
        margin: 0 8px;
    }

}


/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 480px) {

    .widget-breadcrumb {
        padding: 25px 0 20px;
    }

    .widget-breadcrumb h1 {
        font-size: 22px;
    }

    .widget-bread .breadcrumb-list li {
        font-size: 12px;
    }

}

/* =========================================
   PAGE CONTENT
========================================= */

.pagecontent {
    width: 100%;
    padding: 50px 0;
    background: #fff;
}

.pagecontent .innerbox {
    width: 100%;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* =========================================
   HEADINGS
========================================= */

.pagecontent .innerbox h1,
.pagecontent .innerbox h2,
.pagecontent .innerbox h3,
.pagecontent .innerbox h4,
.pagecontent .innerbox h5,
.pagecontent .innerbox h6 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1d2a3a;
    font-weight: 700;
    line-height: 1.3;
}

.pagecontent .innerbox h1 {
    font-size: 36px;
    margin-bottom: 25px;
}

.pagecontent .innerbox h2 {
    font-size: 30px;
    margin-top: 35px;
}

.pagecontent .innerbox h3 {
    font-size: 26px;
    margin-top: 30px;
}

.pagecontent .innerbox h4 {
    font-size: 22px;
    margin-top: 25px;
}

.pagecontent .innerbox h5 {
    font-size: 19px;
    margin-top: 22px;
}

.pagecontent .innerbox h6 {
    font-size: 17px;
    margin-top: 20px;
}


/* =========================================
   PARAGRAPHS
========================================= */

.pagecontent .innerbox p {
    margin: 0 0 18px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.pagecontent .innerbox p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LINKS
========================================= */

.pagecontent .innerbox a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagecontent .innerbox a:hover {
    color: #004999;
    text-decoration: underline;
}


/* =========================================
   UNORDERED LIST
========================================= */

.pagecontent .innerbox ul {
    margin: 0 0 20px;
    padding-left: 25px;
}

.pagecontent .innerbox ul li {
    margin-bottom: 8px;
    padding-left: 5px;
    color: #555;
    line-height: 1.7;
}

.pagecontent .innerbox ul li::marker {
    color: #0066cc;
}


/* =========================================
   ORDERED LIST
========================================= */

.pagecontent .innerbox ol {
    margin: 0 0 20px;
    padding-left: 28px;
}

.pagecontent .innerbox ol li {
    margin-bottom: 8px;
    padding-left: 5px;
    color: #555;
    line-height: 1.7;
}

.pagecontent .innerbox ol li::marker {
    color: #0066cc;
    font-weight: 700;
}


/* =========================================
   NESTED LIST
========================================= */

.pagecontent .innerbox ul ul,
.pagecontent .innerbox ol ol,
.pagecontent .innerbox ul ol,
.pagecontent .innerbox ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}


/* =========================================
   STRONG / BOLD / ITALIC
========================================= */

.pagecontent .innerbox strong,
.pagecontent .innerbox b {
    color: #333;
    font-weight: 700;
}

.pagecontent .innerbox em,
.pagecontent .innerbox i {
    font-style: italic;
}


/* =========================================
   BLOCKQUOTE
========================================= */

.pagecontent .innerbox blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f6f8fa;
    border-left: 4px solid #0066cc;
    color: #555;
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
}

.pagecontent .innerbox blockquote p {
    margin-bottom: 0;
}


/* =========================================
   HR
========================================= */

.pagecontent .innerbox hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
}


/* =========================================
   IMAGES
========================================= */

.pagecontent .innerbox img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.pagecontent .innerbox p img {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================
   IMAGE ALIGNMENT
========================================= */

.pagecontent .innerbox img[align="left"] {
    float: left;
    margin: 5px 25px 15px 0;
}

.pagecontent .innerbox img[align="right"] {
    float: right;
    margin: 5px 0 15px 25px;
}

.pagecontent .innerbox img[align="center"] {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   FIGURE
========================================= */

.pagecontent .innerbox figure {
    margin: 25px 0;
}

.pagecontent .innerbox figure img {
    margin: 0 auto;
}

.pagecontent .innerbox figcaption {
    margin-top: 8px;
    text-align: center;
    color: #777;
    font-size: 14px;
    font-style: italic;
}


/* =========================================
   TABLE
========================================= */

.pagecontent .innerbox table {
    width: 100%;
    max-width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
}

.pagecontent .innerbox table th,
.pagecontent .innerbox table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.pagecontent .innerbox table th {
    background: #f3f5f7;
    color: #222;
    font-weight: 700;
}

.pagecontent .innerbox table tr:nth-child(even) {
    background: #fafafa;
}


/* =========================================
   RESPONSIVE TABLE
========================================= */

.pagecontent .innerbox table {
    overflow-x: auto;
}


/* =========================================
   CODE
========================================= */

.pagecontent .innerbox code {
    padding: 3px 7px;
    border-radius: 4px;
    background: #f1f1f1;
    color: #d63384;
    font-size: 14px;
}

.pagecontent .innerbox pre {
    margin: 25px 0;
    padding: 20px;
    overflow-x: auto;
    border-radius: 6px;
    background: #1e1e1e;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.pagecontent .innerbox pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}


/* =========================================
   MARK / HIGHLIGHT
========================================= */

.pagecontent .innerbox mark {
    padding: 2px 5px;
    background: #fff3cd;
    color: #664d03;
}


/* =========================================
   SMALL TEXT
========================================= */

.pagecontent .innerbox small {
    font-size: 13px;
    color: #777;
}


/* =========================================
   DEFINITION LIST
========================================= */

.pagecontent .innerbox dl {
    margin: 20px 0;
}

.pagecontent .innerbox dt {
    margin-bottom: 5px;
    color: #222;
    font-weight: 700;
}

.pagecontent .innerbox dd {
    margin: 0 0 15px 25px;
    color: #555;
}


/* =========================================
   SUP / SUB
========================================= */

.pagecontent .innerbox sup,
.pagecontent .innerbox sub {
    font-size: 75%;
}


/* =========================================
   VIDEO / IFRAME
========================================= */

.pagecontent .innerbox iframe,
.pagecontent .innerbox video {
    max-width: 100%;
}

.pagecontent .innerbox iframe {
    width: 100%;
    min-height: 400px;
    border: 0;
}


/* =========================================
   EMBED / OBJECT
========================================= */

.pagecontent .innerbox embed,
.pagecontent .innerbox object {
    max-width: 100%;
}


/* =========================================
   TEXT ALIGNMENT
========================================= */

.pagecontent .innerbox .text-left {
    text-align: left;
}

.pagecontent .innerbox .text-center {
    text-align: center;
}

.pagecontent .innerbox .text-right {
    text-align: right;
}

.pagecontent .innerbox .text-justify {
    text-align: justify;
}


/* =========================================
   CLEAR FLOAT
========================================= */

.pagecontent .innerbox::after {
    content: "";
    display: table;
    clear: both;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pagecontent {
        padding: 30px 0;
    }

    .pagecontent .innerbox {
        font-size: 15px;
        line-height: 1.7;
    }

    .pagecontent .innerbox h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .pagecontent .innerbox h2 {
        font-size: 24px;
        margin-top: 28px;
    }

    .pagecontent .innerbox h3 {
        font-size: 21px;
        margin-top: 25px;
    }

    .pagecontent .innerbox h4 {
        font-size: 19px;
    }

    .pagecontent .innerbox h5 {
        font-size: 17px;
    }

    .pagecontent .innerbox h6 {
        font-size: 16px;
    }

    .pagecontent .innerbox p {
        font-size: 15px;
        line-height: 1.7;
    }

    .pagecontent .innerbox ul,
    .pagecontent .innerbox ol {
        padding-left: 22px;
    }

    .pagecontent .innerbox blockquote {
        padding: 15px 18px;
        font-size: 15px;
    }

    .pagecontent .innerbox table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pagecontent .innerbox iframe {
        min-height: 250px;
    }

    .pagecontent .innerbox img[align="left"],
    .pagecontent .innerbox img[align="right"] {
        float: none;
        display: block;
        margin: 20px auto;
    }
}



/* =========================================
   FAQ PAGE
========================================= */

.faq-page {
    padding: 70px 0;
    background: #f8f9fa;
}


/* =========================================
   FAQ HEADER
========================================= */

.faq-header {
    max-width: 750px;
    margin: 0 auto 45px;
}

.faq-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: #203f681c;
    color: #203f68;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-header h1 {
    margin: 0 0 15px;

    color: #1d2a3a;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-header p {
    margin: 0;

    color: #6c757d;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   FAQ WRAPPER
========================================= */

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    margin-bottom: 15px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cfd8e3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}


/* =========================================
   FAQ BUTTON
========================================= */

.faq-item .accordion-button {
    position: relative;

    display: flex;
    align-items: center;

    padding: 20px 25px;

    background: #ffffff;

    color: #1d2a3a;

    font-size: 17px;
    font-weight: 600;

    box-shadow: none;

    transition: all 0.3s ease;
}


/* Remove Bootstrap default blue focus */

.faq-item .accordion-button:focus {
    box-shadow: none;
}


/* =========================================
   FAQ NUMBER
========================================= */

.faq-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #203f6824;
    color: #203f68;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    padding-right: 35px;
}


/* =========================================
   OPEN STATE
========================================= */

.faq-item .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #1f3d63;
}

.faq-item .accordion-button:not(.collapsed) .faq-number {
    background: #863325;
    color: #ffffff;
}


/* =========================================
   BOOTSTRAP ARROW
========================================= */

.faq-item .accordion-button::after {
    width: 14px;
    height: 14px;

    background-size: 14px;

    transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


/* =========================================
   ANSWER
========================================= */

.faq-item .accordion-body {
    padding: 0 25px 25px 82px;

    color: #606770;

    font-size: 15px;
    line-height: 1.8;
}

.faq-item .accordion-body p {
    margin: 0;
}


/* =========================================
   SMOOTH COLLAPSE
========================================= */

.faq-item .accordion-collapse {
    transition: height 0.4s ease;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-page {
        padding: 45px 0;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-header h1 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-item .accordion-button {
        padding: 16px 15px;

        font-size: 15px;
    }

    .faq-number {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;

        margin-right: 12px;

        font-size: 11px;
    }

    .faq-item .accordion-body {
        padding: 0 15px 20px 63px;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-header h1 {
        font-size: 24px;
    }

    .faq-item .accordion-button {
        padding: 14px 12px;
    }

    .faq-number {
        flex: 0 0 32px;

        width: 32px;
        height: 32px;

        margin-right: 10px;
    }

    .faq-item .accordion-body {
        padding-left: 54px;
    }

}


/* =========================================
   UPDATES CONTAINER
========================================= */

.updatecontainer {
    width: 100%;
    padding: 60px 0;
    background: #f7f9fc;
}

.updatesbox {
    width: 100%;
}


/* =========================================
   UPDATES CARD
========================================= */

.updates-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}


/* =========================================
   TITLE
========================================= */

.updates-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 30px;

    border-bottom: 1px solid #eeeeee;
}

.updates-title h2 {
    margin: 5px 0 0;

    color: #1d2a3a;

    font-size: 25px;
    font-weight: 700;
}

.updates-title > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ff000026;
    color: #ff0000;
    border-radius: 50%;
    font-size: 20px;
}

.updates-label {
    display: inline-block;
    color: #1e3c63;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   TABLE
========================================= */

.updates-table {
    width: 100%;
    margin: 0;

    vertical-align: middle;

    border: 0;
}


/* =========================================
   TABLE HEADER
========================================= */

.updates-table thead th {
    padding: 15px 20px;

    background: #f4f7fb;

    color: #495057;

    border: 0;
    border-bottom: 1px solid #e5e7eb;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .4px;
}


/* =========================================
   TABLE BODY
========================================= */

.updates-table tbody td {
    padding: 18px 20px;

    color: #555;

    border-color: #eeeeee;

    vertical-align: middle;
}

.updates-table tbody tr {
    transition: all .25s ease;
}

.updates-table tbody tr:hover {
    background: #f8fbff;
}


/* =========================================
   UPDATE HEADING
========================================= */

.update-heading {
    display: flex;
    align-items: center;

    gap: 14px;
}

.update-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #203f68;
    border-radius: 8px;
    font-size: 18px;
}

.heading-text {
    display: block;

    color: #263238;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;
}

.update-heading:hover .heading-text {
    color: #203f68;
}


/* =========================================
   PDF LABEL
========================================= */

.pdf-label {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    margin-top: 5px;
    padding: 2px 7px;

    background: #fff1f1;

    color: #dc3545;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.pdf-label i {
    font-size: 11px;
}


/* =========================================
   DATE
========================================= */

.update-date {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #6c757d;

    font-size: 14px;
}

.update-date i {
    color: #0d6efd;
    font-size: 15px;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.update-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
}


/* Common button */

.update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-width: 85px;

    padding: 8px 12px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}


/* View */

.view-btn {
    background: #eef5ff;
    color: #0d6efd;

    border: 1px solid #d8e8ff;
}

.view-btn:hover {
    background: #0d6efd;
    color: #ffffff;

    transform: translateY(-2px);
}


/* Download */

.download-btn {
    background: #eaf8ef;
    color: #198754;

    border: 1px solid #d5f0df;
}

.download-btn:hover {
    background: #198754;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   NO DOCUMENT
========================================= */

.no-document {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #adb5bd;

    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .updatecontainer {
        padding: 35px 0;
    }

    .updates-title {
        padding: 20px;
    }

    .updates-title h2 {
        font-size: 21px;
    }

    .updates-title > i {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .updates-table thead th {
        font-size: 11px;
        padding: 12px;
    }

    .updates-table tbody td {
        padding: 14px 12px;
    }

    .update-heading {
        gap: 9px;
    }

    .update-icon {
        flex: 0 0 35px;

        width: 35px;
        height: 35px;

        font-size: 15px;
    }

    .heading-text {
        font-size: 13px;
    }

    .update-date {
        font-size: 12px;
    }

    .update-actions {
        flex-direction: column;
        gap: 5px;
    }

    .update-btn {
        min-width: 75px;
        padding: 6px 8px;

        font-size: 11px;
    }

}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .updates-title {
        padding: 18px 15px;
    }

    .updates-title h2 {
        font-size: 19px;
    }

    .updates-title > i {
        width: 38px;
        height: 38px;
    }

    .updates-table {
        min-width: 650px;
    }

    .updates-table thead th,
    .updates-table tbody td {
        padding: 12px 10px;
    }

}


/* =========================================
   DOWNLOAD CONTAINER
========================================= */

.downloadcontainer {
    width: 100%;
    padding: 60px 0;
    background: #f6f8fb;
}

.downloads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================
   DOWNLOAD ITEM
========================================= */

.downloads .innerbox {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 95px;
    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #e4e8ed;
    border-left: 4px solid #1f3d63;

    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(31, 61, 99, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.downloads .innerbox:hover {
    transform: translateY(-4px);

    border-left-color: #d90000;

    box-shadow: 0 10px 25px rgba(31, 61, 99, 0.12);
}


/* =========================================
   FILE ICON
========================================= */

.downloads .iconsvg {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    background: #f1f5f9;

    border-radius: 8px;

    transition: all 0.3s ease;
}

.downloads .innerbox:hover .iconsvg {
    background: #eef3f8;

    transform: scale(1.05);
}

.downloads .iconsvg svg {
    width: 42px;
    height: 42px;
}


/* =========================================
   DOWNLOAD DETAILS
========================================= */

.downloads .downdet {
    min-width: 0;
    flex: 1;
    padding-right: 35px;
}


/* =========================================
   HEADING
========================================= */

.downloads .downdet h6 {
    margin: 0 0 6px;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.4;
}

.downloads .downdet h6 a {
    display: block;

    color: #1f3d63;

    text-decoration: none;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    transition: color 0.3s ease;
}

.downloads .downdet h6 a:hover {
    color: #d90000;
}


/* =========================================
   FILE TYPE
========================================= */

.downloads .downdet small {
    display: inline-block;

    color: #777;

    font-size: 11px;
    font-weight: 500;

    text-transform: uppercase;
}


/* =========================================
   DOWNLOAD ARROW
========================================= */

.downloads .innerbox::after {
    content: "\f30a";

    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    font-family: "bootstrap-icons";

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1f3d63;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;

    transition: all 0.3s ease;
}

.downloads .innerbox:hover::after {
    background: #d90000;

    transform: translateY(-50%) translateX(3px);
}


/* =========================================
   EMPTY STATE
========================================= */

.downloads > .text-center {
    grid-column: 1 / -1;

    padding: 50px 20px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.downloads > .text-center p {
    margin: 0;

    color: #777;
}


/* =========================================
   PDF
========================================= */

.downloads .innerbox:has(svg text) {
    transition: all 0.3s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .downloads {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .downloadcontainer {
        padding: 45px 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .downloadcontainer {
        padding: 35px 0;
    }

    .downloads {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .downloads .innerbox {
        min-height: 85px;

        padding: 15px;

        border-left-width: 3px;
    }

    .downloads .iconsvg {
        flex: 0 0 50px;

        width: 50px;
        height: 50px;

        margin-right: 12px;
    }

    .downloads .iconsvg svg {
        width: 36px;
        height: 36px;
    }

    .downloads .downdet h6 {
        font-size: 14px;
    }

    .downloads .innerbox::after {
        right: 12px;

        width: 27px;
        height: 27px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .downloads .innerbox {
        padding: 13px;
    }

    .downloads .iconsvg {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        margin-right: 10px;
    }

    .downloads .iconsvg svg {
        width: 32px;
        height: 32px;
    }

    .downloads .downdet {
        padding-right: 30px;
    }

    .downloads .downdet h6 {
        font-size: 13px;
    }

    .downloads .downdet small {
        font-size: 10px;
    }

}


/* =========================================
           PAGE WRAPPER
        ========================================= */

        .registration-page {
            min-height: 100vh;
            padding: 50px 15px;
            background:
                linear-gradient(
                    135deg,
                    rgba(31, 61, 99, 0.08),
                    rgba(217, 0, 0, 0.04)
                );
        }

        /* =========================================
           MAIN CARD
        ========================================= */

        .registration-card {
            max-width: 1150px;
            margin: auto;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(31, 61, 99, 0.12);
            border: 1px solid rgba(31, 61, 99, 0.08);
        }

        /* =========================================
           HEADER
        ========================================= */

        .registration-header {
            position: relative;
            padding: 35px 40px;
            background: linear-gradient(
                135deg,
                var(--primary),
                var(--primary-dark)
            );
            color: #fff;
            overflow: hidden;
        }

        .registration-header::before {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            top: -130px;
            right: -50px;
        }

        .registration-header::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(217,0,0,0.12);
            bottom: -100px;
            left: -50px;
        }

        .header-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .council-logo {
            width: 70px;
            height: 70px;
            border-radius: 14px;
            background: #fff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .header-content h1 {
            margin: 0 0 7px;
            font-size: 27px;
            font-weight: 700;
            line-height: 1.3;
        }

        .header-content p {
            margin: 0;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            padding: 6px 13px;
            border-radius: 50px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            font-size: 12px;
        }

        /* =========================================
           FORM AREA
        ========================================= */

        .registration-body {
            padding: 40px;
        }

        /* =========================================
           SECTION
        ========================================= */

        .form-section {
            margin-bottom: 35px;
        }

        .form-section:last-child {
            margin-bottom: 0;
        }

        .section-heading {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 14px;
            margin-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }

        .section-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(31,61,99,0.09);
            color: var(--primary);
            border-radius: 10px;
            font-size: 19px;
        }

        .section-heading h3 {
            margin: 0;
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
        }

        .section-heading p {
            margin: 2px 0 0;
            color: var(--muted);
            font-size: 12px;
        }

        /* =========================================
           FORM GROUP
        ========================================= */

        .form-group {
            margin-bottom: 22px;
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .required {
            color: var(--secondary);
        }

        .input-group-custom {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #8491a3;
            z-index: 5;
            pointer-events: none;
        }

        .form-control,
        .form-select {
            min-height: 48px;
            border: 1px solid var(--border);
            border-radius: 9px;
            font-size: 14px;
            color: var(--text);
            background-color: #fff;
            padding-left: 43px;
            transition: all 0.25s ease;
        }

        .form-select {
            padding-left: 43px;
        }

        textarea.form-control {
            min-height: 115px;
            resize: vertical;
            padding-top: 13px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(31,61,99,0.09);
        }

        .form-control::placeholder {
            color: #a5afbd;
        }

        .password-input {
            padding-right: 50px !important;
        }

        .password-toggle {
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            color: #788597;
            cursor: pointer;
            z-index: 10;
        }

        .password-toggle:hover {
            color: var(--primary);
        }

        /* =========================================
           PASSWORD STRENGTH
        ========================================= */

        .password-strength {
            margin-top: 8px;
        }

        .strength-bars {
            display: flex;
            gap: 4px;
            margin-bottom: 5px;
        }

        .strength-bar {
            height: 4px;
            flex: 1;
            background: #e8edf2;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .strength-text {
            font-size: 11px;
            color: var(--muted);
        }

        /* =========================================
           FIELD HELP
        ========================================= */

        .field-help {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 11px;
        }

        /* =========================================
           APPLICATION TYPE
        ========================================= */

        .application-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .application-option {
            position: relative;
        }

        .application-option input {
            position: absolute;
            opacity: 0;
        }

        .application-option label {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 52px;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 9px;
            cursor: pointer;
            color: var(--text);
            font-size: 13px;
            font-weight: 500;
            transition: all 0.25s ease;
        }

        .application-option label i {
            color: var(--primary);
            font-size: 18px;
        }

        .application-option input:checked + label {
            border-color: var(--primary);
            background: rgba(31,61,99,0.06);
            box-shadow: 0 0 0 2px rgba(31,61,99,0.06);
        }

        /* =========================================
           SANCTIONED BEDS
        ========================================= */

        .beds-box {
            position: relative;
        }

        .beds-suffix {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
            font-size: 12px;
            pointer-events: none;
        }

        .beds-box .form-control {
            padding-right: 70px;
        }

        /* =========================================
           CHECKBOX
        ========================================= */

        .terms-box {
            background: #f7f9fc;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 15px 18px;
        }

        .terms-box .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            border-color: #bdc7d3;
        }

        .terms-box .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .terms-box label {
            font-size: 12px;
            color: #647184;
            line-height: 1.6;
            padding-left: 5px;
        }

        .terms-box a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }

        .terms-box a:hover {
            text-decoration: underline;
        }

        /* =========================================
           SUBMIT AREA
        ========================================= */

        .submit-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid var(--border);
        }

        .secure-info {
            display: flex;
            align-items: center;
            gap: 9px;
            color: var(--muted);
            font-size: 12px;
        }

        .secure-info i {
            color: #198754;
            font-size: 19px;
        }

        .register-btn {
            min-width: 210px;
            min-height: 50px;
            border: 0;
            border-radius: 9px;
            padding: 12px 25px;
            background: var(--secondary);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 7px 18px rgba(217,0,0,0.2);
            transition: all 0.25s ease;
        }

        .register-btn:hover {
            background: #b90000;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(217,0,0,0.28);
        }

        .register-btn i {
            margin-left: 7px;
        }

        /* =========================================
           FOOTER
        ========================================= */

        .registration-footer {
            padding: 18px 40px;
            background: #f8fafc;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--muted);
            font-size: 12px;
        }

        .registration-footer strong {
            color: var(--primary);
        }

        /* =========================================
           VALIDATION
        ========================================= */

        .form-control.is-invalid,
        .form-select.is-invalid {
            border-color: var(--secondary);
        }

        .invalid-feedback {
            font-size: 11px;
        }

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {

            .registration-page {
                padding: 30px 15px;
            }

            .registration-body {
                padding: 30px;
            }

            .application-options {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 767px) {

            .registration-page {
                padding: 15px 10px;
            }

            .registration-card {
                border-radius: 12px;
            }

            .registration-header {
                padding: 25px 20px;
            }

            .header-content {
                align-items: flex-start;
            }

            .council-logo {
                width: 55px;
                height: 55px;
                font-size: 26px;
            }

            .header-content h1 {
                font-size: 20px;
            }

            .header-content p {
                font-size: 12px;
            }

            .registration-body {
                padding: 25px 20px;
            }

            .registration-footer {
                padding: 16px 20px;
            }

            .submit-area {
                flex-direction: column;
                align-items: stretch;
            }

            .secure-info {
                justify-content: center;
            }

            .register-btn {
                width: 100%;
            }

        }

        @media (max-width: 480px) {

            .header-content {
                flex-direction: column;
            }

            .header-content h1 {
                font-size: 18px;
            }

            .section-heading h3 {
                font-size: 16px;
            }

            .form-control,
            .form-select {
                min-height: 46px;
            }

        }



 /* =====================================
           PAGE
        ===================================== */

        .login-page {

            min-height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            padding: 35px 15px;

        }


        /* =====================================
           LOGIN CONTAINER
        ===================================== */

        .login-card {

            width: 100%;

            max-width: 1050px;

            min-height: 610px;

            background: #fff;

            border-radius: 20px;

            overflow: hidden;

            display: flex;

            box-shadow:
                0 20px 60px
                rgba(31, 61, 99, 0.14);

        }


        /* =====================================
           LEFT SIDE
        ===================================== */

        .login-left {

            width: 43%;

            position: relative;

            overflow: hidden;

            padding: 50px 45px;

            color: #fff;

            background:
                linear-gradient(
                    145deg,
                    var(--primary),
                    var(--primary-dark)
                );

            display: flex;

            align-items: center;

        }


        .login-left::before {

            content: "";

            position: absolute;

            width: 350px;

            height: 350px;

            border-radius: 50%;

            background:
                rgba(255,255,255,0.045);

            top: -180px;

            right: -140px;

        }


        .login-left::after {

            content: "";

            position: absolute;

            width: 280px;

            height: 280px;

            border-radius: 50%;

            background:
                rgba(217,0,0,0.12);

            bottom: -150px;

            left: -120px;

        }


        .left-content {

            position: relative;

            z-index: 2;

        }


        .council-icon {

            width: 75px;

            height: 75px;

            border-radius: 16px;

            background: #fff;

            color: var(--primary);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 36px;

            margin-bottom: 25px;

            box-shadow:
                0 10px 30px
                rgba(0,0,0,0.16);

        }


        .left-content h1 {

            font-size: 29px;

            line-height: 1.3;

            font-weight: 700;

            margin-bottom: 15px;

        }


        .left-content > p {

            color:
                rgba(255,255,255,0.76);

            font-size: 14px;

            line-height: 1.7;

            margin-bottom: 30px;

        }


        /* =====================================
           FEATURES
        ===================================== */

        .login-features {

            display: flex;

            flex-direction: column;

            gap: 15px;

        }


        .feature-item {

            display: flex;

            align-items: center;

            gap: 12px;

            font-size: 13px;

            color:
                rgba(255,255,255,0.9);

        }

 

        /* =====================================
           RIGHT SIDE
        ===================================== */

        .login-right {

            width: 57%;

            padding: 55px 65px;

            display: flex;

            flex-direction: column;

            justify-content: center;

        }


        .login-heading {

            margin-bottom: 28px;

        }


        .login-heading h2 {

            color: var(--primary);

            font-size: 27px;

            font-weight: 700;

            margin-bottom: 7px;

        }


        .login-heading p {

            margin: 0;

            color: var(--muted);

            font-size: 13px;

        }


        /* =====================================
           TABS
        ===================================== */

        .login-tabs {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 5px;

            padding: 5px;

            background: #f1f4f8;

            border-radius: 10px;

            margin-bottom: 27px;

        }


        .login-tab {

            border: none;

            background: transparent;

            min-height: 43px;

            border-radius: 7px;

            font-size: 13px;

            font-weight: 600;

            color: var(--muted);

            cursor: pointer;

            transition: all 0.25s ease;

        }


        .login-tab i {

            margin-right: 6px;

        }


        .login-tab.active {

            color: var(--primary);

            background: #fff;

            box-shadow:
                0 3px 10px
                rgba(31,61,99,0.08);

        }


        /* =====================================
           FORM
        ===================================== */

        .form-group {

            margin-bottom: 19px;

        }


        .form-label {

            display: block;

            font-size: 13px;

            font-weight: 600;

            margin-bottom: 8px;

            color: var(--text);

        }


        .input-wrapper {

            position: relative;

        }


        .input-wrapper > i {

            position: absolute;

            left: 15px;

            top: 50%;

            transform: translateY(-50%);

            color: #8a96a5;

            z-index: 2;

            pointer-events: none;

        }


        .form-control {

            width: 100%;

            height: 49px;

            border: 1px solid var(--border);

            border-radius: 9px;

            padding-left: 43px;

            padding-right: 45px;

            font-size: 13px;

            color: var(--text);

            transition: all 0.25s ease;

        }


        .form-control:focus {

            border-color: var(--primary);

            box-shadow:
                0 0 0 3px
                rgba(31,61,99,0.08);

        }


        .form-control::placeholder {

            color: #a6afbb;

        }


        /* =====================================
           PASSWORD BUTTON
        ===================================== */

        .password-toggle {

            position: absolute;

            right: 12px;

            top: 50%;

            transform: translateY(-50%);

            border: 0;

            background: transparent;

            color: #7c8999;

            cursor: pointer;

        }


        .password-toggle:hover {

            color: var(--primary);

        }


        /* =====================================
           FORGOT PASSWORD
        ===================================== */

        .form-options {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin-top: -4px;

            margin-bottom: 23px;

        }


        .remember-box {

            display: flex;

            align-items: center;

            gap: 7px;

        }


        .remember-box input {

            width: 16px;

            height: 16px;

            accent-color: var(--primary);

        }


        .remember-box label {

            font-size: 11px;

            color: var(--muted);

            cursor: pointer;

        }


        .forgot-link {

            font-size: 12px;

            color: var(--secondary);

            text-decoration: none;

            font-weight: 600;

        }


        .forgot-link:hover {

            text-decoration: underline;

        }


        /* =====================================
           LOGIN BUTTON
        ===================================== */

        .login-button {

            width: 100%;

            height: 50px;

            border: 0;

            border-radius: 9px;

            background: var(--secondary);

            color: #fff;

            font-size: 14px;

            font-weight: 700;

            box-shadow:
                0 7px 18px
                rgba(217,0,0,0.2);

            transition: all 0.25s ease;

        }


        .login-button:hover {

            background: #b90000;

            transform: translateY(-2px);

            box-shadow:
                0 10px 25px
                rgba(217,0,0,0.27);

        }


        .login-button i {

            margin-left: 7px;

        }


        /* =====================================
           OTP
        ===================================== */

        .otp-info {

            padding: 12px 15px;

            border-radius: 9px;

            background: #f5f8fc;

            border: 1px solid var(--border);

            margin-bottom: 20px;

            font-size: 12px;

            color: var(--muted);

            line-height: 1.6;

        }


        .otp-info i {

            color: var(--primary);

            margin-right: 5px;

        }


        .otp-container {

            display: flex;

            gap: 9px;

            margin-bottom: 22px;

        }


        .otp-input {

            width: 100%;

            height: 50px;

            text-align: center;

            font-size: 20px;

            font-weight: 700;

            color: var(--primary);

            border: 1px solid var(--border);

            border-radius: 9px;

            outline: none;

        }


        .otp-input:focus {

            border-color: var(--primary);

            box-shadow:
                0 0 0 3px
                rgba(31,61,99,0.08);

        }


        .otp-actions {

            display: flex;

            justify-content: space-between;

            align-items: center;

            margin-top: 15px;

        }


        .resend-btn {

            border: 0;

            background: transparent;

            color: var(--primary);

            font-size: 12px;

            font-weight: 600;

            cursor: pointer;

            padding: 0;

        }


        .resend-btn:disabled {

            color: #a5afba;

            cursor: not-allowed;

        }


        .otp-timer {

            font-size: 12px;

            color: var(--muted);

        }


        /* =====================================
           OTP STEP 2
        ===================================== */

        #otpVerifySection {

            display: none;

        }


        .otp-mobile {

            font-weight: 700;

            color: var(--primary);

        }


        .change-number {

            border: 0;

            background: transparent;

            color: var(--secondary);

            font-size: 11px;

            font-weight: 600;

            margin-left: 5px;

            cursor: pointer;

        }


        /* =====================================
           DIVIDER
        ===================================== */

        .login-divider {

            display: flex;

            align-items: center;

            gap: 12px;

            margin: 23px 0;

            color: #a0aab6;

            font-size: 11px;

        }


        .login-divider::before,
        .login-divider::after {

            content: "";

            flex: 1;

            height: 1px;

            background: var(--border);

        }


        /* =====================================
           REGISTER
        ===================================== */

        .register-text {

            text-align: center;

            color: var(--muted);

            font-size: 12px;

        }


        .register-text a {

            color: var(--secondary);

            font-weight: 700;

            text-decoration: none;

        }


        .register-text a:hover {

            text-decoration: underline;

        }


        /* =====================================
           SECURITY
        ===================================== */

        .security-note {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 7px;

            margin-top: 25px;

            color: #8994a2;

            font-size: 10px;

        }


        .security-note i {

            color: #198754;

            font-size: 15px;

        }


        /* =====================================
           HIDDEN
        ===================================== */

        .login-method {

            display: none;

        }


        .login-method.active {

            display: block;

        }


        /* =====================================
           RESPONSIVE
        ===================================== */

        @media (max-width: 900px) {

            .login-card {

                max-width: 650px;

            }

            .login-left {

                display: none;

            }

            .login-right {

                width: 100%;

                padding: 45px 50px;

            }

        }


        @media (max-width: 576px) {

            .login-page {

                padding: 15px 10px;

            }

            .login-card {

                border-radius: 13px;

            }

            .login-right {

                padding: 30px 20px;

            }

            .login-heading h2 {

                font-size: 23px;

            }

            .otp-container {

                gap: 5px;

            }

            .otp-input {

                height: 46px;

                font-size: 18px;

            }

        }


.photocontainerg{padding: 30px 0;}


.photocontainerg .photobox img{width: 100%;}



.gallery-popup{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:99999;
    justify-content:center;
    align-items:center;
}

.gallery-popup img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

.gallery-popup .close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    font-weight:bold;
}

.gallery-popup .prev,
.gallery-popup .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.2);
    color:#fff;
    border:none;
    font-size:40px;
    padding:10px 18px;
    cursor:pointer;
    transition:.3s;
}

.gallery-popup .prev:hover,
.gallery-popup .next:hover{
    background:#fff;
    color:#000;
}

.gallery-popup .prev{
    left:20px;
}

.gallery-popup .next{
    right:20px;
}


.blog-section {
    padding: 70px 0;
    background: #f8fafc;
}

.blog-row {
    align-items: stretch;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(31, 61, 99, 0.06);
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(31, 61, 99, 0.14);
    border-color: rgba(31, 61, 99, 0.15);
}


/* =========================================
   BLOG IMAGE
========================================= */

.blog-card > a {
    display: block;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 245px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.06);
}


/* =========================================
   BLOG CONTENT
========================================= */

.blog-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* =========================================
   BLOG META
========================================= */

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.blog-date {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 7px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #1f3d63;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1f3d63;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   BLOG TITLE
========================================= */

.blog-title {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #1f2937;

    /* Keep cards equal */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d90000;
}


/* =========================================
   READ MORE
========================================= */

.read-more-wrapper {
    margin-top: auto;
    padding-top: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f3d63;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #d90000;
}

.read-more:hover::after {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .blog-section {
        padding: 55px 0;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 19px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .blog-section {
        padding: 45px 0;
    }

    .blog-row {
        --bs-gutter-y: 25px;
    }

    .blog-image {
        height: 210px;
    }

    .blog-content {
        padding: 18px 20px 21px;
    }

    .blog-meta {
        align-items: flex-start;
    }

    .blog-date {
        font-size: 12px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
    }

    .blog-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .blog-section {
        padding: 35px 0;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 17px;
    }

    .blog-meta {
        gap: 8px;
    }

    .blog-date {
        font-size: 11px;
    }

    .social-icons {
        gap: 5px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .blog-title {
        font-size: 17px;
    }
}


/* =========================================
   BLOG DETAIL SECTION
========================================= */

.blog-detail-widget {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.blog-detail-widget .container {
    max-width: 1100px;
}


/* =========================================
   BLOG HEADER
========================================= */

.blog-header {
    width: 100%;
    margin-bottom: 12px;
}

.blog-header .blog-title {
    margin: 0;
    color: #1f3d63;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.3px;
}


/* =========================================
   AUTHOR / DATE
========================================= */

.blog-author {
    display: flex;
    align-items: center;
    width: 100%;

    margin-bottom: 22px;

    color: #6b7280;
    font-size: 14px;
    font-weight: 500;

    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}


/* =========================================
   BLOG ACTIONS
========================================= */

.blog-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 15px;
}


/* =========================================
   FEATURED IMAGE
========================================= */

.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 550px;

    object-fit: cover;
    display: block;

    border-radius: 14px;

    margin: 15px 0 35px;

    box-shadow: 0 10px 30px rgba(31, 61, 99, 0.10);
}


/* =========================================
   BLOG CONTENT
========================================= */

.blog-content {
    width: 100%;

    background: #ffffff;

    padding: 35px 40px;

    border-radius: 14px;

    border: 1px solid #e8edf3;

    box-shadow: 0 5px 20px rgba(31, 61, 99, 0.05);

    color: #374151;

    font-size: 17px;
    line-height: 1.85;
}


/* =========================================
   CONTENT HEADINGS
========================================= */

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #1f3d63;
    font-weight: 700;
    line-height: 1.4;

    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content h1 {
    font-size: 30px;
}

.blog-content h2 {
    font-size: 27px;
}

.blog-content h3 {
    font-size: 23px;
}

.blog-content h4 {
    font-size: 20px;
}

.blog-content h5 {
    font-size: 18px;
}

.blog-content h6 {
    font-size: 16px;
}


/* =========================================
   PARAGRAPHS
========================================= */

.blog-content p {
    margin-bottom: 18px;
}

.blog-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LINKS
========================================= */

.blog-content a {
    color: #1f3e66;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #1f3d63;
    text-decoration: underline;
}


/* =========================================
   LISTS
========================================= */

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 8px;
}


/* =========================================
   BLOCKQUOTE
========================================= */

.blog-content blockquote {
    margin: 25px 0;

    padding: 18px 22px;

    border-left: 4px solid #d90000;

    background: #f8fafc;

    color: #4b5563;

    font-size: 18px;
    font-style: italic;

    border-radius: 0 8px 8px 0;
}


/* =========================================
   IMAGES INSIDE CONTENT
========================================= */

.blog-content img {
    max-width: 100%;
    height: auto;

    display: block;

    margin: 25px auto;

    border-radius: 10px;
}


/* =========================================
   TABLES
========================================= */

.blog-content table {
    width: 100%;
    margin: 25px 0;

    border-collapse: collapse;

    font-size: 15px;
}

.blog-content table th,
.blog-content table td {
    padding: 12px 15px;

    border: 1px solid #e5e7eb;

    text-align: left;
}

.blog-content table th {
    background: #1f3d63;
    color: #ffffff;
    font-weight: 600;
}

.blog-content table tr:nth-child(even) {
    background: #f8fafc;
}


/* =========================================
   STRONG / BOLD
========================================= */

.blog-content strong,
.blog-content b {
    color: #1f2937;
    font-weight: 700;
}


/* =========================================
   HORIZONTAL LINE
========================================= */

.blog-content hr {
    margin: 30px 0;

    border: 0;
    border-top: 1px solid #e5e7eb;
}


/* =========================================
   CODE
========================================= */

.blog-content pre {
    padding: 20px;

    margin: 25px 0;

    overflow-x: auto;

    background: #111827;
    color: #f9fafb;

    border-radius: 8px;

    font-size: 14px;
    line-height: 1.6;
}

.blog-content code {
    font-size: 90%;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991px) {

    .blog-detail-widget {
        padding: 50px 0 65px;
    }

    .blog-header .blog-title {
        font-size: 32px;
    }

    .blog-featured-image {
        max-height: 450px;
        margin-bottom: 28px;
    }

    .blog-content {
        padding: 30px;
        font-size: 16px;
        line-height: 1.8;
    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 767px) {

    .blog-detail-widget {
        padding: 35px 0 50px;
    }

    .blog-header .blog-title {
        font-size: 27px;
        line-height: 1.3;
    }

    .blog-author {
        font-size: 13px;
        line-height: 1.6;
        padding-bottom: 15px;
    }

    .blog-featured-image {
        margin-top: 10px !important;
        margin-bottom: 25px;

        border-radius: 10px;
    }

    .blog-content {
        padding: 22px 20px;

        border-radius: 10px;

        font-size: 15px;
        line-height: 1.75;
    }

    .blog-content h2 {
        font-size: 23px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content h4 {
        font-size: 18px;
    }

    .blog-content blockquote {
        font-size: 16px;
        padding: 15px 17px;
    }

    .blog-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .blog-detail-widget {
        padding: 30px 0 40px;
    }

    .blog-header .blog-title {
        font-size: 23px;
    }

    .blog-author {
        font-size: 12px;
    }

    .blog-featured-image {
        border-radius: 8px;
    }

    .blog-content {
        padding: 18px 16px;

        font-size: 14px;
    }

    .blog-content h2 {
        font-size: 21px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    .blog-content ul,
    .blog-content ol {
        padding-left: 20px;
    }

}



/* =========================================
   CONTACT SECTION
========================================= */

.contactcontainer {
    padding: 70px 0;
    background: #f8fafc;
}

.contactcontainer .container {
    max-width: 1140px;
}

.contactcontainer .row {
    align-items: stretch;
}


/* =========================================
   CONTACT LEFT CARD
========================================= */

.aboutpageleft {
    height: 100%;
    background: #ffffff;

    padding: 40px;

    border-radius: 14px;
    border: 1px solid #e6ebf1;

    box-shadow: 0 8px 30px rgba(31, 61, 99, 0.08);
}

.aboutpageleft h3 {
    position: relative;

    margin: 0 0 28px;

    color: #1f3d63;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.3;
}

.aboutpageleft h3::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-top: 12px;

    background: #d90000;

    border-radius: 10px;
}


/* =========================================
   CONTACT LIST
========================================= */

.contactlist {
    list-style: none;

    padding: 0;
    margin: 0;
}

.contactlist li {
    position: relative;

    display: flex;
    align-items: flex-start;

    margin-bottom: 18px;

    color: #4b5563;

    font-size: 15px;
    line-height: 1.7;
}

.contactlist li:last-child {
    margin-bottom: 0;
}


/* =========================================
   ORGANIZATION NAME
========================================= */

.contactlist .headname {
    display: block;

    margin-bottom: 25px;

    padding-bottom: 18px;

    color: #1f3d63;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.4;

    border-bottom: 1px solid #e5e7eb;
}


/* =========================================
   CONTACT LINKS
========================================= */

.contactlist li a {
    display: flex;
    align-items: flex-start;

    width: 100%;

    color: #4b5563;

    text-decoration: none;

    transition: all 0.3s ease;
}

.contactlist li a:hover {
    color: #d90000;
}


/* =========================================
   ICONS
========================================= */

.contactlist li i {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-right: 13px;

    background: #f1f5f9;

    color: #1f3d63;

    border-radius: 50%;

    font-size: 16px;

    transition: all 0.3s ease;
}

.contactlist li a:hover i {
    background: #1f3d63;
    color: #ffffff;
}


/* =========================================
   WHATSAPP
========================================= */

.contactlist li:nth-child(3) a:hover i {
    background: #25d366;
    color: #ffffff;
}


/* =========================================
   MAP
========================================= */

.contactmap {
    width: 100%;
    height: 100%;
    min-height: 430px;

    display: block;

    border: 0;

    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(31, 61, 99, 0.10);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .contactcontainer {
        padding: 55px 0;
    }

    .aboutpageleft {
        padding: 30px;
    }

    .aboutpageleft h3 {
        font-size: 27px;
    }

    .contactmap {
        min-height: 400px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contactcontainer {
        padding: 40px 0;
    }

    .aboutpageleft {
        padding: 25px 22px;
        margin-bottom: 25px;

        border-radius: 10px;
    }

    .aboutpageleft h3 {
        font-size: 25px;
        margin-bottom: 24px;
    }

    .contactlist .headname {
        font-size: 18px;
    }

    .contactlist li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .contactlist li i {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;

        margin-right: 10px;

        font-size: 14px;
    }

    .contactmap {
        height: 350px;
        min-height: 350px;

        border-radius: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contactcontainer {
        padding: 30px 0;
    }

    .aboutpageleft {
        padding: 22px 18px;
    }

    .aboutpageleft h3 {
        font-size: 23px;
    }

    .contactlist .headname {
        font-size: 17px;
    }

    .contactmap {
        height: 300px;
        min-height: 300px;
    }
}