/* =========================================================
   PONNAMPET TOWN CO-OPERATIVE BANK
   UNIVERSAL WEBSITE CSS
   VERSION: CLEAN / CONSOLIDATED / STABLE
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {

    --brand-orange: #FF8500;
    --brand-orange-dark: #E87500;
    --brand-orange-light: #FFF3E5;

    --brand-navy: #131730;
    --brand-navy-light: #1C2140;
    --brand-navy-dark: #0D1022;

    --white: #FFFFFF;
    --black: #111111;

    --text: #333333;
    --text-light: #666666;

    --border: #E4E4E4;
    --bg-light: #F7F8FA;

    --shadow-soft:
        0 4px 18px rgba(19, 23, 48, 0.08);

    --shadow-medium:
        0 8px 28px rgba(19, 23, 48, 0.14);

    --radius-small: 4px;
    --radius-medium: 7px;
    --radius-large: 10px;

    --container-width: 100%;

    --topbar-height: 38px;
    --brand-height: 82px;
    --nav-height: 52px;

    --header-height:
        calc(
            var(--topbar-height)
            + var(--brand-height)
            + var(--nav-height)
        );

    --transition:
        all 0.25s ease;

    --font-primary:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;
    padding: var(--header-height) 0 0;

    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;

    color: var(--text);
    background: var(--white);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 15px;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;

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


/* =========================================================
   4. COMPLETE FIXED HEADER
   ========================================================= */

.header {

    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    max-width: 100% !important;

    height: var(--header-height) !important;

    margin: 0 !important;
    padding: 0 !important;

    background: var(--white);

    z-index: 999999 !important;

    overflow: visible !important;

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.12);

    /*
       IMPORTANT:
       Do not add transform to the header.
    */

    transform: none !important;
    -webkit-transform: none !important;

    will-change: auto;
}


/* =========================================================
   5. TOP BAR
   ========================================================= */

.top-bar {

    width: 100%;

    height: var(--topbar-height);
    min-height: var(--topbar-height);

    background: var(--brand-navy);
    color: var(--white);

    font-size: 13px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-left,
.top-right {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}

.top-left i,
.top-right i {

    color: var(--brand-orange);

    margin-right: 5px;
}

.top-right a {

    color: var(--white);

    transition: var(--transition);
}

.top-right a:hover {
    color: var(--brand-orange);
}

.top-separator {
    opacity: 0.35;
}


/* =========================================================
   6. BRAND AREA
   ========================================================= */

.brand-area {

    position: relative;

    width: 100%;

    height: var(--brand-height);
    min-height: var(--brand-height);

    overflow: hidden;

    background: var(--brand-navy);

    color: var(--white);
}


/* Orange decorative section */

.brand-area::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 51%;

    background: var(--brand-orange);

    clip-path:
        polygon(
            0 0,
            100% 0,
            94% 50%,
            100% 100%,
            0 100%
        );

    z-index: 0;
}


/* =========================================================
   7. BRAND INNER
   ========================================================= */

.brand-inner {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 10px;
    padding-bottom: 10px;
}


/* =========================================================
   8. LOGO + BANK NAME
   ========================================================= */

.logo1 {

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 65%;
    min-width: 0;

    color: var(--white);
}

.logo-image {

    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.logo-image img {

    width: 55px;
    height: 55px;

    max-width: 55px;
    max-height: 55px;

    object-fit: contain;
}

.bank-name {

    min-width: 0;

    display: flex;
    flex-direction: column;

    line-height: 1.25;
}

.bank-name strong {

    display: block;

    color: var(--white);

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

.bank-name span {

    display: block;

    margin-top: 4px;

    color: var(--white);

    font-size: 13px;
}

.bank-name small {
    display: none;
}


/* =========================================================
   9. BANK HIGHLIGHTS
   ========================================================= */

.bank-highlights {

    display: flex;

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

    gap: 18px;

    color: var(--white);
}

.header-highlight {

    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;
}

.highlight-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

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

    border:
        1px solid rgba(255,255,255,0.25);

    border-radius: 50%;

    background: var(--white);

    overflow: hidden;
}

.highlight-icon img {

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.highlight-icon i {

    color: var(--brand-orange);

    font-size: 18px;
}

.header-highlight strong {

    display: block;

    color: var(--white);

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

.header-highlight span {

    display: block;

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

    font-size: 11px;
}

.highlight-divider {

    width: 1px;
    height: 38px;

    background:
        rgba(255,255,255,0.22);
}


/* =========================================================
   10. NAVIGATION AREA
   ========================================================= */

.navigation-area {

    position: relative;

    width: 100%;

    height: var(--nav-height);
    min-height: var(--nav-height);

    margin: 0;
    padding: 0;

    background: var(--brand-navy);

    border-top:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 3px 14px rgba(0,0,0,0.18);

    z-index: 100;

    overflow: visible;
}


/* =========================================================
   11. NAVIGATION INNER
   ========================================================= */

.navigation-inner {

    position: relative;

    width: 100%;
    height: var(--nav-height);

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin: 0;
    padding: 0;
}


/* =========================================================
   12. NAVIGATION - DESKTOP BASE
   ========================================================= */

.nav {

    flex: 1 1 auto;

    width: 100%;

    min-width: 0;

    height: var(--nav-height);

    display: block;
}

.nav-list {

    width: 100%;
    height: var(--nav-height);

    display: flex;

    align-items: stretch;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-list > li {

    position: relative;

    display: flex;

    align-items: stretch;

    height: var(--nav-height);
}


/* =========================================================
   13. MAIN NAVIGATION LINKS
   ========================================================= */

.nav-list > li > .nav-link {

    position: relative;

    display: flex;

    align-items: center;

    height: var(--nav-height);
    min-height: var(--nav-height);

    padding: 0 20px;

    color: var(--white);

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

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


/* Active underline */

.nav-list > li > .nav-link::after {

    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 0;

    height: 3px;

    background: var(--brand-orange);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;
}

.nav-list > li:hover > .nav-link,
.nav-list > li:focus-within > .nav-link {

    background: var(--brand-navy-light);

    color: var(--white);
}

.nav-list > li:hover > .nav-link::after,
.nav-list > li:focus-within > .nav-link::after {

    transform: scaleX(1);
}


/* =========================================================
   14. DESKTOP DROPDOWN ARROW
   ========================================================= */

.nav-list > li.has-submenu > .nav-link {
    padding-right: 38px;
}

.nav-list > li.has-submenu > .nav-link::before {

    content: "";

    position: absolute;

    right: 18px;
    top: 50%;

    width: 7px;
    height: 7px;

    border-right:
        2px solid var(--brand-orange);

    border-bottom:
        2px solid var(--brand-orange);

    transform:
        translateY(-65%)
        rotate(45deg);

    transition:
        transform 0.25s ease;
}

.nav-list > li.has-submenu:hover > .nav-link::before,
.nav-list > li.has-submenu:focus-within > .nav-link::before {

    transform:
        translateY(-25%)
        rotate(225deg);
}


/* =========================================================
   15. DESKTOP SUBMENU
   ========================================================= */

.submenu {

    position: absolute;

    top: 100%;
    left: 0;

    width: 245px;

    margin: 0;
    padding: 7px 0;

    background: var(--white);

    border-top:
        3px solid var(--brand-orange);

    box-shadow:
        var(--shadow-medium);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 999999;
}


/* Desktop only */

@media (min-width: 992px) {

    .has-submenu:hover > .submenu,
    .has-submenu:focus-within > .submenu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }
}


/* =========================================================
   16. SUBMENU LINKS - DESKTOP
   ========================================================= */

.submenu .nav-link {

    position: relative;

    display: block;

    width: 100%;

    padding:
        10px 16px;

    color: var(--brand-navy);

    background: var(--white);

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

    border-bottom:
        1px solid #F0F0F0;

    transition:
        padding 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.submenu .nav-link:last-child {
    border-bottom: none;
}


/* Small submenu arrow */

.submenu .nav-link::before {

    content: "";

    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 9px;

    border-right:
        1.5px solid var(--brand-orange);

    border-bottom:
        1.5px solid var(--brand-orange);

    transform:
        rotate(-45deg);

    transition:
        margin-right 0.25s ease;
}

.submenu .nav-link:hover,
.submenu .nav-link:focus {

    padding-left: 21px;

    color: var(--brand-orange);

    background:
        var(--brand-orange-light);
}

.submenu .nav-link:hover::before {
    margin-right: 12px;
}


/* =========================================================
   17. ACCESSIBILITY
   ========================================================= */

.header-accessibility {

    display: flex;

    align-items: center;

    height: var(--nav-height);

    margin-left: 15px;

    flex: 0 0 auto;

    z-index: 9999999;
}

.header-accessibility > * {
    max-height: var(--nav-height);
}


/* =========================================================
   18. MOBILE TOGGLE - DESKTOP DEFAULT
   ========================================================= */

.nav-toggle {

    display: none;

    border: none;

    background: var(--brand-orange);

    cursor: pointer;
}


/* =========================================================
   19. COMMON SECTIONS
   ========================================================= */

.section {

    width: 100%;

    padding: 70px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-white {
    background: var(--white);
}

.section-title {

    margin: 0 0 10px;

    color: var(--brand-navy);

    font-size: 30px;
    line-height: 1.25;

    font-weight: 700;
}

.section-title::after {

    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin-top: 12px;

    background: var(--brand-orange);
}

.section-subtitle {

    max-width: 800px;

    margin: 0 0 30px;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   20. HERO
   ========================================================= */

.hero,
.home-hero {

    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}

.hero img,
.home-hero img {

    width: 100%;

    height: auto;

    object-fit: cover;
}


/* =========================================================
   21. CONTENT PAGE
   ========================================================= */

.content-page {

    width: 100%;
    max-width: 100%;

    margin: 0;

    padding: 45px 0 70px;

    background: var(--white);
}

.content-page .container {
    position: relative;
}


/* =========================================================
   22. PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    width: 100%;

    margin-bottom: 35px;

    padding: 28px 30px;

    background:
        linear-gradient(
            135deg,
            var(--brand-orange-light),
            var(--white)
        );

    border-left:
        5px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);
}

.page-tag {

    display: inline-block;

    margin-bottom: 8px;

    color: var(--brand-orange);

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.page-title {

    margin: 0;

    color: var(--brand-navy);

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

    font-weight: 700;
}

.page-subtitle {

    max-width: 900px;

    margin: 10px 0 0;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   23. CONTENT TYPOGRAPHY
   ========================================================= */

.content-page h1,
.content-page h2,
.content-page h3,
.content-page h4 {
    color: var(--brand-navy);
}

.content-page h2 {

    margin: 35px 0 15px;

    font-size: 25px;
}

.content-page h3 {

    margin: 25px 0 12px;

    font-size: 20px;
}

.content-page h4 {

    margin: 20px 0 10px;

    font-size: 17px;
}

.content-page p {

    color: var(--text);

    font-size: 15px;
}

.content-page strong {
    color: var(--brand-navy);
}


/* =========================================================
   24. CONTENT LINKS
   ========================================================= */

.content-page a:not(.btn) {

    color: var(--brand-orange);

    transition: var(--transition);
}

.content-page a:not(.btn):hover {
    color: var(--brand-navy);
}


/* =========================================================
   25. TWO COLUMN CONTENT
   ========================================================= */

.content-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 380px);

    gap: 40px;

    align-items: start;
}

.content-grid.reverse {

    grid-template-columns:
        minmax(280px, 380px)
        minmax(0, 1fr);
}


/* =========================================================
   26. CONTENT IMAGE
   ========================================================= */

.content-image {

    overflow: hidden;

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-soft);
}

.content-image img {

    width: 100%;

    object-fit: cover;
}


/* =========================================================
   27. CARDS
   ========================================================= */

.card-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.card {

    padding: 25px;

    background: var(--white);

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

    border-top:
        3px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);

    box-shadow:
        0 2px 8px rgba(19,23,48,0.04);

    transition:
        var(--transition);
}

.card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-medium);

    border-color:
        rgba(255,133,0,0.35);
}

.card-icon {

    width: 50px;
    height: 50px;

    margin-bottom: 15px;

    display: flex;

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

    border-radius: 50%;

    background:
        var(--brand-orange-light);

    color:
        var(--brand-orange);

    font-size: 20px;
}

.card h3 {

    margin: 0 0 8px;

    font-size: 19px;

    color: var(--brand-navy);
}

.card p {

    margin: 0;

    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   28. FEATURE GRID
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.feature-box {

    padding: 24px 20px;

    text-align: center;

    background: var(--white);

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

    border-radius:
        var(--radius-medium);

    transition:
        var(--transition);
}

.feature-box:hover {

    border-color:
        var(--brand-orange);

    box-shadow:
        var(--shadow-soft);

    transform:
        translateY(-3px);
}

.feature-box i {

    display: block;

    margin-bottom: 12px;

    color: var(--brand-orange);

    font-size: 28px;
}

.feature-box h3 {

    margin: 0 0 7px;

    color: var(--brand-navy);

    font-size: 17px;
}

.feature-box p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;
}


/* =========================================================
   29. BUTTONS
   ========================================================= */

.btn {

    display: inline-flex;

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

    min-height: 42px;

    padding: 9px 20px;

    border:
        1px solid transparent;

    border-radius:
        var(--radius-small);

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

    transition:
        var(--transition);
}

.btn-primary {

    background:
        var(--brand-orange);

    color:
        var(--white);
}

.btn-primary:hover {

    background:
        var(--brand-orange-dark);

    color:
        var(--white);

    transform:
        translateY(-1px);
}

.btn-secondary {

    background:
        var(--brand-navy);

    color:
        var(--white);
}

.btn-secondary:hover {

    background:
        var(--brand-navy-light);

    color:
        var(--white);
}

.btn-outline {

    background:
        transparent;

    border-color:
        var(--brand-orange);

    color:
        var(--brand-orange);
}

.btn-outline:hover {

    background:
        var(--brand-orange);

    color:
        var(--white);
}


/* =========================================================
   30. TABLES
   ========================================================= */

.table-wrap {

    width: 100%;

    overflow-x: auto;

    margin: 25px 0;

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

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-soft);
}

.rate-table,
.common-table {

    width: 100%;

    border-collapse: collapse;

    background:
        var(--white);
}

.rate-table th,
.common-table th {

    padding: 13px 15px;

    background:
        var(--brand-navy);

    color:
        var(--white);

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

    text-align: left;
}

.rate-table th:first-child,
.common-table th:first-child {

    border-left:
        4px solid var(--brand-orange);
}

.rate-table td,
.common-table td {

    padding: 12px 15px;

    color: var(--text);

    font-size: 14px;

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

.rate-table tbody tr:nth-child(even),
.common-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.rate-table tbody tr:hover,
.common-table tbody tr:hover {
    background: var(--brand-orange-light);
}

.rate-table tbody tr:last-child td,
.common-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================================
   31. NOTICE / INFO
   ========================================================= */

.notice-box {

    margin: 20px 0;

    padding: 16px 18px;

    background:
        var(--brand-orange-light);

    border-left:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-small);
}

.notice-box strong {
    color: var(--brand-navy);
}

.info-box {

    margin: 20px 0;

    padding: 18px;

    background: #F5F6F9;

    border-left:
        4px solid var(--brand-navy);

    border-radius:
        var(--radius-small);
}


/* =========================================================
   32. DOWNLOAD LIST
   ========================================================= */

.download-list {

    display: grid;

    gap: 10px;

    margin: 20px 0;
}

.download-item {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 14px 17px;

    background:
        var(--white);

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

    border-left:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-small);

    transition:
        var(--transition);
}

.download-item:hover {

    background:
        var(--brand-orange-light);

    border-color:
        rgba(255,133,0,0.35);
}

.download-item-title {

    color:
        var(--brand-navy);

    font-weight: 600;
}

.download-item i {
    color: var(--brand-orange);
}


/* =========================================================
   33. FAQ
   ========================================================= */

.faq-list {

    display: grid;

    gap: 10px;
}

.faq-item {

    padding: 17px 20px;

    background: var(--white);

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

    border-left:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-small);
}

.faq-question {

    margin-bottom: 7px;

    color: var(--brand-navy);

    font-weight: 700;
}

.faq-answer {

    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   34. STATISTICS
   ========================================================= */

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.stat-box {

    padding: 25px 15px;

    text-align: center;

    background:
        var(--brand-navy);

    border-bottom:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);
}

.stat-number {

    display: block;

    margin-bottom: 5px;

    color: var(--white);

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

.stat-label {

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

    font-size: 13px;
}


/* =========================================================
   35. CTA
   ========================================================= */

.cta {

    position: relative;

    padding: 38px 35px;

    background:
        var(--brand-navy);

    border-radius:
        var(--radius-medium);

    overflow: hidden;
}

.cta::after {

    content: "";

    position: absolute;

    right: -80px;
    top: -80px;

    width: 220px;
    height: 220px;

    background:
        var(--brand-orange);

    border-radius: 50%;

    opacity: 0.9;
}

.cta-content {

    position: relative;

    z-index: 2;
}

.cta h2 {

    margin: 0 0 8px;

    color: var(--white);

    font-size: 27px;
}

.cta p {

    max-width: 700px;

    color:
        rgba(255,255,255,0.78);
}


/* =========================================================
   36. FORMS
   ========================================================= */

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

.form-group label {

    display: block;

    margin-bottom: 6px;

    color: var(--brand-navy);

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

.form-control,
.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    min-height: 42px;

    padding: 9px 12px;

    background:
        var(--white);

    color:
        var(--text);

    border:
        1px solid #D8D8D8;

    border-radius:
        var(--radius-small);

    outline: none;

    transition:
        var(--transition);
}

.form-group textarea {

    min-height: 120px;

    resize: vertical;
}

.form-control:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--brand-orange);

    box-shadow:
        0 0 0 3px rgba(255,133,0,0.10);
}


/* =========================================================
   37. CONTACT
   ========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.contact-box {

    padding: 22px;

    background:
        var(--white);

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

    border-top:
        3px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);
}

.contact-box i {

    display: block;

    margin-bottom: 10px;

    color:
        var(--brand-orange);

    font-size: 23px;
}

.contact-box h3 {

    margin: 0 0 6px;

    font-size: 17px;
}

.contact-box p {

    margin: 0;

    color:
        var(--text-light);

    font-size: 14px;
}


/* Simple contact icon */

.contact-icon-simple {

    color: var(--brand-orange);

    font-size: 16px;

    width: 22px;

    text-align: center;
}


/* =========================================================
   38. FOOTER
   ========================================================= */

.footer {

    width: 100%;
    max-width: 100%;

    margin: 0;

    background:
        var(--brand-navy);

    color:
        rgba(255,255,255,0.78);
}

.inner-footer {

    width: 100%;

    padding: 55px 0 45px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 45px;

    align-items: start;
}

.footer-column {
    min-width: 0;
}

.footer-column h3,
.footer-column h4 {

    margin: 0 0 18px;

    color: var(--white);

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

.footer-column h3 {
    font-size: 18px;
}

.footer-column h4::after {

    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 8px;

    background:
        var(--brand-orange);
}


/* Footer brand */

.footer-brand {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 18px;
}

.footer-logo {

    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;

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

    background: var(--white);

    border-radius: 50%;

    overflow: hidden;

    border:
        2px solid rgba(255,255,255,0.25);
}

.footer-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.footer-brand h3 {

    margin: 0 0 2px;

    color: var(--white);

    font-size: 17px;

    line-height: 1.3;
}

.footer-brand span {

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

    font-size: 12px;
}


/* Footer about */

.footer-about > p {

    max-width: 390px;

    margin: 0 0 20px;

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

    font-size: 13px;

    line-height: 1.7;
}


/* Footer contact */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 11px;

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

    font-size: 13px;

    line-height: 1.5;
}

.footer-contact-item i {

    width: 18px;

    flex: 0 0 18px;

    margin-top: 3px;

    color:
        var(--brand-orange);

    font-size: 14px;

    text-align: center;
}

.footer-contact-item a {

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

    transition:
        var(--transition);
}

.footer-contact-item a:hover {
    color: var(--brand-orange);
}


/* Footer links */

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-column li {

    margin: 0;

    padding: 0;

    border: 0;

    font-size: 13px;
}

.footer-column li::before {

    content: "›";

    margin-right: 8px;

    color:
        var(--brand-orange);

    transition:
        var(--transition);
}

.footer-column li a {

    display: inline-block;

    padding: 5px 0;

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

    transition:
        var(--transition);
}

.footer-column li:hover a {

    color: var(--white);

    transform:
        translateX(3px);
}

.footer-column li:hover::before {
    color: var(--white);
}


/* =========================================================
   39. FOOTER HIGHLIGHT
   ========================================================= */

.footer-highlight {

    width: 100%;

    background:
        var(--brand-orange);
}

.footer-highlight-inner {

    min-height: 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-highlight strong {

    display: block;

    margin-bottom: 2px;

    color: var(--white);

    font-size: 16px;
}

.footer-highlight span {

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

    font-size: 12px;
}

.footer-contact-btn {

    display: inline-flex;

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

    gap: 8px;

    min-height: 38px;

    padding: 7px 17px;

    background:
        var(--white);

    color:
        var(--brand-navy);

    border-radius:
        var(--radius-small);

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

    transition:
        var(--transition);
}

.footer-contact-btn:hover {

    background:
        var(--brand-navy);

    color:
        var(--white);

    transform:
        translateY(-1px);
}


/* =========================================================
   40. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    width: 100%;

    padding: 15px 0;

    background:
        var(--brand-navy-dark);

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    margin: 0;

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

    font-size: 11px;
}

.footer-bottom a {

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

    transition:
        var(--transition);
}

.footer-bottom a:hover {
    color: var(--brand-orange);
}


/* =========================================================
   41. BREADCRUMB
   ========================================================= */

.breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 20px;

    font-size: 12px;
}

.breadcrumb a {
    color: var(--brand-orange);
}

.breadcrumb span {
    color: #999999;
}


/* =========================================================
   42. BADGE
   ========================================================= */

.badge {

    display: inline-block;

    padding: 4px 9px;

    border-radius: 3px;

    background:
        var(--brand-orange-light);

    color:
        var(--brand-orange);

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


/* =========================================================
   43. NOTICE BAR
   ========================================================= */

.notice-bar {

    width: 100%;

    background:
        var(--white);

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

.notice-bar-inner {

    min-height: 40px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.notice-label {

    flex: 0 0 auto;

    padding: 5px 12px;

    background:
        var(--brand-orange);

    color:
        var(--white);

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

    text-transform: uppercase;
}


/* =========================================================
   44. IMAGE CARDS
   ========================================================= */

.image-card {

    overflow: hidden;

    background:
        var(--white);

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

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-soft);

    transition:
        var(--transition);
}

.image-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-medium);
}

.image-card img {

    width: 100%;

    aspect-ratio:
        16 / 9;

    object-fit: cover;
}

.image-card-content {

    padding: 18px;
}

.image-card-content h3 {

    margin: 0 0 7px;

    font-size: 18px;
}

.image-card-content p {

    margin: 0;

    color:
        var(--text-light);

    font-size: 13px;
}


/* =========================================================
   45. TEAM
   ========================================================= */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.team-card {

    overflow: hidden;

    background:
        var(--white);

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

    border-radius:
        var(--radius-medium);

    text-align: center;

    box-shadow:
        var(--shadow-soft);

    transition:
        var(--transition);
}

.team-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-medium);
}

.team-card img {

    width: 100%;

    aspect-ratio:
        1 / 1;

    object-fit: cover;
}

.team-card-content {
    padding: 15px;
}

.team-card h3 {

    margin: 0 0 4px;

    font-size: 16px;
}

.team-card span {

    color:
        var(--brand-orange);

    font-size: 12px;
}


/* =========================================================
   46. SCROLL TOP
   ========================================================= */

.scroll-top {

    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 42px;
    height: 42px;

    display: flex;

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

    background:
        var(--brand-orange);

    color:
        var(--white);

    border-radius: 50%;

    box-shadow:
        var(--shadow-medium);

    z-index: 9000;

    transition:
        var(--transition);
}

.scroll-top:hover {

    background:
        var(--brand-navy);

    color:
        var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   47. SELECTION
   ========================================================= */

::selection {

    background:
        var(--brand-orange);

    color:
        var(--white);
}


/* =========================================================
   48. GLOBAL WIDTH
   ========================================================= */

header,
main,
section,
footer,
.hero,
.home-hero,
.content-page,
.navigation-area,
.brand-area,
.top-bar {

    width: 100%;
    max-width: 100%;
}


/* =========================================================
   49. BOARD OF DIRECTORS
   ========================================================= */

.board-directors {
    width: 100%;
}

.board-intro {

    max-width: 850px;

    margin: 0 0 35px;

    color:
        var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}

.directors-list {

    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;
}


/* Director card */

.director-card {

    display: grid;

    grid-template-columns:
        220px minmax(0,1fr);

    min-width: 0;

    background:
        var(--white);

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

    border-left:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);

    overflow: hidden;

    box-shadow:
        var(--shadow-soft);

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

.director-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        var(--shadow-medium);

    border-color:
        rgba(255,133,0,0.35);
}


/* Director photo */

.director-photo {

    position: relative;

    width: 100%;

    min-height: 245px;

    overflow: hidden;

    background:
        var(--brand-orange-light);
}

.director-photo img {

    width: 100%;
    height: 100%;

    min-height: 245px;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.4s ease;
}

.director-card:hover .director-photo img {
    transform: scale(1.03);
}


/* Director content */

.director-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 28px 32px;
}

.director-designation {

    display: inline-block;

    align-self: flex-start;

    margin-bottom: 8px;

    padding: 4px 10px;

    background:
        var(--brand-orange-light);

    color:
        var(--brand-orange);

    border-radius: 3px;

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

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.director-name {

    margin: 0 0 10px;

    color:
        var(--brand-navy);

    font-size: 24px;

    line-height: 1.25;

    font-weight: 700;
}

.director-brief {

    margin: 0 0 20px;

    max-width: 850px;

    color:
        var(--text-light);

    font-size: 14px;

    line-height: 1.75;
}


/* Director meta */

.director-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px 18px;

    margin-bottom: 20px;

    color:
        var(--text-light);

    font-size: 12px;
}

.director-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;
}

.director-meta i {
    color: var(--brand-orange);
}


/* Director button */

.director-button {

    display: inline-flex;

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

    align-self: flex-start;

    gap: 8px;

    min-height: 40px;

    padding: 8px 17px;

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

    border-radius:
        var(--radius-small);

    background:
        var(--brand-orange);

    color:
        var(--white);

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

    cursor: pointer;

    transition:
        var(--transition);
}

.director-button:hover {

    background:
        var(--brand-orange-dark);

    border-color:
        var(--brand-orange-dark);

    color:
        var(--white);

    transform:
        translateY(-1px);
}

.director-button i {
    font-size: 11px;
}


/* =========================================================
   50. DIRECTOR MODAL
   ========================================================= */

.director-modal {

    position: fixed;

    inset: 0;

    z-index: 1000000;

    display: flex;

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

    padding: 25px;

    background:
        rgba(13,16,34,0.78);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.director-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.director-modal-content {

    position: relative;

    width: 100%;

    max-width: 850px;

    max-height: 90vh;

    overflow: hidden;

    background:
        var(--white);

    border-radius:
        var(--radius-large);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.30);

    transform:
        translateY(20px) scale(0.97);

    transition:
        transform 0.3s ease;
}

.director-modal.active .director-modal-content {
    transform:
        translateY(0) scale(1);
}


/* Modal close */

.director-modal-close {

    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;

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

    border: none;

    border-radius: 50%;

    background:
        var(--brand-navy);

    color:
        var(--white);

    font-size: 17px;

    cursor: pointer;

    transition:
        var(--transition);
}

.director-modal-close:hover {

    background:
        var(--brand-orange);

    color:
        var(--white);

    transform:
        rotate(90deg);
}


/* Modal body */

.director-modal-body {

    display: grid;

    grid-template-columns:
        270px minmax(0,1fr);

    max-height: 90vh;

    overflow-y: auto;
}


/* Modal photo */

.director-modal-photo {

    min-height: 380px;

    background:
        var(--brand-orange-light);
}

.director-modal-photo img {

    width: auto;
    height: auto;

    min-height: 380px;

    display: block;

    object-fit: cover;

    object-position: center top;
}


/* Modal details */

.director-modal-details {
    padding: 38px 40px;
}

.modal-designation {

    display: inline-block;

    margin-bottom: 8px;

    color:
        var(--brand-orange);

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

    letter-spacing: 1px;

    text-transform: uppercase;
}

.modal-director-name {

    margin: 0 0 18px;

    color:
        var(--brand-navy);

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;
}

.modal-divider {

    width: 45px;
    height: 3px;

    margin-bottom: 20px;

    background:
        var(--brand-orange);
}

.modal-description {

    color:
        var(--text);

    font-size: 14px;

    line-height: 1.85;
}

.modal-description p {

    margin: 0 0 14px;

    color:
        var(--text);
}

.modal-description p:last-child {
    margin-bottom: 0;
}


/* Modal information */

.modal-info {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 12px;

    margin: 25px 0;
}

.modal-info-box {

    padding: 12px 14px;

    background:
        var(--bg-light);

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

    border-radius:
        var(--radius-small);
}

.modal-info-box small {

    display: block;

    margin-bottom: 3px;

    color:
        var(--text-light);

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

    text-transform: uppercase;
}

.modal-info-box strong {

    color:
        var(--brand-navy);

    font-size: 13px;
}


/* =========================================================
   51. TABLET + MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 991px) {

    :root {

        --topbar-height: 36px;
        --brand-height: 72px;
        --nav-height: 54px;

        --header-height:
            calc(
                var(--topbar-height)
                + var(--brand-height)
                + var(--nav-height)
            );
    }


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

    body {
        padding-top: var(--header-height);
    }


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

    .header {

        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        height:
            var(--header-height) !important;

        overflow:
            visible !important;

        transform:
            none !important;

        -webkit-transform:
            none !important;
    }


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

    .container {

        width: 100%;
        max-width: 100%;

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


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

    .top-bar {

        height:
            var(--topbar-height);

        min-height:
            var(--topbar-height);
    }

    .top-bar-inner {

        height:
            var(--topbar-height);

        min-height:
            var(--topbar-height);
    }


    /* =====================================================
       BRAND
       ===================================================== */

    .brand-area {

        height:
            var(--brand-height);

        min-height:
            var(--brand-height);
    }

    .brand-area::before {

        width: 100%;

        clip-path: none;
    }

    .brand-inner {

        height:
            var(--brand-height);

        min-height:
            var(--brand-height);

        padding:
            9px 18px;
    }

    .logo1 {

        max-width:
            calc(100% - 60px);
    }

    .logo-image {

        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .logo-image img {

        width: 48px;
        height: 48px;

        max-width: 48px;
        max-height: 48px;
    }

    .bank-name strong {
        font-size: 16px;
    }

    .bank-name span {
        font-size: 10px;
    }

    .bank-highlights {
        display: none;
    }


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

    .navigation-area {

        position: relative !important;

        width: 100% !important;

        height: 54px !important;
        min-height: 54px !important;

        overflow: visible !important;

        z-index: 1000 !important;

        box-shadow:
            0 3px 14px rgba(0,0,0,0.18);
    }


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

    .navigation-inner {

        position: relative !important;

        display: flex !important;

        align-items: center !important;

        justify-content: space-between !important;

        width: 100% !important;

        height: 54px !important;
        min-height: 54px !important;

        padding:
            6px 15px !important;
    }


    /* =====================================================
       HAMBURGER
       ===================================================== */

    .nav-toggle {

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        flex-direction: column !important;

        position: relative !important;

        width: 44px !important;
        height: 42px !important;

        margin: 0 !important;
        padding: 6px !important;

        border: none !important;

        border-radius:
            5px !important;

        background:
            var(--brand-orange) !important;

        cursor: pointer !important;

        z-index:
            9999999 !important;

        flex-shrink: 0 !important;

        -webkit-appearance: none !important;
        appearance: none !important;
    }


    .nav-toggle span {

        display: block !important;

        width: 24px !important;
        height: 2px !important;

        margin: 3px 0 !important;

        background:
            #ffffff !important;

        border-radius:
            2px !important;

        transition:
            all 0.25s ease !important;
    }


    /* Hamburger → X */

    .nav-toggle.active span:nth-child(1) {

        transform:
            translateY(8px)
            rotate(45deg) !important;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .nav-toggle.active span:nth-child(3) {

        transform:
            translateY(-8px)
            rotate(-45deg) !important;
    }


    /* =====================================================
       MOBILE NAV CONTAINER
       ===================================================== */

    .nav {

        position: absolute !important;

        top: 54px !important;

        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        height: auto !important;

        max-height:
            calc(100vh - var(--header-height) - 5px) !important;

        display: none !important;

        margin: 0 !important;
        padding: 0 !important;

        background:
            var(--brand-navy) !important;

        overflow-x: hidden !important;

        overflow-y: auto !important;

        overscroll-behavior: contain;

        -webkit-overflow-scrolling:
            touch;

        box-shadow:
            0 12px 30px rgba(0,0,0,0.25) !important;

        border-top:
            1px solid rgba(255,255,255,0.10) !important;

        z-index:
            9999998 !important;
    }


    /* IMPORTANT:
       JavaScript should add .mobile-open
    */

    .nav.mobile-open {

        display:
            block !important;
    }


    /* =====================================================
       MOBILE NAV LIST
       ===================================================== */

    .nav-list {

        display: block !important;

        width: 100% !important;

        height: auto !important;

        margin: 0 !important;

        padding: 6px 0 !important;

        list-style: none !important;
    }


    .nav-list > li {

        position: relative !important;

        display: block !important;

        width: 100% !important;

        height: auto !important;

        margin: 0 !important;

        padding: 0 !important;

        border-bottom:
            1px solid rgba(255,255,255,0.08);
    }


    /* =====================================================
       MOBILE MAIN LINKS
       ===================================================== */

    .nav-list > li > .nav-link {

        position: relative !important;

        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        min-height: 48px !important;

        height: auto !important;

        padding:
            13px 50px 13px 20px !important;

        color:
            #ffffff !important;

        background:
            transparent !important;

        font-size: 14px !important;

        font-weight: 600 !important;

        border-bottom:
            1px solid rgba(255,255,255,0.08) !important;

        text-decoration: none !important;
    }


    .nav-list > li > .nav-link:hover,
    .nav-list > li > .nav-link:focus,
    .nav-list > li > .nav-link:active {

        background:
            var(--brand-navy-light) !important;

        color:
            #ffffff !important;
    }


    /* Remove desktop underline */

    .nav-list > li > .nav-link::after {
        display: none !important;
    }


    /* =====================================================
       MOBILE DROPDOWN ARROW
       ===================================================== */

    .nav-list > li.has-submenu > .nav-link {

        padding-right:
            50px !important;
    }

    .nav-list > li.has-submenu > .nav-link::before {

        content: "" !important;

        position: absolute !important;

        right: 22px !important;

        top: 50% !important;

        width: 8px !important;
        height: 8px !important;

        border-right:
            2px solid var(--brand-orange) !important;

        border-bottom:
            2px solid var(--brand-orange) !important;

        transform:
            translateY(-70%)
            rotate(45deg) !important;

        transition:
            transform 0.25s ease !important;
    }


    /* Arrow UP when submenu open */

    .nav-list > li.has-submenu.submenu-open >
    .nav-link::before {

        transform:
            translateY(-20%)
            rotate(225deg) !important;
    }


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

    .nav-list > li > .submenu {

        position: static !important;

        display: none !important;

        width: 100% !important;

        height: auto !important;

        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        background:
            rgba(0,0,0,0.18) !important;

        border-top:
            2px solid var(--brand-orange) !important;

        border-left: 0 !important;

        box-shadow: none !important;

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        overflow: hidden !important;
    }


    /* ONLY .submenu-open opens submenu */

    .nav-list > li.submenu-open > .submenu {

        display:
            block !important;
    }


    /* =====================================================
       MOBILE SUBMENU LINKS
       ===================================================== */

    .submenu .nav-link {

        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        min-height: 44px !important;

        padding:
            11px 20px 11px 40px !important;

        color:
            rgba(255,255,255,0.90) !important;

        background:
            rgba(0,0,0,0.12) !important;

        font-size: 13px !important;

        line-height: 1.45 !important;

        border-bottom:
            1px solid rgba(255,255,255,0.07) !important;

        text-decoration: none !important;

        white-space: normal !important;

        overflow-wrap: anywhere !important;
    }


    /* Submenu bullet/arrow */

    .submenu .nav-link::before {

        content: "" !important;

        display: inline-block !important;

        width: 6px !important;
        height: 6px !important;

        margin-right: 10px !important;

        flex-shrink: 0 !important;

        border-right:
            1.5px solid var(--brand-orange) !important;

        border-bottom:
            1.5px solid var(--brand-orange) !important;

        transform:
            rotate(-45deg) !important;
    }


    .submenu .nav-link:hover,
    .submenu .nav-link:focus {

        color:
            #ffffff !important;

        background:
            var(--brand-navy-light) !important;

        padding-left:
            46px !important;
    }


    /* =====================================================
       ACCESSIBILITY
       ===================================================== */

    .header-accessibility {

        display: flex !important;

        align-items: center !important;

        height: 42px !important;

        margin-left: auto !important;

        z-index:
            9999999 !important;
    }


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

    .section {
        padding: 50px 0;
    }

    .content-page {
        padding: 35px 0 55px;
    }

    .page-title {
        font-size: 28px;
    }

    .content-grid,
    .content-grid.reverse {

        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .card-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .feature-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .stats-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


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

    .footer-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:
            35px 30px;
    }


    /* =====================================================
       DIRECTORS
       ===================================================== */

    .directors-list {
        gap: 18px;
    }

    .director-card {

        grid-template-columns:
            1fr;
    }

    .director-photo {

        min-height: 260px;

        max-height: 320px;
    }

    .director-photo img {

        min-height: 260px;

        max-height: 320px;
    }

    .director-content {
        padding: 22px 20px 24px;
    }

    .director-name {
        font-size: 21px;
    }

    .director-brief {

        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================================
       DIRECTOR MODAL
       ===================================================== */

    .director-modal {
        padding: 15px;
    }

    .director-modal-content {

        max-height: 92vh;

        border-radius:
            var(--radius-medium);
    }

    .director-modal-body {

        display: block;

        max-height: 92vh;

        overflow-y: auto;
    }

    .director-modal-photo {

        min-height: 250px;

        max-height: 300px;
    }

    .director-modal-photo img {

        min-height: 250px;

        max-height: 300px;
    }

    .director-modal-details {

        padding: 25px 22px 30px;
    }

    .modal-director-name {

        font-size: 23px;

        padding-right: 35px;
    }

    .modal-description {

        font-size: 13px;

        line-height: 1.75;
    }

    .modal-info {

        grid-template-columns: 1fr;
    }
}


/* =========================================================
   52. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    :root {

        --topbar-height: 36px;
        --brand-height: 72px;
        --nav-height: 54px;

        --header-height:
            162px;
    }


    body {

        font-size: 14px;

        padding-top:
            var(--header-height);
    }


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

    .top-bar-inner {

        min-height: 36px;

        justify-content: center;
    }

    .top-left {
        display: none;
    }

    .top-right {

        justify-content: center;

        gap: 7px;

        font-size: 11px;
    }

    .top-right span:last-child {
        display: none;
    }


    /* =====================================================
       BRAND
       ===================================================== */

    .brand-inner {

        height: 72px;

        min-height: 72px;

        padding:
            9px 12px;
    }

    .bank-name strong {

        font-size: 14px;

        line-height: 1.2;
    }

    .bank-name span {

        font-size: 9px;

        line-height: 1.3;
    }

    .logo1 {

        gap: 10px;

        max-width:
            calc(100% - 55px);
    }

    .logo-image {

        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .logo-image img {

        width: 43px;
        height: 43px;

        max-width: 43px;
        max-height: 43px;
    }


    /* =====================================================
       HAMBURGER
       ===================================================== */

    .nav-toggle {

        width: 40px !important;
        height: 38px !important;

        margin:
            0 !important;
    }

    .nav-toggle span {
        width: 21px !important;
    }


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

    .nav {

        top: 54px !important;

        max-height:
            calc(
                100vh -
                var(--header-height) -
                5px
            ) !important;
    }

    .nav-list > li > .nav-link {

        min-height: 48px !important;

        padding-left:
            15px !important;

        padding-right:
            45px !important;
    }

    .submenu .nav-link {

        padding-left:
            36px !important;

        padding-right:
            15px !important;
    }

    .submenu .nav-link:hover,
    .submenu .nav-link:focus {

        padding-left:
            41px !important;
    }


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

    .page-hero {

        padding:
            22px 20px;

        margin-bottom:
            25px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 25px;
    }

    .card-grid,
    .feature-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }

    .cta {
        padding: 28px 22px;
    }

    .cta h2 {
        font-size: 23px;
    }

    .table-wrap {
        border-radius: 4px;
    }

    .rate-table,
    .common-table {
        min-width: 600px;
    }


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

    .inner-footer {
        padding: 40px 0 30px;
    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 30px;
    }

    .footer-about > p {
        max-width: 100%;
    }

    .footer-highlight-inner {

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .footer-contact-btn {
        width: 100%;
    }

    .footer-bottom-inner {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 5px;
    }


    /* =====================================================
       DIRECTORS
       ===================================================== */

    .director-photo {

        min-height: 230px;

        max-height: 280px;
    }

    .director-photo img {

        min-height: 230px;

        max-height: 280px;
    }

    .director-content {
        padding: 20px 17px 22px;
    }

    .director-name {
        font-size: 20px;
    }

    .director-modal {
        padding: 10px;
    }

    .director-modal-content {
        max-height: 94vh;
    }

    .director-modal-photo {

        min-height: 210px;

        max-height: 250px;
    }

    .director-modal-photo img {

        min-height: 210px;

        max-height: 250px;
    }

    .director-modal-details {
        padding: 22px 18px 25px;
    }

    .director-modal-close {

        width: 34px;
        height: 34px;

        top: 10px;
        right: 10px;
    }
}


/* =========================================================
   53. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .container {

        width: 100%;

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


    .top-right a:nth-of-type(1),
    .top-right a:nth-of-type(2) {
        display: none;
    }


    .logo1 {
        gap: 8px;
    }

    .logo-image {

        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .logo-image img {

        width: 40px;
        height: 40px;

        max-width: 40px;
        max-height: 40px;
    }

    .bank-name strong {
        font-size: 13px;
    }

    .bank-name span {
        font-size: 8px;
    }


    .page-title {
        font-size: 22px;
    }

    .content-page {
        padding-top: 25px;
    }

    .section {
        padding: 40px 0;
    }


    .navigation-inner {

        padding-left:
            12px !important;

        padding-right:
            12px !important;
    }


    .nav {

        max-height:
            calc(
                100vh -
                var(--header-height) -
                5px
            ) !important;
    }


    .nav-list > li > .nav-link {

        padding-left:
            13px !important;

        padding-right:
            42px !important;
    }


    .submenu .nav-link {

        padding-left:
            34px !important;

        padding-right:
            12px !important;
    }


    .footer-brand h3 {
        font-size: 15px;
    }

    .footer-logo {

        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .footer-column h4 {
        font-size: 16px;
    }
}


/* =========================================================
   54. DESKTOP FINAL DIMENSIONS
   ========================================================= */

@media (min-width: 992px) {

    :root {

        --topbar-height: 38px;
        --brand-height: 82px;
        --nav-height: 52px;

        --header-height:
            172px;
    }


    body {
        padding-top: 172px;
    }


    .header {
        height: 172px !important;
    }


    .top-bar {

        height: 38px;

        min-height: 38px;
    }

    .top-bar-inner {

        height: 38px;

        min-height: 38px;
    }


    .brand-area {

        height: 82px;

        min-height: 82px;
    }

    .brand-inner {

        height: 82px;

        min-height: 82px;
    }


    .navigation-area {

        position: relative !important;

        width: 100% !important;

        height: 52px !important;

        min-height: 52px !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        z-index: 100 !important;
    }

    .navigation-inner {

        height: 52px;

        min-height: 52px;
    }

    .nav {

        height: 52px;

        display: block;
    }

    .nav-list {

        height: 52px;
    }

    .nav-list > li {
        height: 52px;
    }

    .nav-list > li > .nav-link {

        height: 52px;

        min-height: 52px;
    }

    .nav-toggle {
        display: none !important;
    }

    .header-accessibility {
        display: flex;
    }
}


/* =========================================================
   55. HORIZONTAL OVERFLOW PROTECTION
   ========================================================= */

html,
body {

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
}


/* =========================================================
   END OF UNIVERSAL CSS
   ========================================================= */