@import "default.css";

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--bc);
    font-size: 14px;
    position: relative;
    font-weight: 400;
    background: var(--wc);
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-weight: 600;
    font-family: sans-serif;
}

 
/*END HEADER TOP*/
/* =============================================
   HEADER — Redesigned
   ============================================= */

/* ── Top Bar ── */
.header-topbar {
    background: #1e3a5f;
    padding: 7px 0;
    font-size: 12.5px;
}
.topbar-contact span { color: rgba(255,255,255,0.85); }
.topbar-contact i { margin-right: 5px; color: #90caf9; }
.topbar-contact span + span { margin-left: 20px; }
.topbar-social, .topbar-lang {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.topbar-social { font-size: 15px; }
.topbar-social:hover, .topbar-lang:hover { color: #fff; }

/* ── Main Header ── */
.header-section {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.09);
    padding: 8px 0;
}

/* ── Logo + Brand ── */
.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.header-logo { height: 62px; width: auto; }
.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.header-brand-name {
    font-size: 15px;
    font-weight: 800;
    color: #1e3a5f;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.header-brand-trec {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
}

/* ── Desktop Nav ── */
.main-nav { position: relative; display: flex; align-items: center; flex-grow: 1; }
.main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}
.main-nav-list > li > a {
    display: block;
    padding: 8px 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.main-nav-list > li > a i { font-size: 11px; margin-left: 2px; }
.main-nav-list > li > a:hover { background: #eef2f7; color: #1e3a5f; }
.main-nav-list > li.active > a {
    background: #eef2f7;
    color: #1e3a5f;
    font-weight: 700;
}

/* ── Dropdown ── */
.has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    border: 1px solid #e5e7eb;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
}
.nav-dropdown-right { left: auto; right: 0; }
.has-dropdown:hover .nav-dropdown,
.nav-user-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f3f4f6;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a i { width: 16px; color: #9ca3af; font-size: 13px; flex-shrink: 0; }
.nav-dropdown a:hover { background: #f0f4ff; color: #1e3a5f; }
.nav-dropdown a:hover i { color: #1e3a5f; }
.nav-dropdown a.nav-link-danger { color: #dc2626 !important; }
.nav-dropdown a.nav-link-danger i { color: #dc2626 !important; }

/* ── Nav Action Buttons ── */
.main-nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #1e3a5f;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.nav-cta-btn:hover { background: #162d4a; transform: translateY(-1px); }
.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    color: #1e3a5f !important;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #1e3a5f;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-login-btn:hover { background: #1e3a5f; color: #fff !important; }
.nav-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    color: #1e3a5f;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #1e3a5f;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.nav-user-btn:hover { background: #1e3a5f; color: #fff; }
.nav-user-wrap { position: relative; }

/* ── Mobile Hamburger ── */
.nav-hamburger {
    background: none;
    border: 1.5px solid #1e3a5f;
    border-radius: 7px;
    cursor: pointer;
    padding: 7px 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e3a5f;
    border-radius: 2px;
}
.nav-cta-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e3a5f;
    color: #fff !important;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none !important;
}

/* =============================================
   MOBILE MENU — Redesigned
   ============================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -340px;
    width: 310px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.add-class { left: 0; }

.mob-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #1e3a5f;
    flex-shrink: 0;
}
.mob-menu-logo { height: 50px; }
.mob-close-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mob-close-btn:hover { background: rgba(255,255,255,0.28); }

.mob-menu-cta {
    padding: 10px 14px;
    background: #eef2f7;
    flex-shrink: 0;
}
.mob-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #1e3a5f;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none !important;
    gap: 8px;
}
.mob-cta-btn:hover { background: #162d4a; }

.mob-menu-body { flex: 1; overflow-y: auto; padding: 4px 0; }

.mob-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none !important;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.mob-nav-link:hover, .mob-nav-link:focus { background: #f0f4ff; color: #1e3a5f; outline: none; }
.mob-nav-link .nav-icon { width: 20px; text-align: center; color: #9ca3af; font-size: 15px; flex-shrink: 0; }
.mob-nav-link:hover .nav-icon { color: #1e3a5f; }
.mob-nav-toggle { justify-content: space-between; }
.mob-toggle-icon { transition: transform 0.25s; font-size: 13px; color: #9ca3af; }
.mob-nav-toggle[aria-expanded="true"] .mob-toggle-icon { transform: rotate(180deg); }
.mob-nav-toggle[aria-expanded="true"] { background: #f0f4ff; color: #1e3a5f; }

.mob-nav-sub { background: #f8fafc; }
.mob-nav-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 52px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.mob-nav-sub a:last-child { border-bottom: none; }
.mob-nav-sub a i { color: #9ca3af; font-size: 13px; }
.mob-nav-sub a:hover { background: #e8f0fe; color: #1e3a5f; }

.mob-nav-logout { color: #dc2626 !important; }
.mob-nav-logout .nav-icon { color: #dc2626 !important; }
.mob-nav-logout:hover { background: #fef2f2 !important; color: #dc2626 !important; }

.mob-menu-footer {
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.mob-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border: 1.5px solid #1e3a5f;
    border-radius: 20px;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.mob-lang-btn:hover { background: #1e3a5f; color: #fff; }

/* ── Overlay ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 2;
}

.mobile-overlay.active {
    display: block;
}
 
/*HEADER END*/

/*ABOUT SECTION*/
.about-section {
    background: #ffffff;
   -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 30px 15px;

}

.about-photo img {
    width: 100%;
    height: 350px;

}

.about-details h4 {
    text-transform: capitalize;
    font-size: 35px;
}

.about-details p {
    text-align: justify;
    line-height: 25px;
}

/*END ABOUT SECTION*/

/*SERVICE SECTION*/
.service-section {
    background: #fff;

}

.section-title p {
    max-width: 563px;
    margin: 0 auto;
    padding-top: 7px;
}
.section-title h4{
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 700;
    padding: 10px;
}

.service-box {
    background: #ffffff;
    border: 1px solid rgba(219,221,238,.41);
    box-sizing: border-box;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 4px;
}
.service-box:hover{
    background: #ECF2FF;
}
.service-box h6 {
    text-align: center;
}


.service-box img {
    background: #ECF2FF;
    height: 80px;
    width: 80px;
    line-height: 80px;
    padding: 12px;
    border-radius: 50%;

}


.service-box h6 {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--pc);
    padding-top: 20px;
    font-size: 20px;
}

.service-box p {
    line-height: 22px;
    min-height: 90px;
    max-height: 90px;
    overflow: hidden;
    text-align: justify;
}

.service-box a {
    text-decoration: none;
    color: var(--rc);
    font-weight: 600;
    -webkit-transition: .2s;
    transition: .2s;
}

.service-box a:hover {
    color: var(--rc);
    text-decoration: underline;
}
.service-box.custom h6{
    padding: 0;
}

/*SERVICE SECTION END*/

/*=====================
	blog page
======================*/
.breadcrumb li a {
    color: var(--tc-red);
    text-decoration: none;
}

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

.p-blog-section {
    background: #F5F8FA !important;
}

.section-box {
    background: var(--wc);
    border: var(--border);
    -webkit-box-shadow: var(--shadow-section);
    box-shadow: var(--shadow-section);
}

.p-blog-box .blog-img img {
    width: 100%;
    height: 130px;
}

.p-blog-box .card-body{
    border: none;
}

.p-blog-box .card-body a {
    font-weight: 600;
    text-transform: inherit;
    line-height: 24px;
    font-size: 15px;
    display: block;
    color: var(--tc-black);
    text-decoration: none;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}



.p-blog-box {
    -webkit-transition: .4s;
    transition: .4s;
    margin-bottom: 30px;
    overflow: hidden;
}

.p-blog-box:hover {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    /* -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px; */
    overflow: hidden;
}

.custom-card {
    padding: 5px;
}

.p-blog-box .card span {
    font-size: 14px;
    padding-bottom: 3px;
    display: block;
    color: #777;
}

.p-blog-box .card span i {
    padding-right: 5px;
}

.breadcrumb {
    background: var(--wc);
    padding: 0;
    margin: 0;
}

.breadcrumb {
    padding: 20px 0 !important;
    margin: 0;
}

/*=====================
	blog page end
======================*/

/*=====================
	blog details page
======================*/
.blog-main {
    padding-right: 20px;
}

.latest-head {
    background: var(--sc);

}

.latest-head h4 {
    padding: 10px 8px;
    margin: 0;
    border-radius: 3px;
    color: var(--wc);
    text-transform: capitalize;
}

.p-letest-post .media {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.blog-main .blog-title img {
    width: 95%;
    max-height: 350px;
}

.blog-main .blog-title h6 {
    font-size: 12px;
    padding: 15px 0;
    color: var(--tc-red);
}

.p-letest-post .media-body span {
    color: var(--tc-red);
    font-size: 12px;
}

.p-letest-post .media img {
    width: 50px;
    margin-right: 10px;
}

.blog-details-txt h5 {
    color: var(--pc);
}

.txt-img {
    padding: 30px;
}

.txt-img img {
    width: 80%;
}

.blog-details-txt p {
    line-height: 30px;
}

.blog-details-txt h4 {
    padding-top: 30px;
}

.blog-title a {
    background: var(--sc);
    color: var(--wc);
    padding: 8px 10px;
    border-radius: 2px;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.blog-title h4 {
    color: var(--sc);
}

.category a {
    color: var(--sc);
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.category a:hover {
    color: var(--tc-red);

}

.category a i {
    color: var(--tc);
    padding-right: 10px;
}

/*custom card*/
.custom-card {
    border-bottom: 1px solid #ccc;
}

.custom-card .image img {
    width: 100%;
}

.custom-card-title {
    margin-left: 10px;
}

.custom-card-title h6 {
    margin: 0;
}

.custom-card-title h6 a {
    color: var(--tc-black);
    text-decoration: none;
}

.custom-card-title span {
    font-size: 12px;
    color: #777;
}

.section-head h5 {
    text-align: center;
    text-transform: capitalize;

}

.bd-date-time {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    display: inline-block;
}

/*=====================
	blog details page end
======================*/

/*=====================
    BO OPENING FORMS (Shared)
======================*/
.bo-form-section {
    background: #eef2f5;
    min-height: 60vh;
}

/* Form progress bar */
.bo-form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border: 1px solid #e0e6ed;
}

.bo-step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #888;
}

.bo-step-item .step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dde3ec;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.bo-step-item.active .step-num {
    background: #1e3a5f;
    color: #fff;
}

.bo-step-item.active {
    color: #1e3a5f;
}

.bo-step-divider {
    width: 30px;
    height: 2px;
    background: #dde3ec;
    border-radius: 2px;
}

/* Requirement list card */
.bo-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bo-requirements-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 13.5px;
    color: #444;
    border-bottom: 1px solid #f0f2f5;
}

.bo-requirements-list li:last-child {
    border-bottom: none;
}

.bo-requirements-list li::before {
    content: "\f058";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #1e3a5f;
    font-size: 15px;
    top: 7px;
}

/* Card overrides for form */
.bo-form-section .card {
    background: #ffffff;
    border: 1px solid #dce3ec;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.bo-form-section .card-header {
    padding: 0.85rem 1.25rem;
    background: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bo-form-section .card-header .card-title,
.bo-form-section .card-header h5,
.bo-form-section .card-header h4,
.bo-form-section .card-header h2 {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.bo-form-section .card-header .header-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.bo-form-section .card-body {
    padding: 1.25rem;
}

/* Required field label */
.bo-form-section label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    display: block;
}

.bo-form-section .form-control,
.bo-form-section .form-select {
    border-radius: 6px;
    border: 1px solid #cfd8dc;
    font-size: 13.5px;
    transition: border-color .2s, box-shadow .2s;
}

.bo-form-section .form-control:focus,
.bo-form-section .form-select:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}

/* Section sub-header */
.bo-form-section .section-sub-head {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    padding: 8px 0 6px;
    border-bottom: 2px solid #1e3a5f;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* File preview */
.file-preview {
    display: flex;
    align-items: center;
    margin-top: 6px;
    padding: 8px;
    background: #f0f4f8;
    border-radius: 6px;
    border: 1px solid #d8e2ec;
}

.file-preview img {
    max-width: 80px;
    max-height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    object-fit: cover;
}

.file-preview .file-info {
    flex: 1;
    font-size: 0.85em;
    word-break: break-word;
    color: #555;
}

.file-preview .remove-preview {
    cursor: pointer;
    color: #dc3545;
    font-size: 1.3rem;
    line-height: 1;
    margin-left: 10px;
    padding: 0 5px;
    font-weight: 700;
}

.file-preview .remove-preview:hover {
    color: #a71d2a;
}

/* Same as present checkbox */
.same-as-present {
    margin: 8px 0 4px 2px;
}

.same-as-present label {
    cursor: pointer;
    font-weight: 500 !important;
    font-size: 13px;
    color: #555;
}

/* Submit button area */
.bo-form-section .bo-submit-area {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dce3ec;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.bo-form-section .bo-submit-btn {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.bo-form-section .bo-submit-btn:hover {
    background: #2d5a94;
    transform: translateY(-1px);
}

/* ── Accordion in BO forms (color + border fix) ── */
.bo-form-section .accordion {
    --bs-accordion-btn-bg: #1e3a5f;
    --bs-accordion-active-bg: #162d4a;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-border-color: #dce3ec;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 9px;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.35);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c%2fsvg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c%2fsvg%3e");
}

.bo-form-section .accordion-item {
    border: 1px solid #dce3ec;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.bo-form-section .accordion-button {
    font-weight: 600;
    font-size: 14px;
    padding: 14px 18px;
    color: #ffffff;
}

.bo-form-section .accordion-button:not(.collapsed) {
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .15);
}

.bo-form-section .accordion-body {
    background: #ffffff;
    padding: 1.25rem;
}

/*BO ACCOUNT SECTION*/
.bo-account-section {
    background: #F5F8FA;
}

.bo-account-up {
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}

.bo-account-call-email {
    padding: 12px 0;
}
.bo-account-call-email .phone{
    font-weight:700;
    font-size:22px;
}
.bo-account-call-email span {
    float: left;

}
.bo-account-call-email span h6{
    color: var(--pc);
}

.bo-account-call-email i {
    font-size: 25px;
    color: var(--pc);
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    background: #FDF2F0;
    border-radius: 50%;
    margin-right: 20px;

}

.bo-account-call-email p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;

}

.bo-account-call-email p a{
    color: var(--tc);
}
.investor-complaint {
    margin-top: -170px;
}

.complain-form {
    margin: 0 auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: 0 104px 104px -40px rgb(0 0 0 / 16%);
    padding: 30px;
    background: var(--wc);
    max-width: 500px;
}
.complain-form2 input{
    width: 100% !important;
    padding: 7px;
}
.complain-form2 select{
    width: 100% !important;
    padding: 7px;
}

.complain-form label {
    display: block;
    text-transform: capitalize;
}

.complain-form input,
select {
    display: block;
    width: 60%;
    border: 1px solid #ccc;
}

.complain-form input:focus {
    outline: none;
    border: 1px solid #b88e8b;
}

.complain-form select:focus {
    outline: none;
    border: 1px solid #b88e8b;
}

.complain-form textarea {
    display: block;
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
}

.complain-form textarea:focus {
    outline: none;
    border: 1px solid #b88e8b;
}

.complain-form h4 {
    text-align: center;
    /* border-bottom: 1px solid var(--sc); */
    padding-bottom: 15px;
    margin-bottom: 15px;
    background: var(--pc);
    color: var(--wc);
    margin: 0;
    padding: 10px 0;
    margin-bottom: 11px;
    border-radius: 4px;
    -webkit-box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
    box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
}
/*BO ACCOUNT SECTION END*/





/*FOOTER*/
.footer-top{
    background: #ededed;
}
.footer-top i{
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid var(--pc);
    color: #000000;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
}
.footer-top span{
    display: inline-block;
    padding-left: 14px;
    color: #000;
    font-weight: 600;
}


/*FOOTER SECTION*/
footer {
    background: #2c2c2c;
    color: #CFCFCF;
}

.footer-box {
    margin-bottom: 10px;
}

.footer-head h5 {
    text-transform: uppercase;
    color: #CFCFCF;
}


.footer-content a {
    text-decoration: none;
    color: var(--wc);
    display: block;
    padding: 5px 0px;
    -webkit-transition: .3s;
    -webkit-transition: .2s;
    transition: .2s;
}

.footer-content a i {
    margin-right: 3px;
    -webkit-transition: .3s;
    -webkit-transition: .2s;
    transition: .2s;
    font-weight: 600;
    color: var(--wc);
}

.footer-content a:hover i {
    margin-right: 3px;
    margin-left: 3px;

}

/* .footer-content a:hover {
    color: #778FEA;
} */

.address-box {
    padding: 5px 0;
}

.address-icon i {
    font-size: 15px;
    margin-right: 8px;
    color : var(--wc);
}

.address-details span {
    text-transform: capitalize;
    color: var(--wc);
}

/*END FOOTER SECTION*/

/*COPYRIGHT SECTION*/
.copyright-section {
    background: #000000;
}

.copyright-content p {
    margin-bottom: 0;
    color: var(--wc);
    text-transform: capitalize;
    margin: 0;

}

.copyright-content p a {
    color: #dbebb4;
    font-weight: 600;
}
.copyright-content.right{
    text-align: right;
}

/*COPYRIGHT SECTION*/


/*FUND DEPOSIT*/


.fund-deposit-form {
    background: #FFFFFF;
    -webkit-box-shadow: 2px 4px 9px rgba(0, 0, 0, 0.25);
    box-shadow: 2px 4px 9px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 40px;
    max-width: 580px;
    margin-left: auto;

}

.fund-deposit-form form label {
    display: block;
    padding-bottom: 5px;
    font-weight: 600;
    text-transform: capitalize;

}

.fund-deposit-form form label span {
    color: red;
}

.deposit-rule ul li {
    font-size: 15px;
    -webkit-text-decoration: justify;
    text-decoration: justify;
    padding: 7px;
    list-style: none;
}

.deposit-rule ul li::before {
    content: url(../images/icons/tik.png);
    display: inline-block;
    margin-left: -1.8em;
    width: 1.8em;
}

.deposit-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.deposit-account .acc img {
    width: 150px;
    margin-right: 15px;

}
.deposit-account .acc h6{
    font-size: 14px;
}
.deposit-rule {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.easy-deposit {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.deposit-all-account {
    max-width: 700px;
    margin: 0 auto;
}

/*FUND DEPOSIT END*/


/*notic*/

/*
.mb-descript h4 {
    border-bottom: 1px solid var(--pc);
}
*/

/*
.slide-notic {
    border: 1px solid #ccc;
    position: relative;
    background: red;
}
*/

.marque {
    padding: 0;
    margin: 0;
}

.marque a {
    text-decoration: none;
    color: var(--pc);
    margin-right: 50px;
    font-size: 16px;
}

.marque a i {
    font-size: 10px;
    margin-right: 8px;
}

/*
.marque-fix {
    position: absolute;
    top: 0;
    left: 0;
    background: red;
    height: 100%;
}
*/

/*
.marque-fix span {
    padding: 10px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}
*/

/*
.marque {
    padding: 6px 0;
}
*/
/*

.right-notic .card-body {
    padding: 0 5px;
}
*/

.flex {
    display: flex;
}

.flex .icon i {
    margin-right: 10px;
    font-size: 10px;
}


.right-notic .card-body marquee {
    height: 200px;
}

.right-notic .flex {
    background: #fdf1e1;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 2px;
}

.right-notic .txt a {
    color: var(--txt-color);
    text-decoration: none;
}

.right-notic .flex:hover .txt a {
    color: var(--pc);
}

/*body-right end*/

/*BOX SECTION*/
.box-section {
    background: var(--wc);
}

.box-box .content {
    text-decoration: none;
}

.box-box {
    width: 33.33%;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
}

.box-box span {
    color: var(--sc);
}

.box-box img {
    max-width: 70px;
    margin-right: 5px;
    height: 50px;
}

.single-box {
    margin: 0px 5px;
    min-height: 65px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow:  rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 10px 0;
    border: 1px solid #cccccc82;
}

.single-box:hover {
    -webkit-transform: translateY(-5%);
    transform: translateY(-8%);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    background: #DDF1EE;
    color: var(--rc);
}
.single-box:hover a{
    color: var(--rc) !important;
}

/*END BOX SECTION*/


/*=============
BRANCH PAGE
===============*/
.branches-section { background: #f8fafc; }
.branch-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.08); border:1px solid #e5e7eb; transition:box-shadow .25s,transform .25s; }
.branch-card:hover { box-shadow:0 10px 36px rgba(30,58,95,.14); transform:translateY(-2px); }
.branch-info-panel { background:#fff; padding:30px 28px; height:100%; position:relative; border-right:1px solid #f0f0f0; display:flex; flex-direction:column; }
.branch-number { position:absolute; top:20px; right:22px; width:32px; height:32px; background:#eef2f7; color:#1e3a5f; border-radius:50%; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.branch-name { font-size:1.15rem; font-weight:800; color:#1e3a5f; margin-bottom:20px; padding-right:36px; line-height:1.35; }
.branch-detail-row { display:flex; gap:12px; margin-bottom:14px; align-items:flex-start; }
.branch-detail-icon { width:34px; height:34px; background:#eef2f7; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#1e3a5f; font-size:14px; flex-shrink:0; margin-top:1px; }
.branch-detail-body { display:flex; flex-direction:column; }
.branch-detail-label { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#9ca3af; margin-bottom:2px; }
.branch-detail-value { font-size:13.5px; color:#374151; font-weight:500; line-height:1.5; }
.branch-link { color:#1e3a5f!important; text-decoration:none; }
.branch-link:hover { text-decoration:underline; }
.branch-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; padding-top:18px; border-top:1px solid #f0f4f8; }
.branch-action-btn { display:inline-flex; align-items:center; padding:8px 16px; border-radius:8px; font-size:13px; font-weight:700; text-decoration:none; transition:all .2s; white-space:nowrap; }
.branch-call-btn { background:#1e3a5f; color:#fff!important; }
.branch-call-btn:hover { background:#162d4a; }
.branch-dir-btn { background:#eef2f7; color:#1e3a5f!important; border:1.5px solid #d0dae8; }
.branch-dir-btn:hover { background:#1e3a5f; color:#fff!important; border-color:#1e3a5f; }
.branch-map-wrap { height:100%; min-height:300px; }
.branch-map-wrap iframe { width:100%; height:100%; min-height:300px; display:block; }
.branch-no-map { height:100%; min-height:280px; background:#f8fafc; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#9ca3af; font-size:14px; }
.branch-no-map i { font-size:40px; margin-bottom:10px; }
/*=============
END BRANCH PAGE
===============*/

/*=============
COMPANY SECTION
===============*/
.section-head h4 {
    text-transform: capitalize;
    color: var(--tc);
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}
.section-head p{
    text-align: center;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}
.company-profile-box {
    -webkit-box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 40px;
    margin-bottom: 30px;
}

.company-profile-box p {
    text-align: justify;
}

.table-box table {
    width: 80%;
    margin: 0 auto;
}

.table-box table,
th,
td {
    border-collapse: collapse;
    border: 1px solid var(--pc);
    padding: 6px;
}

.table-box table td {
    text-align: left;
}

/*=============
END COMPANY SECTION
===============*/

/*=============
MENAGEMENT SECTION
===============*/
.menagement-main-box {
    max-width: 1000px;
    margin: 0 auto;
}

.menagement-box {
    max-width: 300px;
    border: 1px solid rgba(248, 152, 37, 0.25);
    margin: 0 auto;
    text-align: center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 15px 8px;
    margin-bottom: 30px;
    min-height: 320px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menagement-box:hover {
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    -webkit-transform: translateY(-2%);
    transform: translateY(-2%);
}

.menagement-box h5 {
    text-transform: capitalize;
}

.menagement-box span {
    color: var(--sc);
    font-weight: 600;
    font-size: 17px;
    display: block;
}

.menagement-box img {
    width: auto;
    height: 160px;
}

.menagement-details {
    margin-top: 10px;
}

.menagement-box a {
    display: inline-block;
    color: var(--wc);
    margin-top: 10px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 5px 10px;
    background: var(--fc)
}

.menagement-box a:hover {
    background: rgba(248, 152, 37, 0.81);
}

.menagement-box a i {
    margin-right: 7px;
}

.menagement-details P {
    margin-bottom: 0;
}

.d-menagement-photo {
    text-align: center;
}

.d-menagement-photo img {
    max-width: 150px;
    margin: 0 auto;
    border: 1px solid var(--fc);
    padding: 5px;
}

.d-menagement-head {
    text-align: center;
}

.d-menagement-head h5 {
    text-transform: capitalize;
    color: var(--sc);
}

.d-menagement-head h6 {
    color: var(--fc);
}

.modal-header .btn-close{
    font-weight: 800 !important;
    color: var(--pc) !Important;
}
.d-menagement-details p{
    text-align: justify;
}
/*=============
END MENAGEMENT SECTION
===============*/

/*================
    CONTACT PAGE
=================*/
.contact-section{
    background: #F5F5F5;
}
.contact-section-box {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    padding: 20px;
    -webkit-box-shadow: 0px 0px 8px -2px #8c8c8c;
    box-shadow: 0px 0px 8px -2px #8c8c8c;
    background: var(--wc);

}

 
.form-section form .form-control:focus {
    border: 1px solid var(--sc);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-title span {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--sc);
}

.form-title i {
    float: right;
    display: inline-block;
    font-size: 30px;
    color: var(--sc);
}

.contect-main {
    margin-top: -223px;
    max-width: 80%;
    margin-left: 10%;
    background: var(--wc);
    -webkit-box-shadow: 0px 0px 0px 0px #ccc;
    box-shadow: 0px 0px 0px 0px #ccc;
    -webkit-box-shadow: 0px 0px 7px 1px #919191;
    box-shadow: 0px 0px 7px 1px #919191;
    border-radius: 5px;
    margin-bottom: 50px;

}

.contact-info {
    padding: 0 10px;

}

.contact-info h5 {
    color: var(--sc);
}

.contact-btn a {
    float: right;
}

.page-title {
    z-index: 2;
}

.info-box i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: var(--wc);
    background: var(--pc);
}

.slider-footer {
    background: rgba(114, 94, 167, 0.13);
}

.contact-info-box {
    padding: 10px;
    -webkit-box-shadow: 0px 0px 8px -2px #8c8c8c;
    box-shadow: 0px 0px 8px -2px #8c8c8c;
    background: var(--wc);
    margin-bottom: 15px;
}

.social-contact-icons a i{
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    color: var(--wc);
    background: var(--pc);
    border: 1px solid var(--pc);
    margin-right: 5px;
    transition: .3s;
}
.social-contact-icons a i:hover{
    background: none;
    color: var(--pc);
}

.google-maps h4 {
    color: var(--sc);
    text-transform: capitalize;
    padding: 10px;
}

/*================
END CONTACT PAGE
=================*/

/*================
CARRER SECTION
=================*/
.carrer-box {
    max-width: 1000px;
    margin: 0 auto;
}

.carrer-form {
    -webkit-box-shadow: 0px 0px 8px -2px #8c8c8c;
    box-shadow: 0px 0px 8px -2px #8c8c8c;
    background: var(--wc);
    padding: 20px;
}

.form-control.custom-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--sc);
}

.carrer-btn {
    text-align: right;
}

.carrer-btn .custom-btn i {
    margin-right: 5px;
}

.carrer-form .input-group span {
    color: var(--pc);
}

.carrer-form label {
    color: #484848;
}

.job-here h5 {
    color: var(--sc);
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sc);
}

.job-single p {
    margin-bottom: 0;
    text-transform: capitalize;
}
.apply_post{
    width: 87%;
    padding: 0 8px;
}

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

/*================
NOTIC SECTION
=================*/
.notic-table table {
    margin: 0 auto;
    width: 1000px;
}

.notic-table,
notic-box {
    overflow-x: auto;
}

.notic-table .table tr .date {
    width: 100px;
}

.notic-table table td a {
    color: var(--sc);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
}

.notic-table table th {
    text-transform: capitalize;
    text-align: center;
}

.notic-table .table tr .download {
    width: 200px;
}

.ipo-details {
    max-width: 1000px;
    margin: 0 auto;
}

.ipo-details .ipo-icon i {
    color: var(--pc);
    font-size: 18px;
    margin-right: 10px;
}

.ipo-details .ipo-txt p {
    margin-bottom: 10px;
}

/*================
END NOTIC SECTION
=================*/


/*================
FEES SECTION
=================*/
.fee-box {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 15px;
}

.fee-sub-head h6 i {
    font-size: 15px;
    color: var(--sc);
    margin-right: 10px;
}

.fees-txt {
    padding: 0 30px;
}

.fees-txt .fees-icon i {
    margin-right: 10px;
    color: var(--sc);
}

.fees-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.fees-table table th {
    text-align: center;
    text-transform: capitalize;
}

/*================
END FEES SECTION
=================*/

/*================
BALANCE SECTION
=================*/
.balance-box {
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    padding: 30px;
    background: var(--wc);
    border: 1px solid rgba(248, 152, 37, 0.26);
}
.no-border{
    border: none !important;
}
.no-border tr th{
    border: none;
}
.no-border tr td{
    border: none;
}
.blance-content table,th,td{
    border: 1px solid #beb9b9;
    border-collapse: collapse;
}
.balance-content table{
    margin: 0 auto;
}


.balance-content table th{
    text-transform: capitalize;
}
.balance-content table td{
    text-transform: capitalize;
    color: var(--tc);
    text-align: left;
    font-weight: 600;
}

.withdraw-btn {
    text-align: center;
}
.balance-tk{
    color: red!Important;
    font-weight: 600;
}
.withdraw-form {
    display: block;
    max-width: 333px;
    margin: 0 auto;
}
.withdraw-form .input-group span{
    color: var(--sc);
    text-transform: capitalize;
    margin: 0 auto;
}
.withdraw-form .form-control{
    width: 50%;
}
.withdraw-form  label{
    display: block;
    color: var(--sc);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.form-fontrol.custom-control{
    width: 100% !important;
}
.posted{
    color: green;
    font-weight: 600;
}
.cancel{
    color: red;
    font-weight: 600;
}
.panding{
    color: var(--fc);
    font-weight: 600;
}
.email{
    text-transform: inherit !Important;
}
.deposit-input{
    width: 58%;
    border: 1px solid #ccc;

}
.deposit-input:focus{
    outline: none;
}
.file-input{
    width: 100% !important;
}
.withdraw-input{
    width: 46% !Important;
}
.deposit_type{
    width: 61%;
}
.deposit_slip{
    width: 100% !important;
}
/*================
END BALANCE SECTION
=================*/

/*================
LOGIN SECTION
=================*/
.login-box{
    max-width: 450px;
    margin: 0 auto;
    padding: 25px 0;
    background: var(--wc);
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.login-head h3{
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin: 0;
}
.login-form{
    padding: 0 30px;
}
.login-form form input{
   color: #BFACE2;
}
.input-group-text.input-icon{
    background: none;
    border: none;
    border-bottom: 1px solid var(--sc);
    border-radius: 0;
}
.form-control.login-input{
    border: none;
    border-bottom: 1px solid var(--sc);
    border-radius: 0;
}
.form-control.login-input:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.login-form i {
    color: #655DBB;
}
.login-forgot a{
    color: var(--sc);
}
.create-one{
    border-top: 1px solid #ccc;
}
.create-one span{
    color: #7e7c7c;
}
.create-one span a{
    color: var(--sc);
}
.accept span{
    font-size: 14px;
}
.accept span a{
    color: var(--sc);
}
/*================
END LOGIN SECTION
=================*/





/*=====================
    USER DASHBOARD
======================*/

/* ── Sidebar ── */
.client-sidebar {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eaf0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.sidebar-profile {
    background: linear-gradient(135deg, #146C94 0%, #1a8ab5 100%);
    padding: 24px 16px 20px;
    text-align: center;
}

.sidebar-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.25);
    border: 3px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.sidebar-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.sidebar-role-badge {
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    padding: 8px 0;
}

.sidebar-group-label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px 4px;
    margin: 0;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #444;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .2s, color .2s, padding-left .2s;
    border-left: 3px solid transparent;
}

.sidebar-nav ul li a i {
    width: 16px;
    text-align: center;
    color: #888;
    transition: color .2s;
    font-size: 14px;
}

.sidebar-nav ul li a:hover {
    background: #f0f7fb;
    color: #146C94;
    padding-left: 20px;
    border-left-color: #146C94;
}

.sidebar-nav ul li a:hover i {
    color: #146C94;
}

.sidebar-nav ul li a.sidebar-active {
    background: #e8f4fb;
    color: #146C94;
    font-weight: 700;
    border-left-color: #146C94;
}

.sidebar-nav ul li a.sidebar-active i {
    color: #146C94;
}

.sidebar-nav ul li a.sidebar-logout {
    color: #dc3545;
}

.sidebar-nav ul li a.sidebar-logout i {
    color: #dc3545;
}

.sidebar-nav ul li a.sidebar-logout:hover {
    background: #fff5f5;
    color: #c82333;
    border-left-color: #dc3545;
}

/* ── Welcome Banner ── */
.dashboard-welcome {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eaf0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.dashboard-welcome h5 {
    color: #222;
    font-size: 16px;
}

/* ── Stat Cards ── */
.dash-stat-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eaf0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}

.dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.dash-stat-blue .dash-stat-icon  { background: #e8f0fe; color: #3E54AC; }
.dash-stat-green .dash-stat-icon { background: #e6f9f0; color: #198754; }
.dash-stat-orange .dash-stat-icon{ background: #fff3e0; color: #f89825; }

.dash-stat-info span {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.dash-stat-info strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Quick Action Buttons ── */
.dash-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    padding: 14px 8px;
    text-decoration: none;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    transition: background .2s, color .2s, transform .2s;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.dash-quick-btn i {
    font-size: 22px;
    color: #146C94;
}

.dash-quick-btn:hover {
    background: #146C94;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(20,108,148,.25);
}

.dash-quick-btn:hover i {
    color: #fff;
}

/* ── Content Card ── */
.dash-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eaf0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.dash-card-header {
    background: #146C94;
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
}

.dash-card-body {
    padding: 0;
}

/* ── Dashboard Table ── */
.dash-table thead th {
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #555;
    border-bottom: 2px solid #e8eaf0;
    padding: 10px 14px;
}

.dash-table tbody td {
    font-size: 13px;
    padding: 10px 14px;
    vertical-align: middle;
    color: #333;
    border-bottom: 1px solid #f0f2f5;
}

.dash-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-table tbody tr:hover {
    background: #f7fbfd;
}

/* ── Empty State ── */
.dash-empty {
    text-align: center;
    padding: 36px 20px;
    color: #aaa;
}

.dash-empty i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.dash-empty p {
    margin: 0;
    font-size: 14px;
}


/*================
GALLERY
=================*/

.gallery img{
    width: 100%;
    height: 100%;
}

/*================
MODIFY
=================*/
.withdraw-form.custom label{
    display: inline-block;
}
.withdraw-form.custom label i{
    font-size: 10px;
    color: red;
}
.table-first{
    width: 145px;
}
.modify-table tr td input{
    padding: 5px;
    border: 1px solid var(--tc);
    width: 100%;
}
.modify-table tr td label{
    color: #666;
    font-weight: 600;
}
.modify-table tr td input:focus{
    outline: none;
    border: 1px solid #ccc;
}
.modify-table tr td select{
    padding: 5px;
    border: 1px solid var(--tc);
    width: 100%;
}
.modify-table tr td select:focus{
    outline: none;
    border: 1px solid #ccc;
}
.balance-box.custom{
    padding: 20px 40px;
}
.withdraw-form.custom{
    max-width: 100%;
}
.modify-table tr td textarea{
    padding: 5px;
    border: 1px solid var(--tc);
    width: 100%;
}
.modify-table tr td label{
    color: #666;
    font-weight: 600;
}
.modify-table tr td textarea:focus{
    outline: none;
    border: 1px solid #ccc;
}
.bordered{
    border: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background: #ddd;
}


.attachment_input{
    display: none;
}

.add_att_open{
    font-weight: 14px;
    cursor: pointer;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 3px;
    background: var(--fc);
    color: var(--pc);
    position: relative;
}
.attachment_message{
    position: absolute;
    top: -100px;
    left: 0;
    background: #ccc;
    color: red;
    width: 200px;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}
.mouse_enter{
    opacity: 1;
    visibility: visible;
}
/*================
END MODIFY
=================*/

/*================
mobile input
=================*/
.mobile-input-box{

    background: var(--wc);
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;

}
.form-left{
    width: 220px;
}
.form-left label{
    padding: 8px 0;
}
.form-right input{
    width: 100%;
}

.mobile-input-box label{
    text-transform: capitalize;
    font-weight: 600;
}
.mobile-input-box input{
    border: 1px solid #ccc;
    padding: 6px;
}
.mobile-input-box input:focus{
    outline: none;
    border: 1px solid rgba(0, 150, 157, 0.29);

}
.mobile-input-box textarea{
    border: 1px solid #ccc;
    padding: 6px;
}
.mobile-input-box textarea:focus{
    outline: none;
    border: 1px solid rgba(0, 150, 157, 0.29);

}
.mobile-input-box select{
    border: 1px solid #ccc;
    padding: 6px;
    width: 100%;
}
.mobile-input-box select:focus{
    outline: none;
    border: 1px solid rgba(0, 150, 157, 0.29);

}
.inline-class{
    display: inline !Important;
    width: inherit !Important;
}
.account-type span{
    float: left;
    width: 25%;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.account-type span input{
    width: 15px !important;
    margin-left: 8px;
}
.foreign{
    width: 50% !important;
}
.application span{
    width: 33.33%!important;
}

/*================
end mobile input
=================*/
/*================
bo input
=================*/
.bo-input{
    max-width: 1110px !important;
}
.bo-border{
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    text-align: center;
    color: var(--sc);
    padding-bottom: 10px;
}
.trams span{
    text-transform: capitalize;
}
.trams span a{
    color: var(--sc);
}
.account_requre h6{
    color: var(--sc);
}
.account_requre ul li{
    list-style: none;
    margin-bottom: 5px;
}
.account_requre ul li i{
    color: var(--sc);
    margin-right: 5px;
}

/*================
bo input
=================*/




/*=====================
	blog page
======================*/
.breadcrumb li a {
    color: var(--tc-red);
    text-decoration: none;
}

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

.p-blog-section {
    background: #ECF2FF;
}

.section-box {
    background: var(--wc);
    border: var(--border);
    -webkit-box-shadow: var(--shadow-section);
    box-shadow: var(--shadow-section);
}

.p-blog-box .blog-img img {
    width: 100%;
    height: 130px;
}

.p-blog-box .card-body a {
    font-weight: 600;
    text-transform: inherit;
    line-height: 24px;
    font-size: 15px;
    display: block;
    color: var(--tc-black);
    text-decoration: none;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}



.p-blog-box {
    -webkit-transition: .4s;
    transition: .4s;
    margin-bottom: 30px;
}

.p-blog-box:hover {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
}

.custom-card {
    padding: 5px;
}

.p-blog-box .card span {
    font-size: 12px;
    padding-bottom: 3px;
    display: block;
    color: var(--rc);
    padding-top: 6px;
}

.p-blog-box .card span i {
    padding-right: 5px;
}
.p-blog-box .card span i:last-child{
    margin-left: 12px;
}
.p-blog-box .card{
    padding: 8px;
}
.breadcrumb {
    background: var(--wc);
    padding: 0;
    margin: 0;
}

.breadcrumb {
    padding: 20px 0 !important;
    margin: 0;
}

/*=====================
	blog page end
======================*/

/*=====================
	blog details page
======================*/
.blog-main {
    padding-right: 20px;
}

.latest-head {
    background: var(--sc);

}

.latest-head h4 {
    padding: 10px 8px;
    margin: 0;
    border-radius: 3px;
    color: var(--wc);
    text-transform: capitalize;
}

.p-letest-post .media {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.blog-main .blog-title img {
    width: 95%;
    max-height : 350px;
}

.blog-main .blog-title h6 {
    font-size: 12px;
    padding: 15px 0;
    color: var(--tc-red);
}

.p-letest-post .media-body span {
    color: var(--tc-red);
    font-size: 12px;
}

.p-letest-post .media img {
    width: 50px;
    margin-right: 10px;
}

.blog-details-txt h5 {
    color: var(--pc);
}

.txt-img {
    padding: 30px;
}

.txt-img img {
    width: 80%;
}

.blog-details-txt p {
    line-height: 30px;
}

.blog-details-txt h4 {
    padding-top: 30px;
}

.blog-title a {
    background: var(--sc);
    color: var(--wc);
    padding: 8px 10px;
    border-radius: 2px;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}
.blog-title h4{
    color: var(--sc);
}
.category a {
    color: var(--sc);
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.category a:hover {
    color: var(--tc-red);

}

.category a i {
    color: var(--tc);
    padding-right: 10px;
}

/*custom card*/
.custom-card {
    border-bottom: 1px solid #ccc;
}

.custom-card .image img {
    width: 100%;
}

.custom-card-title {
    margin-left: 10px;
}

.custom-card-title h6 {
    margin: 0;
}

.custom-card-title h6 a {
    color: var(--tc-black);
    text-decoration: none;
}

.custom-card-title span {
    font-size: 12px;
    color: #777;
}
.section-head h5{
    text-align: center;
    text-transform: capitalize;

}
.bd-date-time{
    font-size: 12px;
    color: #777;
    margin-bottom : 10px;
    display : inline-block;
}

/*=====================
	blog details page end
======================*/
/*=====================
	extra css
======================*/
.logo-padding.col-7{
    padding-right: 0px !important;
}


/*===================
SELL WITH US PAGE
===================*/
/*custom font*/
.join-section {
    background: #EEEEEE;
}

.join-form-box {
    max-width: 1010px;
    margin: 0 auto;
    padding: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
    border-radius: 10px;
}
.join-form-box label span{
    color: red;
    margin-right: 5px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}



button.next-btn,
button.previous-btn,
button.submit-btn {
    float: right;
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    outline: none;
    background-color: #62E1BA;
    color: var(--wc);
    font-family: "Montserrat";
    font-size: 18px;
    cursor: pointer;
    /* text-align: right; */
}

button.previous-btn {
    float: left;
}

button.submit-btn {
    background-color: var(--sc-main);
}

.seller-step-form input,
textarea {
    display: block;
    width: 100%;
    padding: 8px;
    border: 1px solid var(--thc);
    margin-bottom: 0px;

}

.seller-step-form input[type=radio] {
    display: inline-block;
    float: right;
    width: 10%;
    margin-top: 4px;
    cursor: pointer;
    font-size: 30px;
}

.seller-step-form input[type=checkbox] {
    display: inline-block;
    width: 10px;
    margin-top: 4px;
    cursor: pointer;
    font-size: 30px;
}

.radio-single {
    margin-bottom: 20px;
}

.radio-single label {
    width: 90%;
    display: inline-block;
    cursor: pointer;
}

.p-btn {
    float: left;
    width: 50%;
}

.n-btn {
    float: left;
    width: 50%;
}


.seller-step-form h5 {
        border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    text-align: left;
    color: #655DBB;
    padding-bottom: 10px;
    font-size: 25px;
}

.seller-step-form label img {
    width: 20px;
}

.reg-certificate {
    font-weight: 700;
    color: var(--hc);
    margin-top: 14px;
}

.icon-box {
    text-align: center;
    margin-bottom: 20px;
    background: #E2E5F1;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 45px;
}

.icon-box span {
    padding: 10px 7px;
    display: inline-block;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    height: 100%;
    font-weight: 600;
}

.icon-box span i {
    font-size: 14px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border: 1px solid var(--sc-main);
    border-radius: 50%;
    background: var(--wc);
    margin-right: 5px;
}

.active-sell {
    background: #62E1BA;
}

.seller-step-form label{
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 5px;
}
.seller-step-form label span{
    color: red;
}
.seller-step-form input{
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-weight: 500;
}
.seller-step-form input:focus{
    outline: none;
    border: 1px solid #BFACE2;

}
.seller-step-form input::placeholder{
    font-weight: 500;
    color:  #cccccc;
}
.seller-step-form textarea{
    border: 1px solid #ccc;
    padding: 6px;
    font-weight: 500;
    height: 100px;
}
.seller-step-form textarea:focus{
    outline: none;
    border: 1px solid #BFACE2;

}
.seller-step-form select{
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: 500;
}
.seller-step-form select:focus{
    outline: none;
    border: 1px solid #BFACE2;

}
.create-bo-acc-btn button{
    padding: 14px 30px;
    font-weight: 600;
    color: var(--wc);
    background: var(--pc);
    border-radius: 5px;
    outline: none;
    border: none;
    transition: .2s;
}
.create-bo-acc-btn button:hover{
    background: #655DBB;
}
.make-payment-box ul{
    padding: 0;
    margin: 0;
    padding-left: 30px;
    font-weight: 600;
}
.make-payment-box li{
    font-size: 16px;
    list-style:circle;
}
.make-payment-box li span{
    font-size: 12px;
}
.make-payment-box h4{
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 5px;
}
.make-payment-box h4 span{
    font-size: 14px;
}
.make-payment-box h6{
    font-size: 16px;
    
}

/*===================
END SELL WITH US PAGE
===================*/


.mobile-input-box {
    -webkit-box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    background: var(--wc);
    border: 1px solid rgba(248, 152, 37, 0.26);
    background: var(--wc);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.slider-section { position: relative; overflow: hidden; }
.slider-img {
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
}
.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,20,50,0.70) 0%, rgba(10,20,50,0.40) 55%, rgba(10,20,50,0.10) 100%);
    z-index: 1;
}
.carousel-caption.custom {
    position: absolute;
    left: 6%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    padding: 0;
    width: 58%;
    max-width: 640px;
    z-index: 2;
}
.slider-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
.carousel-caption.custom h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}
.carousel-caption.custom h2 {
    color: rgba(255,255,255,0.92);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.carousel-caption.custom h6 {
    color: rgba(255,255,255,0.80);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 26px;
}
.slider-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.slider-btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s;
    white-space: nowrap;
}
.slider-btn-primary {
    background: #fff;
    color: #1e3a5f !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.slider-btn-primary:hover { background: #f0f4ff; transform: translateY(-2px); }
.slider-btn-outline {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}
.slider-btn-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Carousel controls */
.slider-section .carousel-control-next-icon,
.slider-section .carousel-control-prev-icon { background-image: none; }
.carousel-control-next-icon.custom,
.carousel-control-prev-icon.custom { position: relative; }
.carousel-control-next-icon.custom i,
.carousel-control-prev-icon.custom i {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 22px;
    height: 44px; width: 44px;
    line-height: 44px;
    text-align: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    opacity: 0;
    transition: opacity 0.3s;
}
.slider-section:hover .carousel-control-next-icon.custom i,
.slider-section:hover .carousel-control-prev-icon.custom i { opacity: 1; }
.slider-section .carousel-control-next,
.slider-section .carousel-control-prev { width: 7%; }
.carousel-indicators [data-bs-target] {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
}
.carousel-indicators .active {
    background: #fff;
    transform: scale(1.3);
}

/* =============================================
   SHARED SECTION HEAD
   ============================================= */
.section-head { }
.section-badge {
    display: inline-block;
    background: #eef2f7;
    color: #1e3a5f;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid #d0dae8;
}
.section-head-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}
.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a5f, #2563ab);
    border-radius: 3px;
    margin-top: 10px;
}

/* =============================================
   NOTICE SECTION
   ============================================= */
.notice-section { background: #f8fafc; }
.notice-slider-main { position: relative; padding: 0 50px; }
.slick-controls { position: static; margin-bottom: 16px; display: flex; justify-content: flex-end; gap: 8px; }
.next, .prev {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px; width: 38px;
    background: #fff;
    color: #1e3a5f;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border: 1.5px solid #d0dae8;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    top: auto; left: auto; right: auto;
    transform: none;
    z-index: 1;
}
.next:hover, .prev:hover { background: #1e3a5f; color: #fff; border-color: #1e3a5f; }
.slick-arrow.slick-hidden { display: block; }

.notice-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 0 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.notice-card:hover { box-shadow: 0 6px 24px rgba(30,58,95,0.12); }
.notice-card-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1e3a5f;
    margin-top: 2px;
}
.notice-card-body { flex: 1; min-width: 0; }
.notice-card-body h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
    line-height: 1.4;
}
.notice-card-body p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 14px;
}
.notice-read-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
    border-bottom: 2px solid #1e3a5f;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.notice-read-btn:hover { opacity: 0.72; color: #1e3a5f; }

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section { background: #fff; }
.news-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.22s, box-shadow 0.22s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(30,58,95,0.13); }
.news-card-img { overflow: hidden; aspect-ratio: 16/9; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 18px 20px; flex: 1; }
.news-card-title { font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 10px; line-height: 1.45; }
.news-card-text { font-size: 13.5px; color: #4b5563; line-height: 1.65; }

/* =============================================
   SERVICE SECTION (Redesigned)
   ============================================= */
.service-section { background: #f8fafc; }
.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 22px 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(30,58,95,0.14); border-color: #1e3a5f; }
.service-card-icon {
    width: 72px; height: 72px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
    transition: background 0.2s;
}
.service-card:hover .service-card-icon { background: #dce8f8; }
.service-card-icon img { width: 42px; height: 42px; object-fit: contain; }
.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}
.service-card-title a { color: inherit; text-decoration: none; }
.service-card-title a:hover { color: #2563ab; }
.service-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 14px;
}
.service-card-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
    border-bottom: 1.5px solid #1e3a5f;
    padding-bottom: 1px;
    margin-top: auto;
    display: inline-block;
    transition: opacity 0.2s;
}
.service-card-link:hover { opacity: 0.7; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { background: #1e3a5f; }
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 10px;
}
.trust-bar-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.trust-bar-text strong {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.logo  img { top: 0 !important; }
header img { left: 0; }
.dsetem1 { background:#ffffff !important; }
.dsetem1 span { color: #000000 !important; }
.dsetem1 code { color: #BA2B20 !important; }
.auth-section { background: #BFACE2; }

/* =============================================
   PAGE HERO (shared across all pages)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563ab 100%);
    padding: 32px 0 28px;
    color: #fff;
}
.page-breadcrumb { margin-bottom: 10px; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; }
.page-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.55); font-size: 13px; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero-title { font-size: 1.75rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.page-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.80); margin: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eef2f7;
}
.contact-submit-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #1e3a5f, #2563ab);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}
.contact-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.contact-info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 40px; height: 40px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #1e3a5f; font-size: 16px; flex-shrink: 0;
}
.ci-body { display: flex; flex-direction: column; }
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #9ca3af; letter-spacing: 0.5px; }
.ci-value { font-size: 14px; color: #374151; font-weight: 500; margin-top: 2px; }
.ci-link { color: #1e3a5f !important; text-decoration: none; }
.ci-link:hover { text-decoration: underline; }
.contact-social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.contact-social-btn:hover { opacity: 0.85; transform: scale(1.1); color: #fff; }
.contact-social-btn.facebook { background: #1877f2; }
.contact-map-wrap iframe { display: block; }

/* =============================================
   FEES PAGE
   ============================================= */
.fees-section { background: #f8fafc; }
.fees-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.fees-card-header {
    background: linear-gradient(90deg, #1e3a5f, #2563ab);
    color: #fff;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
}
.fees-table { margin: 0; }
.fees-table thead th {
    background: #eef2f7;
    color: #1e3a5f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border: none;
}
.fees-table tbody td {
    padding: 13px 20px;
    font-size: 14px;
    border-color: #f3f4f6;
    vertical-align: middle;
}
.fee-num { color: #9ca3af; font-size: 12px; width: 40px; }
.fee-name { font-weight: 600; color: #1f2937; }
.fee-amount { color: #1e3a5f; font-weight: 700; }
.fees-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
}
.fees-note a { color: #1e3a5f; }

/* =============================================
   NOTICES LIST PAGE
   ============================================= */
.notices-section { background: #f8fafc; }
.notice-list-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 14px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.notice-list-item:hover { box-shadow: 0 4px 18px rgba(30,58,95,0.10); border-color: #1e3a5f; }
.notice-list-icon {
    width: 44px; height: 44px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #1e3a5f; font-size: 17px; flex-shrink: 0;
}
.notice-list-body { flex: 1; min-width: 0; }
.notice-list-title { font-size: 15px; font-weight: 700; color: #1f2937; margin: 0; line-height: 1.4; }
.notice-list-date { font-size: 12px; color: #9ca3af; white-space: nowrap; font-weight: 600; }
.notice-action-btn {
    display: inline-flex; align-items: center;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12.5px; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.notice-view-btn { background: #eef2f7; color: #1e3a5f; }
.notice-view-btn:hover { background: #1e3a5f; color: #fff; }
.notice-dl-btn { background: #f0fdf4; color: #15803d; margin-left: 8px; }
.notice-dl-btn:hover { background: #15803d; color: #fff; }
.notices-empty {
    text-align: center; padding: 60px 20px; color: #6b7280;
}
.notices-empty i { font-size: 48px; color: #d1d5db; display: block; margin-bottom: 16px; }
.notices-empty h5 { color: #374151; font-size: 18px; margin-bottom: 8px; }
.notices-empty p { font-size: 14px; }
.notices-empty a { color: #1e3a5f; }

/* =============================================
   NOTICE VIEW PAGE
   ============================================= */
.notice-view-section { background: #f8fafc; }
.notice-view-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}
.notice-view-header {
    padding: 28px 30px 22px;
    border-bottom: 2px solid #eef2f7;
    background: #f8fafc;
}
.notice-view-title { font-size: 1.3rem; font-weight: 700; color: #1e3a5f; margin: 0 0 8px; }
.notice-view-date { font-size: 13px; color: #9ca3af; font-weight: 600; }
.notice-view-body { padding: 24px 30px; font-size: 15px; line-height: 1.75; color: #374151; }
.notice-view-attachment { padding: 0 30px 24px; }
.notice-pdf-wrap { border-radius: 8px; overflow: hidden; border: 1px solid #e5e7eb; }
.notice-view-footer {
    padding: 18px 30px;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    display: flex; gap: 12px; flex-wrap: wrap;
}
.notice-back-btn {
    display: inline-flex; align-items: center;
    padding: 9px 18px;
    border-radius: 8px;
    background: #eef2f7; color: #1e3a5f;
    font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all 0.2s;
}
.notice-back-btn:hover { background: #1e3a5f; color: #fff; }
.notice-dl-btn-lg {
    display: inline-flex; align-items: center;
    padding: 9px 18px;
    border-radius: 8px;
    background: #f0fdf4; color: #15803d;
    font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all 0.2s;
}
.notice-dl-btn-lg:hover { background: #15803d; color: #fff; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-section { background: #f8fafc; }
.faq-lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    color: #fff; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
    white-space: nowrap;
}
.faq-lang-btn:hover { background: rgba(255,255,255,0.28); color: #fff; }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.faq-btn {
    background: #fff !important;
    color: #1e3a5f !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 16px 20px !important;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    background: #eef2f7 !important;
    color: #1e3a5f !important;
    box-shadow: none !important;
}
.faq-btn::after {
    filter: invert(20%) sepia(60%) saturate(600%) hue-rotate(190deg);
}
.faq-q-icon { color: #1e3a5f; font-size: 15px; flex-shrink: 0; }
.faq-body { font-size: 14px; line-height: 1.75; color: #374151; padding: 18px 22px; background: #fff; }
.faq-cta-box {
    display: flex; align-items: center; gap: 18px;
    background: #1e3a5f; border-radius: 14px;
    padding: 24px 28px; flex-wrap: wrap;
}
.faq-cta-icon { font-size: 36px; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.faq-cta-box h5 { color: #fff; font-size: 16px; margin: 0 0 4px; }
.faq-cta-box p { color: rgba(255,255,255,0.75) !important; }
.faq-cta-btn {
    display: inline-flex; align-items: center;
    padding: 10px 22px;
    background: #fff; color: #1e3a5f !important;
    border-radius: 8px; font-weight: 700; font-size: 13.5px;
    text-decoration: none; transition: opacity 0.2s; margin-left: auto;
}
.faq-cta-btn:hover { opacity: 0.88; }

/* =============================================
   ABOUT / COMPANY PROFILE PAGE
   ============================================= */
.about-section { background: #f8fafc; }
.about-para { font-size: 15px; line-height: 1.8; color: #4b5563; margin-bottom: 14px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat-card {
    background: #fff; border-radius: 14px;
    padding: 22px 16px; text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.about-stat-icon { font-size: 24px; color: #1e3a5f; margin-bottom: 8px; }
.about-stat-value { font-size: 22px; font-weight: 800; color: #1e3a5f; }
.about-stat-label { font-size: 12px; color: #6b7280; font-weight: 600; margin-top: 4px; }
.about-feature-card {
    background: #fff; border-radius: 14px;
    padding: 24px 20px; height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,58,95,0.12); }
.af-icon { font-size: 28px; color: #1e3a5f; margin-bottom: 14px; }
.about-feature-card h5 { font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 8px; }
.about-feature-card p { font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section { background: #f8fafc; }
.gallery-item {
    display: block; position: relative; overflow: hidden;
    border-radius: 10px; aspect-ratio: 1;
    text-decoration: none; cursor: pointer;
}
.gallery-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.07); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(30,58,95,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s;
    color: #fff; font-size: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-modal-content {
    background: #000; border: none; border-radius: 12px; overflow: hidden; position: relative;
}
.gallery-modal-close {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.15); border: none;
    color: #fff; width: 36px; height: 36px; border-radius: 50%;
    font-size: 16px; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.gallery-modal-close:hover { background: rgba(255,255,255,0.3); }
.gallery-modal-img { width: 100%; max-height: 80vh; object-fit: contain; display: block; }
.gallery-modal-caption {
    color: rgba(255,255,255,0.7); font-size: 13px;
    text-align: center; padding: 10px 16px; margin: 0;
}

/*CARRER SECTION*/
.carrer-section{
    max-width: 950px;
    margin: 0 auto;
}
.carrer-box-tex{
    padding-left: 40px;
}
.carrer-box-tex.border-left{
    border-left: 1px solid #dedede;
}
.carrer-box-tex.border-none{
    border-left: none;
}
.carrer-section h3{
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    color: #0f0f0f;
}
.carrer-section h3 span{
    color: var(--pc);
}
.carrer-section h6{
    color: #959595;
    font-size: 22px;
    font-weight: 400;
}
.carrer-section p{
    color: #606060;
    font-size: 18px;
    font-weight: 400;
}
.option-section h4{
     font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    color: #0f0f0f;
    text-align: center;
}
.option-box{
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
}
.option-box h5{
     color: #0f0f0f;
    font-size: 22px;
    margin: 0;
}
.option-box p{
    color: #606060;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}
.option-box a i{
    padding-left: 5px;
}
.option-box a {
    font-size: 14px;
    font-weight: 500px;
    color: var(--wc);
    text-transform: uppercase;
    border: 2px solid #655DBB;
    background: #655DBB;
    padding: 8px 20px;
    transition: .3s;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.carrer-box-tex h5{
    font-weight: 700;
}
.carrer-box-tex a{
    color: #959595;
    font-weight: 600;
    transition: .2s;
}
.carrer-box-tex a:hover{
    color: var(--tc);
}
/*CARRER SECTION END*/
