:root {
    --primary-dark: #111111;
    --secondary-dark: #1c1c1c;
    --accent-gold: #BFA05C;
    --accent-gold-dark: #A68A4B;
    --accent-gold-light: #D4B876;
    --off-white: #F9F9F9;
    --pure-white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-light: #E8E8E8;

     /* Gradients */
     --gradient-primary: linear-gradient(145deg, var(--primary-dark), #1a1a1a);
     --gradient-accent: linear-gradient(90deg, #b3945f, var(--accent-gold));
     
     /* Fonts */
     --font-primary: 'Playfair Display', serif;
     --font-secondary: 'Poppins', sans-serif;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
} */

/* Hero Mini Section with Animation */
.nwoko-hero-mini {
    margin-top: 0;
    height: 500px;
    background: var(--primary-dark);
    background-image: url('../images/portrait-professional-business-people-working-together.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    animation: fadeIn 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(17, 17, 17, 0.70),
        rgba(28, 28, 28, 0.60)
    );
}

.hero-mini-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: 60px;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhance text animations */
.hero-mini-content h1 {
    animation: fadeIn 0.8s ease-out 0.2s;
    animation-fill-mode: both;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: both;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
}

.breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: var(--accent-gold);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* About Section */
.nwoko-about-section {
    padding: 100px 0;
    background: var(--off-white);
}

.about-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* border: solid red 1px; */
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 30px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-dark);
    padding: 25px 35px;
    border-radius: 8px;
    color: var(--pure-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

/* .about-content {
    padding-left: 20px;
} */

.section-subtitle {
    color: var(--accent-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
}

.separator-icon {
    font-size: 24px;
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 30px 0;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--pure-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-item .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

/* Philosophy Section */
.nwoko-philosophy-section {
    padding: 100px 0;
    background: var(--primary-dark);
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.philosophy-card {
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--pure-white);
    border: 1px solid rgba(255,255,255,0.05);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    color: var(--accent-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.philosophy-card:hover .card-icon {
    background: var(--pure-white);
    color: var(--accent-gold);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.philosophy-card p {
    line-height: 1.7;
    margin: 0;
    color: var(--pure-white);
    opacity: 0.9;
}

/* Footer Styles (Copied from index.css) */
.footer-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.nwoko-footer {
    background: var(--primary-dark);
    color: var(--pure-white);
    position: relative;
}

.nwoko-footer-top {
    padding: 80px 0 60px;
}

.nwoko-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.nwoko-footer-logo h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    font-family: var(--font-primary);
}

.nwoko-footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.nwoko-social-links {
    display: flex;
    gap: 15px;
}

.nwoko-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nwoko-footer-title {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.nwoko-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.nwoko-contact-grid {
    display: grid;
    gap: 20px;
}

.nwoko-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.nwoko-contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.nwoko-contact-content .nwoko-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.nwoko-contact-content p {
    margin: 0;
    color: var(--text-light);
}

.nwoko-hours-grid {
    display: grid;
    gap: 15px;
}

.nwoko-hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-day {
    color: rgba(255, 255, 255, 0.8);
}

.nwoko-time {
    color: var(--accent-gold);
}

.nwoko-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nwoko-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nwoko-legal-links {
    display: flex;
    gap: 20px;
}

.nwoko-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nwoko-legal-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .nwoko-footer-top {
        padding: 60px 0 40px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nwoko-legal-links {
        justify-content: center;
    }

    .about-container{
        width: 100%;
    }

    .about-image-wrapper{
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .nwoko-contact-info , .nwoko-hours{
        margin-top: 6%;
    }

    .footer-container {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }
    .nwoko-footer-top {
        padding: 40px 0 20px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .nwoko-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .nwoko-hero-mini {
        height: 300px;
        margin-top: 0;
    }
    .hero-mini-content {
        margin-top: 40px;
        padding: 0 20px;
    }
    .hero-mini-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .breadcrumb {
        align-items: center;
        gap: 5px;
    }
    .main-image {
        height: 300px;
    }
    .experience-badge {
        right: 0;
        bottom: 20px;
    }
    .section-title {
        font-size: 28px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-card {
        padding: 20px;
    }
    .nwoko-footer-logo h3 {
        font-size: 1.5rem;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .navbar-toggler {
        margin-left: 10px;
    }
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--pure-white);
        padding: 10px 15px;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .partner-profile-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-bottom: 40px;
    }
    .profile-image-section, .profile-info-section {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0;
    }
    .profile-image-section {
        padding: 0 20px;
    }
    .profile-info-section {
        padding: 30px 20px;
    }
    .profile-name {
        font-size: 1.8rem;
    }
    .profile-title {
        font-size: 1rem;
    }
    .profile-bio {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .profile-quote {
        font-size: 1rem;
        padding: 15px;
        margin: 20px 0;
    }
    .profile-badge {
        font-size: 0.9rem;
        padding: 4px 13px;
        top:2% !important;
    }
}

/* Counsels Section Styles */
.nwoko-counsels-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.counsels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.counsel-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counsel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.counsel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.counsel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.counsel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.counsel-card:hover .counsel-overlay {
    opacity: 1;
}

.counsel-social {
    display: flex;
    gap: 15px;
}

.counsel-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.counsel-social a:hover {
    color: #bfa05c;
}

.counsel-info {
    padding: 25px;
}

.counsel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.counsel-title {
    display: block;
    color: #bfa05c;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counsel-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.counsel-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: #bfa05c;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nwoko-counsels-section {
        padding: 60px 0;
    }

    .counsels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .counsel-image {
        height: 250px;
    }

    .counsel-info {
        padding: 20px;
    }

    .counsel-info h3 {
        font-size: 1.3rem;
    }
}

/* Partners Section Styles */
.nwoko-partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(191, 160, 92, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.partner-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.2),
        rgba(17, 17, 17, 0.8)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-social {
    display: flex;
    gap: 20px;
}

.partner-social a {
    color: var(--pure-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background: rgba(191, 160, 92, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.partner-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.partner-info {
    padding: 35px;
    position: relative;
}

.partner-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.partner-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.partner-title {
    display: block;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-bio {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.partner-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Enhanced Counsels Section Styles */
.nwoko-counsels-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--pure-white) 100%);
    position: relative;
}

.counsels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.counsel-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(191, 160, 92, 0.1);
}

.counsel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.counsel-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.counsel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.2),
        rgba(17, 17, 17, 0.8)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.counsel-card:hover .counsel-overlay {
    opacity: 1;
}

.counsel-social {
    display: flex;
    gap: 20px;
}

.counsel-social a {
    color: var(--pure-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background: rgba(191, 160, 92, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.counsel-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.counsel-info {
    padding: 35px;
    position: relative;
}

.counsel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.counsel-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.counsel-title {
    display: block;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.counsel-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.counsel-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background: var(--off-white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 160, 92, 0.1);
}

.expertise-tag:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* Responsive Styles for Both Sections */
@media (max-width: 991px) {
    .nwoko-partners-section,
    .nwoko-counsels-section {
        padding: 80px 0;
    }

    .partners-grid,
    .counsels-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .partner-image,
    .counsel-image {
        height: 300px;
    }

    .partner-info,
    .counsel-info {
        padding: 25px;
    }

    .partner-info h3,
    .counsel-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nwoko-partners-section,
    .nwoko-counsels-section {
        padding: 60px 0;
    }

    .partners-grid,
    .counsels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partner-image,
    .counsel-image {
        height: 280px;
    }

    .partner-info h3,
    .counsel-info h3 {
        font-size: 1.4rem;
    }

    .partner-social a,
    .counsel-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Counsels Slider Styles */
.counsels-slider-container {
    position: relative;
    padding: 0 50px;
    margin: 0 -15px;
}

.counsels-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.counsels-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.counsel-card {
    flex: 0 0 350px;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pure-white);
    border: 1px solid rgba(191, 160, 92, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .counsels-slider-container {
        padding: 0 40px;
    }

    .counsel-card {
        flex: 0 0 300px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }
}

/* Partner Profile Card Layout */
.partner-profile-card {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    display: flex;
    align-items: stretch;
    padding: 0;
    min-height: 400px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    gap: 0;
}

.profile-image-section {
    /* background: #eaf6fa; */
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 48%;
    padding: 0;
    position: relative;
}

.profile-image-wrapper.large-profile-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-image.large-profile-image {
    width: 90%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    background: #eaf6fa;
}

.profile-badge {
    position: absolute;
    top: 10%;
    left: 5%;
    background: var(--accent-gold);
    color: var(--pure-white);
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 1px;
    z-index: 2;
}

.profile-info-section {
    width: 52%;
    padding: 40px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.profile-name {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.profile-title {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.profile-bio {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.8;
}

.profile-bio strong {
    color: var(--primary-dark);
}

.profile-quote {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 24px 0;
    border-left: 5px solid var(--accent-gold);
    padding-left: 18px;
    background: rgba(191,160,92,0.06);
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .partner-profile-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .profile-image-section, .profile-info-section {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0;
    }
    .profile-info-section {
        padding: 30px 10px;
    }
}

@media (max-width: 768px) {
    .partner-profile-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .profile-image-section, .profile-info-section {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0;
    }
    .profile-info-section {
        padding: 30px 10px;
    }
    .profile-name {
        font-size: 1.8rem;
    }
    .profile-title {
        font-size: 1rem;
    }
    .profile-bio {
        font-size: 0.95rem;
    }
    .profile-quote {
        font-size: 1rem;
    }
}

/* Remove old partners grid/card styles if not needed */
.partners-grid, .partner-card, .partner-image, .partner-overlay, .partner-social, .partner-info, .partner-title, .partner-bio, .partner-expertise, .expertise-tag {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    color: transparent !important;
}

/* Counsels Team Grid (Image Card Layout) */
.counsels-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.counsel-team-card {
    position: relative;
    width: 100%;
    height: 300px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.3s;
    border-bottom: 4px solid var(--accent-gold-dark);
}
.counsel-team-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.counsel-team-overlay {
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.0) 100%);
    padding: 0 0 22px 0;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    min-height: 60px;
    border-radius: 0 0 18px 18px;
}
.counsel-team-name {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-left: 22px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.counsel-title {
    display: block;
    color:#ffdb8c;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 22px;
}

.spec{
    margin-bottom: 2px;
    font-size: 0.8rem;
}

@media (max-width: 1200px) {
    .counsels-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (max-width: 900px) {
    .counsels-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .counsels-team-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .counsel-team-name {
        font-size: 1rem;
        margin-left: 14px;
    }
    .counsel-title {
        display: block;
        color: #ffdb8c;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-left: 16px;
    }
    
    .counsel-team-card {
        position: relative;
        width: 100%;
        height: 500px;
    }
}

@media(max-width:550px){
.counsel-team-card {
    position: relative;
    width: 100%;
    height: 450px;
}
}
/* Remove old board grid/card styles if not needed */
.counsels-board-grid, .counsel-board-card, .counsel-board-img, .counsel-role, .counsel-desc {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    color: transparent !important;
}


