﻿:root {
    --biz-navy: #011962;
    --biz-gold: #f39c12;
    --biz-bg-gray: #f8f9fb;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--biz-bg-gray);
    color: #2c3e50;
    margin: 0;
    overflow-x: hidden;
}

/* Full Width Container Override */
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* Exact Header Match */
.navbar {
    background-color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.navbar-brand {
    padding: 0;
    margin-right: 0;
}
.brand-logo-box {
    background-color: #1c6ab4;
    padding: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 12px rgba(11,28,63,0.25);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -12px;
}
.brand-logo-box img {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

/* --- Optimized Desktop Navbar --- */
@media all and (min-width: 992px) {
    .navbar-nav .nav-link {
        color: #0b1c3f !important;
        font-weight: 600;
        font-size: 14px; /* Scaled down slightly to fit all links cleanly on one line */
        margin: 0 12px;     /* Optimized tight spacing to prevent wrapping */
        letter-spacing: 0.2px;
        white-space: nowrap; /* Ensures multi-word links like JOIN BIZTALK stay on a single line */
        transition: color 0.3s;
        position: relative;
        padding-bottom: 5px !important;
		text-transform: uppercase;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: var(--biz-gold) !important;
    }
    .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--biz-gold);
        border-radius: 2px;
    }

    .navbar .container-fluid {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    padding: 8px 0;
}
.dropdown-item {
    font-weight: 600;
    font-size: 13px;
    color: #0b1c3f;
    padding: 8px 16px;
}
.dropdown-item:hover {
    background-color: #f8f9fb;
    color: var(--biz-gold);
}

.btn-become-member {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-become-member:hover {
    opacity: 0.95;
    color: #ffffff;
}

/* --- Premium Mobile Navigation Design --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(145deg, #0b1c3f, #020d24);
        padding: 28px 24px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(11,28,63,0.3);
        margin-top: 15px;
        border: 1px solid rgba(243, 156, 18, 0.2);
    }
    
    .navbar-collapse .navbar-nav {
        align-items: stretch !important;
        padding-top: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 14px;
        padding: 12px 16px !important;
        margin: 4px 0 !important;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        letter-spacing: 0.5px;
    }

    .navbar-nav .nav-link:hover, 
    .navbar-nav .nav-link.active {
        background: rgba(243, 156, 18, 0.15);
        color: var(--biz-gold) !important;
        border-color: rgba(243, 156, 18, 0.3);
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: inset 0 4px 12px rgba(0,0,0,0.2);
        border: none;
        background-color: rgba(1, 25, 98, 0.6);
        padding: 8px 12px;
        margin-top: 6px !important;
        margin-bottom: 6px;
        border-left: 3px solid var(--biz-gold);
        border-radius: 0 10px 10px 0;
    }

    .dropdown-item {
        color: #d1d8e0;
        font-weight: 500;
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 6px;
    }

    .dropdown-item:hover {
        background-color: rgba(243, 156, 18, 0.2);
        color: var(--biz-gold);
    }

    .btn-become-member {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-top: 20px !important;
        display: block;
        padding: 14px 20px;
        font-size: 14px;
        box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    }

    .mobile-hamburger-icon {
        width: 28px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .mobile-hamburger-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--biz-navy);
        border-radius: 3px;
        transition: all 0.3s;
    }
}

@media (max-width: 576px) {
    .brand-logo-box img {
        height: 70px !important;
    }
}

.sub-menu-toggle{display:none!important;}

/* Hero / Banner Section - Fixed Responsive Layout */
.hero-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}
.hero-content-container {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--biz-navy);
}
.hero-title .highlight-gold {
    color: #f39c12;
}
.hero-subtitle {
    font-size: 15px;
    color: #222;
    margin: 20px 0 35px;
    max-width: 580px;
    line-height: 1.6;
}
.btn-gold-action {
    background-color: #f39c12;
    color: #0b1c3f;
    font-weight: 700;
    border: 2px solid #f39c12;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-gold-action:hover {
    opacity: 0.9;
    color: #0b1c3f;
}
.btn-outline-action {
    background-color: transparent;
    border: 2px solid #222;
    color: #222;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-outline-action:hover {
    background-color: #ffffff;
    color: var(--biz-navy);
    border-color: #ffffff;
}

.carousel-control-next, .carousel-control-prev {
    z-index: 5;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .hero-content-container {
        min-height: 420px;
    }
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
}
.carousel-indicators .active {
    background-color: #f39c12;
}

/* Section Headings Style */
.section-header-box {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    position: relative;
}
.section-heading-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--biz-navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}
.section-heading-line {
    height: 2px;
    width: 28px;
    background-color: var(--biz-gold);
    margin-left: 10px;
}
.section-header-right {
    margin-left: auto;
    font-size: 12px;
    font-weight: 800;
    color: var(--biz-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.section-header-right:hover {
    color: var(--biz-gold);
}
.arrow-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #e1e8ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--biz-navy);
    transition: all 0.3s;
}
.section-header-right:hover .arrow-circle {
    border-color: var(--biz-gold);
    color: var(--biz-gold);
}

/* About Section */
.about-section {
    background: #ffffff url('aboutbg.png') no-repeat right bottom;
    padding: 80px 0;
}
.about-img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.advisor-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    margin: 0 10px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.advisor-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
}

.advisor-name {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--biz-navy);
}

.advisor-role {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 0;
}

/* Why Join Section */
.why-join-box {
    background: var(--biz-navy);
    color: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(11,28,63,0.15);
    height: 100%;
}
.feature-item i {
    font-size: 26px;
    color: var(--biz-gold);
    margin-bottom: 12px;
}

/* Member Testimonials Carousel Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}
.testimonial-card i.fa-quote-left {
    font-size: 35px;
    color: var(--biz-gold);
    margin-bottom: 12px;
}

/* Card Container Box */
.card-container-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f5;
}
.event-card-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.event-card-item:first-child {
    padding-top: 0;
}
.date-box-badge {
    background: linear-gradient(135deg, #0b1c3f, #132d63);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    min-width: 68px;
    margin-right: 18px;
    box-shadow: 0 4px 12px rgba(11,28,63,0.2);
}
.date-box-badge span {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--biz-gold);
    letter-spacing: 0.8px;
    font-weight: 700;
}
.date-box-badge h4 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
}
.event-thumb-img {
    width: 125px!important;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Gallery & Youtube Section */
.gallery-thumb {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-thumb:hover {
    transform: scale(1.02);
}
.youtube-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
}
.youtube-main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: #ffffff;
    width: 65px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}
.youtube-main:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Rankings Section */
.ranking-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    height: 100%;
}
.ranking-title-bar {
    background: var(--biz-navy);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.ranking-title-bar i {
    color: var(--biz-gold);
    margin-right: 10px;
    font-size: 16px;
}
.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 13px;
}
.rank-row:last-child {
    border-bottom: none;
}
.rank-digit {
    font-weight: 800;
    width: 24px;
    color: #7f8c8d;
}
.rank-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* Auto-Scrolling Partners Marquee Section */
.partners-section {
    background: #ffffff;
    padding: 45px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.partner-logo-item {
    font-weight: 800;
    font-size: 22px;
    color: #636e72;
    letter-spacing: 1px;
    padding: 0 10px;
    opacity: 0.8;
    white-space: nowrap;
}
.partner-logo-item img {
    height: 80px;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    background-color: var(--biz-navy);
    color: #b2bec3;
    padding: 60px 0 20px;
    font-size: 13px;
}
footer h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
footer ul {
    padding: 0;
    list-style: none;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}
footer ul li a:hover {
    color: var(--biz-gold);
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.social-links a:hover {
    background: var(--biz-gold);
    color: var(--biz-navy);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}
footer img {
    max-width: 100%;
}
footer ul.list-unstyled {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }
}

/* Lightbox Custom Overlay Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: var(--biz-gold);
}









/* =========================================
   INNER PAGE HEADER
========================================= */

.innerHeader {
    position: relative;
    width: 100%;
    padding: 65px 20px;
    background: linear-gradient(
        135deg,
        var(--biz-navy) 0%,
        #061f78 60%,
        #011962 100%
    );
    text-align: center;
    overflow: hidden;
}

/* Decorative gold elements */
.innerHeader::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(243, 156, 18, 0.25);
    border-radius: 50%;
    top: -150px;
    left: -80px;
}

.innerHeader::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(243, 156, 18, 0.18);
    border-radius: 50%;
    bottom: -210px;
    right: -100px;
}

.innerHeader > div {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Small gold line above title */
.innerHeader > div::before {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 0 auto 18px;
    background: var(--biz-gold);
    border-radius: 10px;
}

.innerHeader h1 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}


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

.innerPage {
    width: 100%;
    padding: 70px 0 80px;
    background: var(--biz-bg-gray);
}

.innerPage .container {
    max-width: 1140px;
    margin: 0 auto;
}


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

.innerPage p {
    margin: 0 0 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.innerPage h2 {
    position: relative;
    margin: 35px 0 20px;
    padding-left: 15px;
    color: var(--biz-navy);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.innerPage h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: calc(100% - 10px);
    background: var(--biz-gold);
    border-radius: 5px;
}

.innerPage h3 {
    margin: 30px 0 15px;
    color: var(--biz-navy);
    font-size: 24px;
    font-weight: 600;
}

.innerPage h4 {
    margin: 25px 0 12px;
    color: var(--biz-navy);
    font-size: 20px;
    font-weight: 600;
}


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

.innerPage a {
    color: var(--biz-navy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.innerPage a:hover {
    color: var(--biz-gold);
}


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

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

.innerPage p img {
    margin: 25px auto;
    border-radius: 10px;
}


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

.innerPage ul,
.innerPage ol {
    margin: 0 0 25px;
    padding-left: 25px;
}

.innerPage li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.innerPage li::marker {
    color: var(--biz-gold);
}


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

.innerPage blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #fff;
    border-left: 4px solid var(--biz-gold);
    border-radius: 0 8px 8px 0;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    box-shadow: 0 4px 15px rgba(1, 25, 98, 0.05);
}


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

.innerPage table {
    width: 100%;
    margin: 30px 0;
    background: #fff;
    border-collapse: collapse;
    box-shadow: 0 4px 15px rgba(1, 25, 98, 0.05);
}

.innerPage th,
.innerPage td {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.innerPage th {
    background: var(--biz-navy);
    color: #fff;
    font-weight: 600;
}

.innerPage td {
    color: #555;
}

.innerPage tr:nth-child(even) td {
    background: #fafafa;
}


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

.innerPage hr {
    margin: 35px 0;
    border: 0;
    border-top: 1px solid #e1e4ea;
}


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

@media (max-width: 991px) {

    .innerHeader {
        padding: 55px 20px;
    }

    .innerHeader h1 {
        font-size: 36px;
    }

    .innerPage {
        padding: 55px 0 65px;
    }

    .innerPage .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 767px) {

    .innerHeader {
        padding: 45px 15px;
    }

    .innerHeader h1 {
        font-size: 30px;
    }

    .innerHeader > div::before {
        width: 45px;
        height: 3px;
        margin-bottom: 14px;
    }

    .innerPage {
        padding: 40px 0 50px;
    }

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

    .innerPage p,
    .innerPage li {
        font-size: 15px;
        line-height: 1.7;
    }

    .innerPage h2 {
        font-size: 25px;
    }

    .innerPage h3 {
        font-size: 21px;
    }

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

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



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

.advisor-list-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8ebf1;
    box-shadow: 0 6px 25px rgba(1, 25, 98, 0.06);
    transition: all 0.35s ease;
}

.advisor-list-card:hover {
    transform: translateY(-7px);
    border-color: rgba(243, 156, 18, 0.45);
    box-shadow: 0 15px 35px rgba(1, 25, 98, 0.13);
}

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

.advisor-list-image {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #eef1f6;
}

.advisor-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.advisor-list-card:hover .advisor-list-img {
    transform: scale(1.04);
}

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

.advisor-list-content {
    position: relative;
    padding: 22px 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

/* Gold accent */
.advisor-list-content::before {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin: 0 auto;
    background: var(--biz-gold, #f39c12);
    border-radius: 10px;
}

/* Name */
.advisor-list-name {
    margin: 0 0 7px;
    font-size: 20px !important;
    line-height: 1.35;
    font-weight: 700;
}

.advisor-list-name a {
    color: var(--biz-navy, #011962);
    text-decoration: none;
    transition: color 0.3s ease;
}

.advisor-list-card:hover .advisor-list-name a {
    color: var(--biz-gold, #f39c12);
}

/* Designation */
.advisor-list-role {
    margin: 0 0 15px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================
   SOCIAL LINKS STYLING
========================================= */

.advisor-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.advisor-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #f1f3f5;
    color: #495057;
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.advisor-social-links a:hover {
    background-color: var(--biz-navy, #011962);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.advisor-view {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--biz-navy, #011962);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.advisor-view i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.advisor-list-card:hover .advisor-view {
    color: var(--biz-gold, #f39c12);
}

.advisor-list-card:hover .advisor-view i {
    transform: translateX(4px);
}


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

@media (max-width: 1199px) {

    .advisor-list-image {
        height: 280px;
    }

}


@media (max-width: 991px) {

    .advisor-listing {
        padding: 55px 0 70px;
    }

    .advisor-list-image {
        height: 300px;
    }

}


@media (max-width: 767px) {

    .advisor-listing {
        padding: 45px 0 60px;
    }

    .advisor-list-image {
        height: 280px;
    }

    .advisor-list-content {
        padding: 20px 18px 22px;
    }

    .advisor-list-name {
        font-size: 18px;
    }

}


@media (max-width: 575px) {

    .advisor-list-image {
        height: 330px;
    }

    .advisor-list-name {
        font-size: 19px;
    }

}




.form-control, .form-select {
    padding: 10px 14px;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    font-size: 14px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--biz-navy);
    box-shadow: 0 0 0 0.25rem rgba(1, 25, 98, 0.12);
}

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Custom Radio Card Styling */
.btn-check:checked + .btn-outline-dark {
    background-color: var(--biz-navy);
    border-color: var(--biz-navy);
    color: #fff;
}

.btn-outline-dark {
    border-color: #d7dce3;
    color: #333;
}

.btn-outline-dark:hover {
    background-color: #f1f3f5;
    border-color: #c0c6d0;
    color: #000;
}

/* =========================================================
   MEMBER LISTING & CARDS
========================================================= */
.member-listing {
    padding: 25px 0 60px;
}

.member-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 12px;
    text-align: center;
    transition: .3s;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 156, 18, .45);
    box-shadow: 0 12px 30px rgba(1, 25, 98, .12);
}

.member-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #eef1f6;
}

.member-img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    transition: .4s;
}

.member-card:hover .member-img {
    transform: scale(1.04);
}

.member-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--biz-navy);
}

.member-no-image i {
    color: #fff;
    font-size: 50px;
}

/* =========================================================
   MEMBER DIRECTORY CARDS & GRID STYLING
========================================================= */
.member-card {
    border: 1px solid #e5e8ef !important;
    border-radius: 16px !important;
    background: #fff;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 156, 18, 0.5) !important;
    box-shadow: 0 15px 35px rgba(1, 25, 98, 0.1) !important;
}

.member-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eef1f6;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

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

.member-no-image {
    background: #011962;
    color: #fff;
}

/* Social Icon Buttons */
.social-icon-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #011962;
    color: #fff !important;
    border-color: #011962 !important;
}

/* Read More Link */
.read-more-link {
    color: #011962;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #f39c12 !important;
}

.read-more-link:hover i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}


/* =========================================================
   RESPONSIVE LAYOUTS
========================================================= */
@media (max-width: 767px) {
    .member-card-image {
        height: 300px;
    }
    .member-modal .modal-body {
        padding: 20px;
    }
    .profile-photo {
        height: 280px;
    }
}



/* =========================================================
   SINGLE MEMBER PROFILE STYLING
========================================================= */
.member-profile-sidebar {
    border-radius: 16px !important;
    border: 1px solid #e5e8ef !important;
}

.profile-avatar-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef1f6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #011962;
    color: #fff;
    font-size: 60px;
}

/* Action Buttons */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff !important;
}
.btn-whatsapp:hover {
    background-color: #22bf5b;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background-color: #011962;
    color: #fff !important;
}
.btn-call:hover {
    background-color: #011248;
    box-shadow: 0 5px 15px rgba(1, 25, 98, 0.3);
}

.btn-email {
    background-color: #f1f3f5;
    color: #333 !important;
    border: 1px solid #d7dce3;
}
.btn-email:hover {
    background-color: #e2e6ea;
}

/* Main Profile Content */
.member-profile-main {
    border-radius: 16px !important;
    border: 1px solid #e5e8ef !important;
}

.badge-membership {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(243, 156, 18, 0.15);
    color: #b97405;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

/* Profile Link Badges (Social & Web) */
.profile-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    color: #333 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.profile-link-badge:hover {
    background: #011962;
    color: #fff !important;
    border-color: #011962;
}

.profile-link-badge:hover i {
    color: #fff !important;
}


/* Image styling fix */
.innerPage .advisor-img-full {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(1, 25, 98, 0.08);
    object-fit: cover;
}

/* Content layout alignment */
.advisor-single-content {
    padding-left: 15px;
}

.advisor-single-name {
    color: var(--biz-navy, #011962);
    font-size: 32px !important;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 5px;
}

.advisor-single-role {
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Professional Social Icons Styling */
.innerPage .advisor-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.innerPage .advisor-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f3f5;
    color: var(--biz-navy, #011962);
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.innerPage .advisor-social-links a:hover {
    background-color: var(--biz-gold, #f39c12);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* Bio text formatting */
.advisor-bio-content {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}

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