

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    max-width: 100vw;
    overflow-x: clip;
    color: #2b1b1b;
    font-family:
        "Inter",
        "Noto Sans",
        "Noto Sans Devanagari",
        "Noto Sans Bengali",
        "Noto Sans Arabic",
        Arial,
        sans-serif;
    line-height: 1.6;
    background: #faf7f2;
    -webkit-font-smoothing: antialiased;
}


* {
    box-sizing: border-box;
}

a {
    transition: .25s ease;
}

button {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b1b1b;
}




.site-header {
    position: relative;
    z-index: 1000;
}

#header-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90px;

    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .12);

    transition: .3s ease;

    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.header-inner {
    position: relative;

    min-height: 90px;

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



.header-logo {
    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);
}

.header-logo-link {
    display: flex;
    align-items: center;
}

.header-logo-image {
    display: block;

    width: auto;
    height: 75px;
    max-width: 180px;

    object-fit: contain;

    filter: drop-shadow(
        0 3px 8px rgba(0, 0, 0, .2)
    );

    transition: .3s ease;
}

.header-logo-text {
    color: #fff;

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




.header-navigation {
    display: flex;
    align-items: center;
}


.header-navigation ul.navigation {
    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.header-navigation ul.navigation li {
    position: relative;
}

.header-navigation ul.navigation > li > a {
    position: relative;

    display: block;

    padding: 8px 0;

    color: #fff;

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

    text-decoration: none;
    white-space: nowrap;

    transition: .25s ease;
}

.header-navigation ul.navigation > li > a:hover {
    color: #8b0000;
}




.header-navigation ul.navigation > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #8b0000;

    transition: .25s ease;
}

.header-navigation ul.navigation > li > a:hover::after {
    width: 100%;
}




.header-navigation ul.navigation li ul {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 190px;

    margin: 0;
    padding: 8px 0;

    background: #fff;

    border-radius: 8px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: .25s ease;
}

.header-navigation ul.navigation li:hover > ul {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.header-navigation ul.navigation li ul a {
    display: block;

    padding: 9px 16px;

    color: #332525;

    font-size: 14px;

    text-decoration: none;
}

.header-navigation ul.navigation li ul a:hover {
    color: #8b0000;

    background: #faf5f2;
}



.mobile-menu-button {
    display: none;
}

.mobile-navigation,
#mobile-menu {
    display: none;
}



.hero-banner {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;
}

.hero-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-banner-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .72) 0%,
        rgba(0, 0, 0, .42) 38%,
        rgba(0, 0, 0, .08) 75%
    );
}




.hero-content {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;
    align-items: center;

    pointer-events: none;
}

.hero-content-inner {
    width: 100%;
    max-width: 1200px;

    margin: auto;
    padding: 0 20px;
}

.hero-copy {
    width: 100%;
}
.hero-title {
    max-width: 680px;
    margin-top: 55px;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-align: left;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.hero-description {
    max-width: 500px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, .9);

    font-size: clamp(14px, 1.5vw, 17px);

    line-height: 1.65;
}

.hero-line {
    width: 60px;
    height: 3px;

    margin-top: 25px;

    background: #8b0000;

    border-radius: 20px;
}

#header-sticky.is-sticky {
    position: fixed;

    min-height: 70px;

    background: rgba(250, 247, 242, .97);

    border-bottom:
        1px solid rgba(139, 0, 0, .08);

    box-shadow:
        0 5px 25px rgba(50, 20, 20, .1);

    backdrop-filter: blur(12px);
}

#header-sticky.is-sticky .header-inner {
    min-height: 70px;
}

#header-sticky.is-sticky .header-logo-image {
    height: 52px;
}

#header-sticky.is-sticky .header-logo-text {
    color: #2b1b1b;
}

#header-sticky.is-sticky
.header-navigation ul.navigation > li > a {
    color: #332525;
}

#header-sticky.is-sticky
.header-navigation ul.navigation > li > a:hover {
    color: #8b0000;
}

#header-sticky.is-sticky
.header-navigation ul.navigation > li > a::after {
    background: #8b0000;
}




.btn-primary,
button[type="submit"] {
    padding: 12px 24px;

    color: #fff;

    background: #8b0000;

    border: 0;
    border-radius: 8px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.btn-primary:hover,
button[type="submit"]:hover {
    background: #650000;

    transform: translateY(-2px);
}

.home .header-navigation ul.navigation > li > a {
    color: #fff;
}

/* Other pages — black navigation */
body:not(.home) .header-navigation ul.navigation > li > a {
    color: #332525;
}

body:not(.home) .header-navigation ul.navigation > li > a:hover {
    color: #8b0000;
}

/* Underline */
body:not(.home) .header-navigation ul.navigation > li > a::after {
    background: #8b0000;
}



.home-posts-section {
    padding: 110px 0;
    background: #f7f7f5;
}

.home-posts-section .container,
.why-section .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* SECTION HEADING */

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #8b0000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2,
.why-content h2 {
    margin: 0 0 18px;
    color: #17251d;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 500;
}

.section-heading p {
    margin: 0;
    color: #6b716c;
    font-size: 17px;
    line-height: 1.7;
}


/* POSTS GRID */

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


/* POST CARD */

.post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e3;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.post-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(20, 35, 27, 0.10);
}


/* CARD IMAGE */

.post-card-image {
    display: block;
    height: 260px;
    overflow: hidden;
}

.post-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}


/* CARD CONTENT */

.post-card-content {
    padding: 30px;
}

.post-card-meta {
    margin-bottom: 14px;
    color: #8b0000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.post-card-title {
    margin: 0 0 15px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
}

.post-card-title a {
    color: #17251d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.post-card-title a:hover {
    color: #8b0000;
}


.post-card-excerpt {
    margin: 0 0 25px;
    color: #6b716c;
    font-size: 15px;
    line-height: 1.7;
}


/* READ MORE */

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #17251d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.post-card-link:hover {
    gap: 12px;
    color: #8b0000;
}


/* =========================================================
   WHY INVEST WITH US
========================================================= */

.why-section {
    padding: 120px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}


/* IMAGE */

.why-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.why-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Optional gold accent */

.why-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-right: 3px solid #8b0000;
    border-bottom: 3px solid #800101;
    pointer-events: none;
}


/* CONTENT */

.why-content {
    max-width: 560px;
}

.why-content h2 {
    margin-bottom: 40px;
}


/* LIST */

.why-list {
    display: flex;
    flex-direction: column;
}

.why-list-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e0;
}

.why-list-item:first-child {
    padding-top: 0;
}

.why-list-item:last-child {
    border-bottom: none;
}



.why-list-icon {
    display: flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border: 1px solid #7c0101;
    border-radius: 50%;
    color: #8b0000;
    font-size: 18px;
    font-weight: 400;
}


/* TEXT */

.why-list-text {
    color: #59615b;
    font-size: 15px;
    line-height: 1.75;
}




.why-list-text strong {
    display: block;
    margin-bottom: 5px;
    color: #17251d;
    font-size: 17px;
    font-weight: 600;
}


::selection {
    background: #8b0000;
    color: #fff;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5eee7;
}

::-webkit-scrollbar-thumb {
    background: #8b0000;

    border-radius: 20px;
}

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

.site-footer {
    position: relative;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1c5022 0%,
            #075c3d 45%,
            #0b7650 100%
        );

    overflow: hidden;
}


/* =========================================================
   FOOTER LIGHT EFFECT
   ========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 30%
        );

    pointer-events: none;
}


/* Keep footer content above effect */

.site-footer > * {
    position: relative;

    z-index: 1;
}


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

.footer-main {
    padding: 85px 0 70px;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.12)
        );
}


.footer-container {
    width: min(1200px, 90%);

    margin: 0 auto;
}


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

.footer-grid {
    display: grid;

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

    gap: 55px;
}


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

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


.footer-logo {
    display: inline-block;

    margin-bottom: 5px;
}


.footer-logo img {
    display: block;

    width: auto;

    max-width: 180px;

    height: auto;
}


.footer-site-title {
    display: inline-block;

    color: #ffffff;

    font-size: 24px;

    font-weight: 700;

    text-decoration: none;
}


.footer-description {
    max-width: 350px;

    margin: 22px 0 0;

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

    font-size: 15px;

    line-height: 1.8;
}


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

.footer-column h3 {
    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.3;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 36px;

    height: 2px;

    background: #ffffff;

    border-radius: 10px;
}


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

.footer-links {
    margin: 0;

    padding: 0;

    list-style: none;
}


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


.footer-links a {
    display: inline-block;

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

    font-size: 14px;

    line-height: 1.6;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Remove arrows */

.footer-links a::before {
    display: none;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


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

.footer-contact p,
.footer-contact > a {
    display: block;

    margin: 0 0 14px;

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

    font-size: 14px;

    line-height: 1.7;

    text-decoration: none;
}


.footer-contact > a {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-contact > a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


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

.footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;
}


.footer-socials a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

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

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 15px;

    text-decoration: none;

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


.footer-socials a:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #075c3d;

    transform: translateY(-4px);
}


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

.footer-bottom {
    padding: 22px 0;

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

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


.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.footer-bottom p {
    margin: 0;

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

    font-size: 13px;

    line-height: 1.6;
}


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

@media (max-width: 1024px) {

    .footer-main {
        padding: 70px 0 60px;
    }


    .footer-grid {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 45px 35px;
    }


    .footer-description {
        max-width: 320px;
    }

}


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

@media (max-width: 768px) {

    .footer-main {
        padding: 60px 0 50px;
    }


    .footer-container {
        width: min(90%, 600px);
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-description {
        max-width: 100%;

        margin-top: 18px;
    }


    .footer-column h3 {
        margin-bottom: 18px;
    }


    .footer-socials {
        margin-top: 20px;
    }


    .footer-bottom {
        padding: 20px 0;
    }


    .footer-bottom-inner {
        justify-content: center;

        text-align: center;
    }

}


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

@media (max-width: 480px) {

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


    .footer-container {
        width: 88%;
    }


    .footer-grid {
        gap: 35px;
    }


    .footer-logo img {
        max-width: 155px;
    }


    .footer-site-title {
        font-size: 21px;
    }


    .footer-description {
        font-size: 14px;

        line-height: 1.7;
    }


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


    .footer-links a,
    .footer-contact p,
    .footer-contact > a {
        font-size: 14px;
    }


    .footer-socials {
        gap: 8px;
    }


    .footer-socials a {
        width: 40px;

        height: 40px;

        font-size: 14px;
    }


    .footer-bottom p {
        font-size: 12px;
    }

}





/* =========================================================
   GLOBAL ABOUT PAGE
========================================================= */

.about-us-section,
.mission-section,
.vision-section,
.team-section {
    width: 100%;
}

.about-us-container,
.mission-container,
.vision-container,
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   ABOUT US
========================================================= */

.about-us-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-us-content {
    flex: 1;
    max-width: 560px;
}

.about-us-title {
    margin: 0 0 25px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    color: #1c1c1c;
    letter-spacing: -1px;
}

.about-us-text {
    font-size: 17px;
    line-height: 1.85;
    color: #666;
}

.about-us-text p {
    margin: 0 0 18px;
}


/* About Image */

.about-us-image {
    width: 500px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
    margin-top: 60px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-us-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-us-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   OUR MISSION
========================================================= */

.mission-section {
    padding: 100px 0;
    background: #f8f8f6;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}


/* Mission Image */

.mission-image {
    width: 500px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.mission-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.mission-image:hover img {
    transform: scale(1.04);
}


/* Mission Content */

.mission-content {
    flex: 1;
    max-width: 560px;
}

.mission-title {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 15px;

    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1.2;
    font-weight: 700;
    color: #1c1c1c;
}

.mission-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #8b0000
;
    border-radius: 5px;
}


/* Mission List */

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

.mission-list li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 30px;

    font-size: 17px;
    line-height: 1.75;
    color: #555;
}

.mission-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

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

    background: #8b0000
;
    color: #fff;

    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   OUR VISION
========================================================= */

.vision-section {
    padding: 100px 0;
    background: #ffffff;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}


/* Vision Content */

.vision-content {
    flex: 1;
    max-width: 560px;
}

.vision-title {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 15px;

    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1.2;
    font-weight: 700;
    color: #1c1c1c;
}

.vision-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #8b0000
;
    border-radius: 5px;
}


/* Vision List */

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

.vision-list li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 30px;

    font-size: 17px;
    line-height: 1.75;
    color: #555;
}

.vision-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

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

    background: #8b0000
;
    color: #fff;

    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}


/* Vision Image */

.vision-image {
    width: 500px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.vision-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.vision-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   OUR TEAM
========================================================= */

.team-section {
    padding: 100px 0;
    background: #f8f8f6;
}

.team-container {
    position: relative;
}


/* Heading */

.team-heading {
    text-align: center;
    margin-bottom: 55px;
}

.team-heading h2 {
    position: relative;
    display: inline-block;

    margin: 0;
    padding-bottom: 15px;

    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1.2;
    font-weight: 700;
    color: #1c1c1c;
}

.team-heading h2::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 55px;
    height: 3px;

    transform: translateX(-50%);

    background: #8b0000
;
    border-radius: 5px;
}


/* Slider */

.team-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 20px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}


/* Team Image */

.team-image {
    width: 180px;
    height: 180px;

    margin: 0 auto 22px;

    overflow: hidden;

    border-radius: 50%;

    border: 5px solid #ffffff;

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

    background: #eee;
}

.team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

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


/* Team Name */

.team-name {
    margin: 0;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;

    color: #252525;
}


/* =========================================================
   TEAM SLIDER NAVIGATION
========================================================= */

.team-button-prev,
.team-button-next {
    width: 42px;
    height: 42px;

    color: #ffffff;

    background: #8b0000
;

    border-radius: 50%;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.team-button-prev:hover,
.team-button-next:hover {
    background: #a97d43;
    transform: scale(1.05);
}

.team-button-prev::after,
.team-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-section {
    width: 100%;
    padding-top: 85px;
    padding-bottom: 35px;
    box-sizing: border-box;
    background: #ffffff;
}

.contact-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


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

.contact-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

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

    gap: 25px;

    padding: 22px;

    box-sizing: border-box;

    background: #f4f5f7;

    border-radius: 20px;
}


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

.contact-info {
    width: 100%;
    padding: 10px 5px 10px 10px;
    box-sizing: border-box;
}

.contact-label {
    display: block;

    margin: 0 0 8px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1px;

    color: #6c0404;
}

.contact-info h2 {
    margin: 0 0 12px;

    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;

    color: #6c0404;
}

.contact-description {
    width: 100%;
    max-width: 420px;

    margin: 0 0 18px;

    font-size: 13px;
    line-height: 1.6;

    color: #333841;
}


/* =========================================================
   EMAIL / PHONE CARDS
========================================================= */

.contact-detail {
    width: 100%;
    max-width: 330px;

    min-height: 58px;

    display: flex;
    align-items: center;

    margin: 0 0 8px;
    padding: 7px 12px;

    box-sizing: border-box;

    background: #eef0f4;

    border: 1px solid #e0e3e8;

    border-radius: 13px;
}


/* =========================================================
   SVG ICON BOX
========================================================= */

.contact-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

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

    margin: 0 12px 0 0;
    padding: 0;

    box-sizing: border-box;

    background: #e6e3fa;

    border-radius: 9px;

    color: #700303;

    line-height: 0;
}

.contact-icon svg {
    display: block;

    width: 20px;
    height: 20px;

    margin: 0;
    padding: 0;

    flex-shrink: 0;
}


/* =========================================================
   EMAIL / PHONE TEXT
========================================================= */

.contact-detail-text {
    min-width: 0;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.contact-detail-text strong {
    display: block;

    margin: 0;
    padding: 0;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;

    color: #24344c;

    word-break: break-word;
}


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

.social-area {
    margin-top: 17px;
    padding: 0;
}

.social-area > span {
    display: block;

    margin: 0 0 8px;

    font-size: 12px;
    line-height: 1.3;

    color: #687386;
}

.social-icons {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0;
}

.social-icons a {
    width: 37px;
    height: 37px;

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

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    background: #e8eaf0;

    border-radius: 9px;

    color: #27364b;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.social-icons a svg {
    display: block;

    width: 18px;
    height: 18px;

    margin: 0;
    padding: 0;
}

.social-icons a:hover {
    background: #540202;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   RIGHT SIDE FORM BOX
========================================================= */

.contact-form-box {
    width: 100%;
    max-width: 430px;

    margin: 0;
    padding: 15px 18px;

    box-sizing: border-box;

    background: #f8f9fb;

    border-radius: 16px;
}


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

.form-field {
    width: 100%;

    margin: 0 0 10px;
    padding: 0;

    box-sizing: border-box;
}

.form-field:last-of-type {
    margin-bottom: 10px;
}

.form-field label {
    display: block;

    margin: 0 0 5px;
    padding: 0;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;

    color: #24344c;
}

.form-field label span {
    font-weight: 400;
    color: #8a93a2;
}


/* =========================================================
   CF7 FIELD WRAPPERS
========================================================= */

.contact-form-box .wpcf7-form-control-wrap {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box input[type="tel"] {
    width: 100%;
    max-width: 100%;

    height: 40px;

    display: block;

    margin: 0;
    padding: 8px 11px;

    box-sizing: border-box;

    font-family: inherit;
    font-size: 12px;
    line-height: 1.3;

    color: #24344c;

    background: #ffffff;

    border: 1px solid #cfd3da;

    border-radius: 5px;

    outline: none;

    box-shadow: none;

    transition: border-color 0.2s ease;
}


/* =========================================================
   TEXTAREA / MESSAGE
========================================================= */

.contact-form-box textarea {
    width: 100%;
    max-width: 100%;

    height: 40px;
    min-height: 40px;
    max-height: 40px;

    display: block;

    margin: 0;
    padding: 8px 11px;

    box-sizing: border-box;

    font-family: inherit;
    font-size: 12px;
    line-height: 1.3;

    color: #24344c;

    background: #ffffff;

    border: 1px solid #cfd3da;

    border-radius: 5px;

    outline: none;

    resize: none;

    overflow: hidden;

    box-shadow: none;

    transition: border-color 0.2s ease;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #9aa2ae;

    opacity: 1;
}


/* =========================================================
   FOCUS
========================================================= */

.contact-form-box input[type="text"]:focus,
.contact-form-box input[type="email"]:focus,
.contact-form-box input[type="tel"]:focus,
.contact-form-box textarea:focus {
    border-color: #460505;

    outline: none;

    box-shadow: 0 0 0 2px rgba(76, 43, 189, 0.08);
}


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

.form-submit {
    width: 100%;

    margin: 4px 0 0;
    padding: 0;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.form-submit input[type="submit"] {
    height: 40px;

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

    margin: 0;
    padding: 0 22px;

    box-sizing: border-box;

    border: none;
    border-radius: 6px;

    background: #690101;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;

    cursor: pointer;

    box-shadow: none;

    transition:
        background 0.3s ease,
        transform 0.2s ease;
}

.form-submit input[type="submit"]:hover {
    background: #5e0202;

    transform: translateY(-1px);
}

.form-submit input[type="submit"]:focus {
    outline: none;

    box-shadow: 0 0 0 3px rgba(76, 43, 189, 0.15);
}


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

.contact-form-box .wpcf7-not-valid-tip {
    display: block;

    margin-top: 3px;

    font-size: 10px;
    line-height: 1.2;
}

.contact-form-box .wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
    padding: 8px 10px;

    font-size: 11px;
    line-height: 1.4;

    border-radius: 6px;
}


/* =========================================================
   REMOVE UNWANTED CF7 SPACING
========================================================= */

.contact-form-box br {
    display: none;
}

.contact-form-box p {
    margin: 0;
    padding: 0;
}


/* =========================================================
   DESKTOP ALIGNMENT
========================================================= */

@media (min-width: 901px) {

    .contact-form-box {
        justify-self: end;
    }

}


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

@media (max-width: 900px) {

    .contact-section {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .contact-container {
        padding: 0 15px;
    }

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

        gap: 20px;

        padding: 18px;
    }

    .contact-info {
        padding: 5px;
    }

    .contact-form-box {
        max-width: 100%;
    }

    .contact-detail {
        max-width: 100%;
    }

}


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

@media (max-width: 600px) {

    .contact-section {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .contact-container {
        padding: 0 10px;
    }

    .contact-wrapper {
        padding: 15px;

        gap: 18px;

        border-radius: 15px;
    }

    .contact-info {
        padding: 3px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-info h2 {
        font-size: 28px;

        margin-bottom: 10px;
    }

    .contact-description {
        font-size: 12px;

        margin-bottom: 15px;
    }

    .contact-detail {
        min-height: 56px;

        padding: 7px 10px;

        border-radius: 11px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;

        margin-right: 10px;
    }

    .contact-icon svg {
        width: 19px;
        height: 19px;
    }

    .contact-detail-text strong {
        font-size: 12px;
    }

    .social-area {
        margin-top: 14px;
    }

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

    .contact-form-box {
        padding: 14px;

        border-radius: 13px;
    }

    .form-field {
        margin-bottom: 9px;
    }

    .form-submit input[type="submit"] {
        width: 100%;
    }

}


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

@media (max-width: 400px) {

    .contact-wrapper {
        padding: 12px;
    }

    .contact-form-box {
        padding: 12px;
    }

    .contact-info h2 {
        font-size: 25px;
    }

    .contact-detail-text strong {
        font-size: 11px;
    }

}

/* =========================================================
   LOGIN POPUP
   ========================================================= */

.login-modal {
    position: fixed;
    inset: 0;

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

    z-index: 999999;
}

.login-modal.active {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
}

.login-modal-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 420px;

    padding: 35px;

    background: #fff;
    border-radius: 10px;

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

    box-sizing: border-box;
}

.login-modal-content h2 {
    margin: 0 0 25px;

    color: #075c3d;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.login-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: 0;
    background: transparent;

    color: #075c3d;

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

    cursor: pointer;
}

.login-modal-close:hover {
    color: #43c6a0;
}


/* =========================================================
   WORDPRESS LOGIN FORM
   ========================================================= */

#header-login-form {
    margin: 0;
}

#header-login-form p {
    margin-bottom: 18px;
}

#header-login-form label {
    display: block;

    margin-bottom: 7px;

    color: #075c3d;

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

#header-login-form input[type="text"],
#header-login-form input[type="password"] {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #9bc77d;

    border-radius: 5px;

    background: #ffffff;

    color: #333;

    font-size: 15px;
}

#header-login-form input[type="text"]:focus,
#header-login-form input[type="password"]:focus {
    outline: none;

    border-color: #43c6a0;

    box-shadow:
        0 0 0 2px rgba(67, 198, 160, 0.15);
}


/* =========================================================
   REMEMBER ME
   ========================================================= */

#header-login-form .login-remember {
    display: flex;

    align-items: center;

    gap: 8px;
}

#header-login-form .login-remember label {
    margin: 0;

    color: #075c3d;
}

#header-login-form .login-remember input {
    accent-color: #43c6a0;
}


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

#header-login-form input[type="submit"] {
    width: 100%;

    padding: 13px;

    border: 0;

    border-radius: 5px;

    background: linear-gradient(
        180deg,
        #43c6a0 0%,
        #9bc77d 100%
    );

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.2s ease;
}

#header-login-form input[type="submit"]:hover {
    opacity: 0.9;
}

#header-login-form input[type="submit"]:active {
    transform: scale(0.98);
}


/* =========================================================
   PREVENT PAGE SCROLL WHEN LOGIN POPUP IS OPEN
   ========================================================= */

body.login-modal-open {
    overflow: hidden;
}




.header-auth {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.header-auth .header-login-button,
.header-auth .header-logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border: 1px solid #43c6a0;
    border-radius: 5px;

    background: linear-gradient(
        180deg,
        #43c6a0 0%,
        #9bc77d 100%
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.2s ease;
}

.header-auth .header-login-button:hover,
.header-auth .header-logout-button:hover {
    opacity: 0.9;

    color: #ffffff;

    transform: translateY(-1px);
}

.header-auth .header-login-button:active,
.header-auth .header-logout-button:active {
    transform: translateY(0);
}



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

@media (max-width: 768px) {

    .login-modal-content {
        width: 92%;

        padding: 30px;
    }

    .header-login-button,
    .header-logout-button {
        padding: 9px 16px;

        font-size: 13px;
    }

}


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

@media (max-width: 480px) {

    .login-modal-content {
        width: 94%;

        padding: 25px;
    }

    .header-login-button,
    .header-logout-button {
        padding: 8px 14px;

        font-size: 12px;
    }

}
/* =========================================================
   USER PAGE
========================================================= */

.user-page {
    width: 100%;
    background: #f6f8fb;
    padding: 0 0 80px;
}

.user-page-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   USERPAGE BANNER
   FULL WIDTH OLD STYLE
========================================================= */

.user-page-banner {
    position: relative;

    width: 100vw;

    margin-left: calc(50% - 50vw);

    height: 480px;
    min-height: 480px;

    margin-top: 0;
    margin-bottom: 45px;

    overflow: hidden;

    background: #111827;

    border-radius: 0;
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.user-page-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================================
   BANNER OVERLAY
========================================================= */

.user-page-banner-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.70),
        rgba(0, 0, 0, 0.25)
    );
}


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

.user-page-banner-content {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    padding: 40px;
}


/* =========================================================
   BANNER CONTENT INNER
========================================================= */

.user-page-banner-content-inner {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================================
   BANNER COPY
========================================================= */

.user-page-banner-copy {
    max-width: 700px;
}


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

.user-page-banner-title {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   BANNER DESCRIPTION
========================================================= */

.user-page-banner-description {
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BANNER LINE
========================================================= */

.user-page-banner-line {
    width: 70px;

    height: 4px;

    margin-top: 20px;

    background: #991b1b;
}


/* =========================================================
   DASHBOARD GRID
========================================================= */

.user-dashboard-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding: 0 30px;
}


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

.user-card {
    background: #ffffff;

    border-radius: 14px;

    padding: 32px;

    border: 1px solid #e7ebf0;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.05);
}


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

.card-heading {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 28px;
}

.card-heading h2 {
    margin: 5px 0 0;

    color: #172033;

    font-size: 26px;

    line-height: 1.2;
}

.card-label {
    display: block;

    color: #991b1b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   VERIFICATION STATUS BADGE
========================================================= */

.verification-status-area {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 7px;

    flex-shrink: 0;
}

.verification-label {
    color: #7a8494;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.verification-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 115px;

    padding: 9px 16px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   STATUS COLORS
========================================================= */

.status-approved {
    color: #166534;

    background: #dcfce7;

    border: 1px solid #bbf7d0;
}

.status-pending {
    color: #92400e;

    background: #fef3c7;

    border: 1px solid #991b1b;
}

.status-rejected {
    color: #991b1b;

    background: #fee2e2;

    border: 1px solid #fecaca;
}

.status-not-submitted {
    color: #475569;

    background: #f1f5f9;

    border: 1px solid #e2e8f0;
}


/* =========================================================
   USER INFORMATION
========================================================= */

.user-info-list {
    border-top: 1px solid #edf0f4;
}

.info-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    min-height: 55px;

    padding: 13px 0;

    border-bottom: 1px solid #edf0f4;
}

.info-row strong {
    color: #4b5563;

    font-size: 14px;

    font-weight: 600;
}

.info-row span {
    color: #172033;

    font-size: 14px;

    font-weight: 500;

    text-align: right;

    word-break: break-word;
}


/* =========================================================
   APPROVED AMOUNT
========================================================= */

.approved-amount-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding: 18px 20px;

    border-radius: 10px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;
}

.approved-amount-box span {
    color: #64748b;

    font-size: 14px;
}

.approved-amount-box strong {
    color: #166534;

    font-size: 22px;
}


/* =========================================================
   NOTICES
========================================================= */

.notice {
    margin-top: 22px;

    padding: 15px 18px;

    border-radius: 9px;

    font-size: 14px;

    line-height: 1.6;
}

.success-notice {
    color: #166534;

    background: #dcfce7;

    border: 1px solid #bbf7d0;
}

.pending-notice {
    color: #92400e;

    background: #fffbeb;

    border: 1px solid #991b1b;
}

.rejected-notice {
    color: #991b1b;

    background: #fef2f2;

    border: 1px solid #fecaca;
}

.error-notice {
    color: #991b1b;

    background: #fee2e2;

    border: 1px solid #fecaca;
}


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

.citizen-upload-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.upload-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.upload-field label {
    color: #273244;

    font-size: 14px;

    font-weight: 600;
}

.upload-field input[type="file"] {
    width: 100%;

    padding: 12px;

    color: #475569;

    font-size: 13px;

    background: #f8fafc;

    border: 1px solid #dce2e9;

    border-radius: 8px;

    box-sizing: border-box;
}

.upload-field input[type="file"]:focus {
    outline: none;

    border-color: #991b1b;

    box-shadow:
        0 0 0 3px rgba(
            200,
            155,
            60,
            0.12
        );
}

.upload-field a {
    display: inline-block;

    width: fit-content;

    color: #a57922;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;
}

.upload-field a:hover {
    color: #805d16;

    text-decoration: underline;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-button {
    width: 100%;

    margin-top: 8px;

    padding: 15px 22px;

    border: none;

    border-radius: 8px;

    background: #172033;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.submit-button:hover {
    background: #991b1b;

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(
            200,
            155,
            60,
            0.25
        );
}

.submit-button:active {
    transform: translateY(0);
}


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

@media (max-width: 900px) {

    .user-dashboard-grid {
        grid-template-columns: 1fr;

        padding: 0 20px;
    }


    /* BANNER */

    .user-page-banner {
        height: 420px;

        min-height: 420px;
    }

    .user-page-banner-content {
        padding: 30px;
    }

    .user-page-banner-content-inner {
        padding: 0;
    }

    .user-page-banner-title {
        font-size: 36px;
    }


    /* CARD */

    .user-card {
        padding: 25px;
    }

}


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

@media (max-width: 600px) {

    .user-page {
        padding-bottom: 50px;
    }


    /* ---------------------------------------------
       BANNER
    --------------------------------------------- */

    .user-page-banner {
        width: 100vw;

        margin-left: calc(50% - 50vw);

        height: 320px;

        min-height: 320px;

        margin-bottom: 30px;

        border-radius: 0;
    }

    .user-page-banner-image {
        width: 100%;

        height: 320px;
    }

    .user-page-banner-content {
        padding: 25px;
    }

    .user-page-banner-content-inner {
        width: 100%;

        padding: 0;
    }

    .user-page-banner-copy {
        max-width: 100%;
    }

    .user-page-banner-title {
        font-size: 30px;

        line-height: 1.2;
    }

    .user-page-banner-description {
        font-size: 15px;

        line-height: 1.6;
    }


    /* ---------------------------------------------
       DASHBOARD
    --------------------------------------------- */

    .user-dashboard-grid {
        grid-template-columns: 1fr;

        padding: 0 15px;

        gap: 20px;
    }


    /* ---------------------------------------------
       CARD
    --------------------------------------------- */

    .user-card {
        padding: 20px;

        border-radius: 10px;
    }


    /* ---------------------------------------------
       CARD HEADING
    --------------------------------------------- */

    .card-heading {
        flex-direction: column;

        gap: 15px;
    }


    /* ---------------------------------------------
       VERIFICATION BADGE
    --------------------------------------------- */

    .verification-status-area {
        align-items: flex-start;
    }


    /* ---------------------------------------------
       INFORMATION
    --------------------------------------------- */

    .info-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

    .info-row span {
        text-align: left;
    }


    /* ---------------------------------------------
       APPROVED AMOUNT
    --------------------------------------------- */

    .approved-amount-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/* ---------------------------------------------
   UPLOAD FIELD HINT

   Shown next to a document that is already stored,
   so the subscriber knows they can leave it empty.
   --------------------------------------------- */

.upload-hint {
    color: #6b7280;

    font-size: 12px;

    line-height: 1.4;
}
