﻿body{
    overflow-x:hidden;
}
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Horizontal, Vertical, Blur, Color */
}
/* Info Bar Sticky */
.info-bar {
    position: sticky;
    top: 0; /* Make sure it sticks to the top */
    z-index: 1020; /* Ensure it stays on top of other elements */
    background: linear-gradient(233.19deg, #8EC850 -256.88%, #428DCB -167.3%, #2AB998 -81.23%, #C2579B -2.2%, #EC7026 80.36%);
    color: white; /* Light text color */
    padding: 10px 0; 
}

    .info-bar a {
        color: white;
        text-decoration: none;
    }

        .info-bar a:hover {
            text-decoration: underline;
        }

/* Navbar Sticky */
.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #f8f9fa;
}



.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    font-weight: bold; /* Make the text bold */
}

.dropdown-menu {
    padding: 10px;
}

.dropdown-divider {
    border-top: 1px solid #ddd;
    margin: 5px 0;
}

/* Hover to open the dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-item:hover {
    background-color: #578E7E;
    color: white;
}

.nav-item.dropdown:hover .dropdown-menu {
    background-color: #f8f9fa;
}

.navbar-nav .nav-link.active {
    color: #ff6600;
   
    
}

/* Ensure dropdown menus stay within the viewport */


.navbar-nav .nav-item.dropdown {
    position: relative;
}


    .navbar-nav .nav-item.dropdown .dropdown-menu {
        right: 0;
    }


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.navbar-nav .nav-item {
    padding-right: 20px;
}



.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    font-weight: bold;
}

.nav-item.dropdown:hover .dropdown-menu {
    background-color: #f8f9fa;
}

.navbar-nav .nav-link.active {
    color: #ff6600;
}

img,
picture {
    max-width: 100%;
    display: block;
}

.u-wrapper {
    max-width: 100%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.c-carousel {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.c-carousel__wrapper.swiper {
    margin: 0 48px;
    position: static;
}

.c-carousel__inner-wrapper.swiper-wrapper {
    display: flex;
    align-items: center;
}

.c-carousel img {
    margin: 0 auto;
}

.c-carousel__controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-carousel__button--next,
.c-carousel__button--prev {
    cursor: pointer;
}

    .c-carousel__button--prev.swiper-button-disabled,
    .c-carousel__button--next.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none;
    }

.c-carousel__item.swiper-slide {
    max-width: 300px;
    width: auto;
    flex-shrink: 0;
}


.nav-link.active {
    background: linear-gradient(233.19deg,#8EC850 -256.88%,#428DCB -167.3%,#2AB998 -81.23%,#C2579B -2.2%,#EC7026 24.36%) !important;
    /*background-color: cornflowerblue;*/ /* Change to your desired active background color */
    color: white !important; /* Change the text color for active tab */
    border-color: cornflowerblue; /* Optional: match the border color */
    font-weight:bold;
}

.nav-tabs .nav-link {
    background-color: #e1effd;
    color: #004d40;
    border: solid white 1px;
}

/* Hover effect for nav-link */
.nav-link:hover {
    color: #8a3503; /* Change text color on hover */
}

.tabcontentArea {
    background-color: #808080;
}

.single-list-topics-content a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the color of the parent element */
    background-color:aqua;
}

    .single-list-topics-content a:hover {
        color: #004d40; /* Custom color on hover */
    }

.serviceArea {
    background: #808080; /* Background color for the service area */
}

.bottom {
    min-height: 50px; /* Adjusted height */
    max-height: 100px; /* Adjusted height */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.single-list-topics-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100px;
    height: 100px; /* Ensures the height of the container */
}

    .single-list-topics-icon img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-top: 10px;
    }

.single-list-topics-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the content vertically */
    align-items: center; /* Centers the content horizontally */
    height: 100%;
    background: rgba(247, 246, 245, 0.8); /* Background color for content */
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

    .single-list-topics-content:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; /* Box-shadow on hover */
    }

    .single-list-topics-content h6 {
        font-size: small;
        font-weight: 900;
        text-align: center;
        line-height: 2;
    }

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the columns horizontally */
}

.tab-pane {
    max-height: 400px; /* Set maximum height */
    overflow-y: auto; /* Add vertical scroll if content exceeds max height */
    padding: 15px; /* Optional: Add some padding for better appearance */
    border: 1px solid #dee2e6; /* Optional: Add a border for better structure */
    background-color: #f9f9f9; /* Optional: Light background for better contrast */
}

.list-content hr {
    margin: 10px 0; /* Adjust horizontal rule spacing */
}


.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.service-card {
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

.service-title {
    font-weight: 900;
    font-size: small;
}

/* Modal Styles */
.modal-dialog {
    max-width: 80%;
}

/* Bottom spacing */
.bottom {
    min-height: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-list-topics-icon img {
    border-radius: 50%;
}

.nav-link-footer {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    display: block;
}

   
    .nav-link-footer:hover {
        color: white; 
        background-color: #34495e; 
        transition: all 0.3s ease-in-out; 
    }



.c-carousel__item a {
    position: relative;
    z-index: 10;
}
/*.bg-img {
    position: relative;
    overflow: hidden;*/ /* Ensures the pseudo-element doesn't overflow */
/*}

    .bg-img::before {*/
        /*content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/images/explore/12426.jpg');
        background-size: cover;
        background-position: center;
        filter: blur(3px);*/ /* Apply blur effect */
        /*z-index: 0;*/

        /*background-color:aqua;
    }

    .bg-img > * {
        position: relative;
        z-index: 1;*/ /* Keeps content above the blurred background */
    /*}*/




:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --border: #e4e7ed;
    --text: #1a1f2e;
    --muted: #7a828f;
    --j-color: #1f6feb;
    --j-light: #eef4ff;
    --j-border: #bdd4f8;
    --a-color: #2da44e;
    --a-light: #eefbf3;
    --a-border: #b4e8c7;
    --f-color: #d4420a;
    --f-light: #fff4ef;
    --f-border: #f5c6a8;
    --gold: #b07c2a;
    --gold-bg: #fdf8ef;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.page-wrap {
    max-width: 1366px;
    margin: auto;
}

.paper {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 20px;
}


/* ── HEADER ─────────────────────────── */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
}

.header-emblem {
    width: 56px;
    height: 56px;
    background: var(--gold-bg);
    border: 1.5px solid #dfc98a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.site-header h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .3rem;
}

.site-header p {
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: .9rem auto .75rem;
}

/* ── LEGEND PILLS ────────────────────── */
.legend-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.lpill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 500;
    padding: .28rem .75rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    letter-spacing: .03em;
}

.ldot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── TOP NODES ───────────────────────── */
.top-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 1.5rem;
    gap: 0;
}

.node-apex {
    background: var(--gold-bg);
    border: 1.5px solid #dfc98a;
    border-radius: 10px;
    padding: .85rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 260px;
}

    .node-apex .apex-label {
        font-size: .68rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
        display: block;
        margin-bottom: 3px;
    }

    .node-apex .apex-name {
        font-family: 'Lora', serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text);
    }

.node-chairman {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .65rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 200px;
}
.sub-node-2 {
    background: #e5edfd; border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .65rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 200px;
}



    .node-chairman .ch-label {
        font-size: .65rem;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 2px;
    }

    .node-chairman .ch-name {
        font-family: 'Lora', serif;
        font-size: .97rem;
        font-weight: 600;
        color: var(--text);
    }

/* ── CONNECTOR ───────────────────────── */
.vconn {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.vconn-j {
    background: var(--j-border);
}

.vconn-a {
    background: var(--a-border);
}

.vconn-f {
    background: var(--f-border);
}

/* ── BRANCH PANELS ───────────────────── */
.branch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: box-shadow .2s;
}

    .branch-card:hover {
        box-shadow: var(--shadow-md);
    }

.branch-head {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--border);
}

.b-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.b-title {
    font-family: 'Lora', serif;
    font-size: .95rem;
    font-weight: 700;
}

.b-sub {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: 1px;
}

/* branch-j */
.bj .branch-head {
    background: var(--j-light);
    border-color: var(--j-border);
}

.bj .b-icon {
    background: rgba(31,111,235,.12);
}

.bj .b-title {
    color: var(--j-color);
}

/* branch-a */
.ba .branch-head {
    background: var(--a-light);
    border-color: var(--a-border);
}

.ba .b-icon {
    background: rgba(45,164,78,.12);
}

.ba .b-title {
    color: var(--a-color);
}

/* branch-f */
.bf .branch-head {
    background: var(--f-light);
    border-color: var(--f-border);
}

.bf .b-icon {
    background: rgba(212,66,10,.1);
}

.bf .b-title {
    color: var(--f-color);
}


/* ── ROLE CARDS ──────────────────────── */
.branch-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.rcard {
    width: 100%;
    border-radius: 7px;
    padding: .6rem .85rem;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: background .15s;
}

    .rcard:hover {
        background: var(--bg);
    }

    .rcard .rlabel {
        font-size: .62rem;
        letter-spacing: .07em;
        text-transform: uppercase;
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    .rcard .rname {
        font-size: .88rem;
        font-weight: 600;
        color: var(--text);
    }

    .rcard .rtrans {
        font-size: .72rem;
        color: var(--muted);
        font-weight: 400;
        margin-top: 1px;
        display: block;
    }

.rcard-j {
    border-left: 3px solid var(--j-color);
}

    .rcard-j .rlabel {
        color: var(--j-color);
    }

    .rcard-j:hover {
        background: var(--j-light);
    }

.rcard-a {
    border-left: 3px solid var(--a-color);
}

    .rcard-a .rlabel {
        color: var(--a-color);
    }

    .rcard-a:hover {
        background: var(--a-light);
    }

.rcard-f {
    border-left: 3px solid var(--f-color);
}

    .rcard-f .rlabel {
        color: var(--f-color);
    }

    .rcard-f:hover {
        background: var(--f-light);
    }

/* cross link badge */
.xbadge {
    display: inline-block;
    font-size: .62rem;
    letter-spacing: .04em;
    background: #fff8e6;
    border: 1px dashed #dfc98a;
    color: var(--gold);
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: 5px;
    vertical-align: middle;
}

/* dashed cross card */
.rcard-cross {
    border: 1px dashed #dfc98a;
    border-left: 3px solid var(--gold);
    background: #fffdf7;
}

    .rcard-cross .rlabel {
        color: var(--gold);
    }

    .rcard-cross:hover {
        background: var(--gold-bg);
    }

/* ── STATS ROW ───────────────────────── */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    font-weight: 500;
}

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header {
    animation: fadeUp .5s ease both;
}

.top-flow {
    animation: fadeUp .5s .1s ease both;
}

.bj {
    animation: fadeUp .5s .18s ease both;
}

.ba {
    animation: fadeUp .5s .26s ease both;
}

.bf {
    animation: fadeUp .5s .34s ease both;
}

.stats-row {
    animation: fadeUp .5s .42s ease both;
}
.vksminhight500{
    min-height:500px;
}





/*@media (min-width: 992px) {
    .navbar-nav .nav-item {
        padding-right: 00px;
        font-size: 9pt;
    }
}



@media (min-width: 1920px) {
    .navbar-nav .nav-item {
        padding-right: 20px;
        font-size: 20pt;
    }
}
*/
@media (min-width: 1440px) {
    .navbar-nav .nav-item {
        padding-right: 3px;
        font-size: 11pt;
    }
}

@media (min-width: 1920px) {
    .navbar-nav .nav-item {
        padding-right: 20px;
        font-size: 14pt;
    }
}
/* Desktop menu show only >1024 */
.desktop-menu {
    display: none;
}

.mobile-toggle {
    display: block;
}

.mobile-menu {
    display: none;
}

/* 🔥 BREAKPOINT = 1024 */
@media (min-width: 1024px) {

    .desktop-menu {
        display: flex;
        justify-content: center;
        flex: 1;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}