/*
Theme Name: AISB Knowledge Networks
Theme URI: https://aisb.org
Author: AISB Team
Author URI: https://aisb.org
Description: A lightweight, Elementor-compatible WordPress theme for AISB Knowledge Networks with global design system
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aisb-knowledge-networks
Tags: elementor, responsive, clean, modern, blog, e-commerce, knowledge-network
*/

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */

.site-header {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e5e5;
}

/* Header Desktop (1025px and above) */
@media (min-width: 1025px) {    
    .site-header {
        padding: 25px 0;
        background-color: #ffffff;
    }
    
    .header-container {
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .site-logo {
        flex: 0 0 auto;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    .logo-icon {
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-logo-img {
        height: auto;
        width: 100%;
        display: block;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo-main {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #1a365d;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .logo-sub {
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-weight: 400;
        color: #666666;
        letter-spacing: 1.5px;
        line-height: 1.2;
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    width: 100%;
}

/* Logo Styles */
.site-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: #ff8c00;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation Styles */
.site-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: right;
    gap: 20px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    text-decoration: none;
    color: #2e2b2b;
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    color: #ff8c00;
}

.primary-menu a.current-menu-item,
.primary-menu .current_page_item > a {
    color: #ff8c00;
}

/* Arrow indicator for parent menu items */
.primary-menu li.menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

.primary-menu li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #2e2b2b;
    transition: all 0.3s ease;
}

.primary-menu li.menu-item-has-children:hover > a::after {
    border-top-color: #ff8c00;
    transform: translateY(-50%) rotate(0deg);
}

/* Dropdown menu styles */
.primary-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    overflow: hidden;
}

.primary-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu ul.sub-menu li {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
}

.primary-menu ul.sub-menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    display: block;
    color: #2e2b2b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    background: transparent;
    margin: 0;
}

.primary-menu ul.sub-menu a:last-child {
    border-bottom: none;
}

.primary-menu ul.sub-menu a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #ff8c00;
    padding-left: 23px;
    transform: none;
}

.primary-menu ul.sub-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff8c00;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0;
}

.primary-menu ul.sub-menu a:hover::before {
    transform: scaleY(1);
}

/* First and last item rounded corners */
.primary-menu ul.sub-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.primary-menu ul.sub-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

/* Ensure hover stays within bounds */
.primary-menu ul.sub-menu li:hover {
    overflow: hidden;
}

/* CTA Button */
.header-cta {
    margin-left: 40px;
    display: flex;
    gap: 20px;
}

.cta-button {
    background-color: #f58523;
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 20px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e67300;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1a365d;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Landscape (1023px and below) */
@media (max-width: 1023px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .primary-menu {
        gap: 30px;
    }
    
    .primary-menu a {
        font-size: 15px;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .header-cta {
        margin-left: 30px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Tablet Portrait (767px and below) */
@media (max-width: 767px) {
    .site-header {
        padding: 15px 0;
    }
    
    .header-container {
        position: relative;
        padding: 0 15px;
    }
    
    .site-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #faf7f2;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .site-navigation.active {
        left: 0;
    }
    
    .main-navigation {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: auto;
        text-align: center;
    }
    
    .primary-menu a {
        font-size: 18px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(26, 54, 93, 0.1);
        color: #333;
    }
    
    .primary-menu a:hover {
        color: #ff8c00;
    }
    
    .primary-menu a.current-menu-item,
    .primary-menu .current_page_item > a {
        color: #ff8c00;
    }
    
    /* Mobile arrow indicators */
    .primary-menu li.menu-item-has-children > a::after {
        border-top-color: #333;
    }
    
    .primary-menu li.menu-item-has-children:hover > a::after {
        border-top-color: #ff8c00;
    }
    
    .primary-menu ul.sub-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: transparent;
    margin: 0;
    padding: 0;
    border-radius: 0;
    text-align: center;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Show mobile submenu when parent is active/tapped */
.primary-menu li.menu-item-has-children:hover > ul.sub-menu,
.primary-menu li.menu-item-has-children:focus-within > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin: 10px 0 0 0;
    padding: 8px 0;
}

.primary-menu ul.sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu ul.sub-menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    color: #333;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    background: transparent;
    margin: 0;
    border-radius: 0;
}

.primary-menu ul.sub-menu a:last-child {
    border-bottom: none;
}

.primary-menu ul.sub-menu a:hover {
    background: rgba(26, 54, 93, 0.05);
    color: #ff8c00;
    padding-left: 25px;
    transform: none;
}

.primary-menu ul.sub-menu a::before {
    display: none;
}
    
    .header-cta {
        margin-left: 0;
        margin-top: auto;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 16px;
        display: block;
        border-radius: 5px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-header {
        padding: 15px 0;
        background-color: #ffffff;
    }
    
    .header-container {
        padding: 0 20px 0 40px;
    }
    
    .header-logo-img {
        height: auto;
        width: 85%;
    }
    
    .logo-main {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #1a365d;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .logo-sub {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        font-weight: 400;
        color: #666666;
        letter-spacing: 1.2px;
        line-height: 1.2;
    }
    
    .site-header {
        padding: 15px 0;
    }
    
    .logo-icon {
        margin-right: 10px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    .site-navigation {
        width: 80%;
    }
    
    .primary-menu a {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 15px;
        font-size: 18px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .primary-menu {
        gap: 50px;
    }
    
    .primary-menu a {
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 12px;
    }
}

/* ========================================
   Mobile Menu Animation
   ======================================== */

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Overlay for mobile menu
   ======================================== */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   Footer Styles
   ======================================== */

.site-footer {
    background-color: #000000; /* Black background */
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 0 120px;
}

.footer-content {
    display: block;
    margin-bottom: 60px;
}

/* Row and Column System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

[class*="col-"] {
    padding: 0 15px;
    position: relative;
    /* width: 100%; */
}

.footer-section {
    display: flex;
    flex-direction: column;
    word-break: break-word;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #adadad;
    text-transform: capitalize;
    letter-spacing: normal;
}

/* Company Section */
.company-section {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-text h4 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    letter-spacing: -1.5px;
}

.footer-logo-text p {
    font-size: 12px;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
    margin: 6px 0 0 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-icon {
    margin-right: 18px;
    font-size: 38px;
    color: #ffffff;
    flex-shrink: 0;
}

.footer-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #9b9b9b;
    font-size: 16px;
    font-weight: 400;
}

.become-expert-btn {
    background-color: transparent;
    color: #9b9b9b;
    padding: 10px 28px;
    border: 2px solid #9b9b9b;
    border-radius: 6px;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.8px;
}

.become-expert-btn:hover {
    background-color: #ffffff;
    color: #000000; /* Black on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Menu Sections */
.footer-menu,
.quick-links-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li,
.quick-links-menu li {
    margin-bottom: 5px; /* Reduced spacing between menu items */
}

.footer-menu a,
.quick-links-menu a {
    color: #777777; /* White for menu links */
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    line-height: 1.5;
    font-weight: 400;
}

.footer-menu a:hover,
.quick-links-menu a:hover {
    color: #ff8c00;
}

/* Contact Section */
.contact-section {
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Mobile contact items - display inline */
@media (max-width: 767px) {
    .contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
    }
}

.contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #9b9b9b;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    flex: 1;
}

.contact-value {
    font-size: 15px;
    margin: 0;
    color: #9b9b9b;
    line-height: 1.5;
    font-weight: 400;
}

.knowledge-initiative {
    margin-bottom: 20px;
}

.knowledge-initiative p {
    font-size: 16px;
    color: #9b9b9b;
    margin: 0;
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.footer-social-section {
    margin-top: auto;
}

.follow-us {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #9b9b9b;
    text-transform: capitalize;
    letter-spacing: normal;
}

.social-links {
    display: flex;
    gap: 5px;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Style SVG icons within social links */
.social-link svg {
    width: 20px;
    height: 20px;
    fill: #000000;
}

.social-link:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #2d2d2d; /* Dark grey background */
    padding: 10px 0 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.copyright {
    margin: 0;
    color: #999999; /* Light grey text */
    font-size: 16px;
    font-weight: 400;
}

/* ========================================
   Footer Responsive Design
   ======================================== */

/* Tablet Landscape (1023px and below) */
@media (max-width: 1023px) {
    .footer-container {
        padding: 0 15px;
    }

    .row {
        flex-wrap: wrap;
    }
    
    .col-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-logo-text h4 {
        font-size: 30px;
    }
    
    .footer-logo-text p {
        font-size: 10px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .copyright-container {
        padding: 0 15px;
    }

    .become-expert-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Tablet Portrait (767px and below) */
@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 0;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-description p {
        margin-bottom: 5px;
    }

    .footer-container {
        padding: 0 15px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-5,
    .col-2,
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-logo-text h4 {
        font-size: 28px;
    }
    
    .footer-description {
        margin-bottom: 25px;
        font-size: 14px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        gap: 10px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: center;
        gap: 8px;
    }
    
    .knowledge-initiative {
        text-align: center;
    }
    
    .knowledge-initiative p {
        text-align: center;
    }
    
    .footer-social-section {
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright-container {
        padding: 0 15px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        gap: 0;
        margin-bottom: 0;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-logo-text h4 {
        font-size: 24px;
    }
    
    .footer-logo-text p {
        font-size: 9px;
    }
    
    .logo-icon {
        font-size: 24px;
        margin-right: 12px;
    }
}

/* Tablet Landscape (769px to 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .site-header {
        padding: 18px 0;
        background-color: #ffffff;
    }
    
    .header-container {
        padding: 0 30px 0 60px;
    }
    
    .header-logo-img {
        height: 45px;
        width: auto;
    }
    
    .logo-main {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #1a365d;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .logo-sub {
        font-family: 'Poppins', sans-serif;
        font-size: 9px;
        font-weight: 400;
        color: #666666;
        letter-spacing: 1.3px;
        line-height: 1.2;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .row {
        flex-wrap: wrap;
        margin: 0 -15px;
    }
    
    .col-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .footer-section {
        text-align: left;
        align-items: flex-start;
    }
    
    .company-section {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 25px;
    }
    
    .footer-logo-text h4 {
        font-size: 36px;
    }
    
    .footer-description {
        margin-bottom: 30px;
        font-size: 15px;
        text-align: left;
    }
    
    .contact-info {
        align-items: flex-start;
        gap: 16px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }
    
    .knowledge-initiative {
        text-align: left;
    }
    
    .knowledge-initiative p {
        text-align: left;
    }
    
    .footer-social-section {
        text-align: left;
        align-items: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .copyright-container {
        padding: 0 30px;
    }
    
    .copyright {
        font-size: 15px;
    }
}

/* Tablet Landscape (1023px and below) */
@media (max-width: 1023px) {
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .footer-menu a,
    .quick-links-menu a {
        font-size: 13px;
    }
    
    .contact-info {
        gap: 14px;
    }
    
    .contact-value {
        font-size: 13px;
    }
    
    .knowledge-initiative p {
        font-size: 12px;
    }
    
    .follow-us {
        font-size: 13px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .copyright-container {
        padding: 0 20px;
    }
    
    .copyright {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
}

@media screen and (max-width: 767px) and (min-width: 480px) {
    .footer-content {
        display: block;
        margin-bottom: 0;
    }
}

/* ========================================
   FIXED TABLET HEADER (769px to 1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {

    img.header-logo-img {
        width: 75%;
        height: auto;
    }

    .site-header {
        padding: 14px 0;
    }

    .header-container {
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    /* Logo */
    .site-logo {
        flex: 0 0 auto;
        max-width: 180px;
    }

    .logo-link {
        display: flex;
        align-items: center;
    }

    .logo-icon svg {
        width: 34px;
        height: 34px;
    }

    .logo-main {
        font-size: 24px;
        line-height: 1;
    }

    .logo-sub {
        font-size: 9px;
        white-space: nowrap;
    }

    /* Navigation */
    .site-navigation {
        flex: 1;
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .primary-menu {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .primary-menu a {
        font-size: 14px;
        white-space: nowrap;
    }

    /* CTA */
    .header-cta {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Hide mobile toggle */
    .mobile-menu-toggle {
        display: none;
    }

    /* ================= FOOTER ================= */
    .footer-container {
        max-width: 100%;
    }

    .footer-content {
        display: flex;
        margin-bottom: 40px;
    }

    .row {
        display: contents;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .col-5,
    .col-2,
    .col-3 {
        flex: unset;
        max-width: unset;
        width: 100%;
        margin-bottom: 0;
    }

    .footer-section {
        text-align: left;
        align-items: flex-start;
    }

    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .footer-logo-text h4 {
        font-size: 32px;
    }

    .footer-logo-text p {
        font-size: 10px;
    }

    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .footer-menu li,
    .quick-links-menu li {
        margin-bottom: 10px;
    }

    .footer-menu a,
    .quick-links-menu a {
        font-size: 14px;
    }

    .footer-description p {
        margin-bottom: 5px;
    }

    .contact-info {
        gap: 12px;
        margin-bottom: 16px;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-value {
        font-size: 13px;
        line-height: 1.5;
    }

    .knowledge-initiative p {
        font-size: 13px;
    }

    .follow-us {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .social-links {
        gap: 5px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .copyright {
        font-size: 14px;
    }
}

@media (min-width: 850px) and (max-width: 1023px) {
    img.header-logo-img {
        width: 100%;
        height: auto;
    }
    .primary-menu {
        gap: 22px;
    }
}

@media (min-width: 1024px) and (max-width: 1089px) {
    .header-container {
        padding: 0 30px;
    }
    .footer-container {
        padding: 0 30px;
    }
    .social-link {
        width: 30px;
        height: 30px;
    }
    .footer-description p {
        margin-bottom: 5px;
    }
}

.footer-description p {
    margin-bottom: 0;
}

@media (min-width: 1024px) and (max-width: 1164px) {
    .primary-menu {
        gap: 25px;
    }
    .header-cta {
        margin-left: 25px;
    }
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .primary-menu {
        gap: 30px;
    }
    .header-cta {
        margin-left: 30px;
    }
}

.view-all-experts-btn {
    float: right;
    top: -55px;
    clear: both
}
.engage-ai-voices {
    margin: 0 auto !important;
}

.engage-ai-desc {
    margin: 20px auto !important;
}

.clear-css {
    clear: both;
}

.site-content {
    padding: 80px;
    background-color: #fff;
    word-break: break-word;
}

.site-content.elementor-page {
    padding: 0;
}

/* 404 Page Styles */
.error404 {
    text-align: center;
    background: #f8f9fa;
    min-height: 60vh;
}

.error404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    margin-top: 40px;
}

h1.error-title {
    font-size: 4rem;
    font-weight: 600;
}

p.error-message {
    font-weight: 500;
    font-size: 18px;
}

p.error-suggestion {
    font-size: 18px;
    font-weight: 500;
}

/* Non-Elementor Page Styles */
.non-elementor-page .entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.non-elementor-page .entry-content h1,
.non-elementor-page .entry-content h2,
.non-elementor-page .entry-content h3 {
    color: #2a548c;
    margin-bottom: 20px;
    font-weight: 600;
}

.non-elementor-page .entry-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.non-elementor-page .entry-content h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.non-elementor-page .entry-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

.non-elementor-page .entry-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.non-elementor-page .entry-content ul,
.non-elementor-page .entry-content ol {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 30px;
}

.non-elementor-page .entry-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.non-elementor-page .entry-content a {
    color: #2a548c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.non-elementor-page .entry-content a:hover {
    color: #1a365d;
    text-decoration: underline;
}

.non-elementor-page .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.non-elementor-page .entry-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2a548c;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    text-align: left;
}

/* Responsive Non-Elementor Pages */
@media (max-width: 768px) {
    .non-elementor-page .entry-content {
        padding: 0 15px;
    }
    
    .non-elementor-page .entry-content h1 {
        font-size: 2rem;
    }
    
    .non-elementor-page .entry-content h2 {
        font-size: 1.8rem;
    }
    
    .non-elementor-page .entry-content h3 {
        font-size: 1.3rem;
    }
    
    .non-elementor-page .entry-content p {
        font-size: 1rem;
    }
}

.website {
    display: flex;
    gap: 20px;
    align-items: center;
}

.website span {
    opacity: 0.898;
    font-size: 22px;
    color: #000000;
    font-weight: 400;
}

.website span a {
    color: #000;
}

/* Labels */
.contact-form label {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Inputs + textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    outline: none;
}

/* Contact form dropdown styling */
.contact-form select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 10px 40px 10px 20px;
    font-size: 16px;
    color: #333;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

/* Input height */
.contact-form input,
.contact-form select {
    height: 50px;
}

/* Textarea */
.contact-form textarea {
    height: 140px;
    resize: none;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* Dropdown options styling */
.contact-form select option {
    background: #2a528d;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
}

.contact-form select option:hover,
.contact-form select option:checked {
    background: #1a365d;
    color: white;
}

/* Custom scrollbar styling for contact dropdown */
.contact-form select::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-form select::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.contact-form select::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-form select {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

/* Custom scrollbar styling for speaker listing page filters */
.speakers-filters select::-webkit-scrollbar {
    width: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.speakers-filters select::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.speakers-filters select::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speakers-filters select::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Firefox scrollbar styling for speaker filters */
.speakers-filters select {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

/* IE/Edge scrollbar styling for speaker filters */
.speakers-filters select::-ms-scrollbar {
    width: 8px;
}

.speakers-filters select::-ms-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.speakers-filters select::-ms-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* IE/Edge scrollbar styling */
.contact-form select::-ms-scrollbar {
    width: 8px;
}

.contact-form select::-ms-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.contact-form select::-ms-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Submit button container */
.contact-form-submit {
    margin-top: 20px;
    align-items: center;
}

/* Submit button */
.contact-form .submit-btn {
    background: #F58220;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    line-height: 20px;
    width: 30%;
    margin: 0 auto;
    margin-left: 36%;
}

/* Hover */
.contact-form .submit-btn:hover {
    background: #e06f10;
}

.contact-form .row {
    margin-bottom: 20px;
}

.contact-form .row:last-child {
    margin-bottom: 0;
}

span.about-us-footer {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
}

.join-us-services {font-size: 28px;color: #000000;font-weight: 400;}

.join-us-services span.svg-icons {
    background-color: #f68522;
    text-align: center;
    border-radius: 5px;
    line-height: 0;
    padding: 1px 2px 5px 9px;
    margin-right: 25px;
}

.join-us-services div {
    margin-bottom: 20px;
}

span.svg-icons img {
    text-align: center;
    margin: 0 auto;
}

p#widget-count-sec:after {
    content: '';
    height: 1px;
    width: 20%;
    border-top: 2px solid #f68522;
    display: block;
}

.border-right-divider {
    position: relative;
}

.border-right-divider:after {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    right: 25px;
    opacity: 0.4;
}

.border-right-divider:last-child::after {
    display: none;
}

div#about-us-widget {
    position: absolute;
    z-index: 9;
    bottom: -90px;
    width: 90%;
    margin: 0 auto;
}

.border-right-divider:last-child {
    width: 60%;
}

.footer-image-speaker {
    position: absolute !important;
    bottom: 0;
    right: 80px;
}

.featured-blogs-list {
    padding-bottom: 80px;
}

.featured-blogs-list__title {
    font-size: 22px;
    line-height: 28px;
    color: #f58523;
    font-weight: 700;
    margin-bottom: 30px;
}

.posted-by-tag {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}

.blog-featured-image {
    width: 100%;
    padding: 20px;
    height: auto;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px !important;
}

.blog-description {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #404453;
    font-weight: 300;
}

.posted-by-tag {
    font-size: 16px;
    line-height: 24px;
    color: #747787;
    font-weight: 300;
}

span.blogs-tags {
    font-size: 16px;
    line-height: 24px;
    color: #2a548c;
    font-weight: 400;
    font-family: "Poppins";
}

.read-more-blogs {
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #2a528d;
    padding: 10px 25px;
}

.read-more-blogs a {
    font-size: 24px;
    line-height: 29px;
    color: #2a528d;
    font-weight: 400;
    text-align: center;
}

h2.single-post-heading {
    font-size: 72px;
    line-height: 80px;
    color: #2a548c;
    font-weight: 500;
}

.single-post-entry {
    padding: 30px 60px;
    position: relative;
}

.single-post-featured-image {
    margin-top: 60px;
    margin-bottom: 90px;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.social-sharing-option {
    position: absolute;
    top: 30px;
    right: 60px;
}

.wpzoom-social-sharing-buttons-top {
    position: absolute;
    top: 0;
    right: 60px;
}

span.social-sharing-icon-label {
    display: none;
}

ul.social-sharing-icons li.social-sharing-icon-li a {
    height: 40px;
    width: 40px;
    padding: 0 !important;
}

.single-content-section {
    background-color: #f4f1ea;
    margin: 0 -140px;
    padding:  80px 140px;
}

h1.single-post-title {
    font-size: 63px;
    line-height: 82px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.single-content-section .content h2, .single-content-section .content h3, .single-content-section .content h4, .single-content-section .content h5, .single-content-section .content h6 {
    font-size: 32px;
    line-height: 48px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
}

.single-content-section .content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.single-content-section .content p {
    font-size: 22px;
    letter-spacing: -1px;
    color: #404453;
    font-weight: 300;
}

.single-content-section .content li {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #404453;
    font-weight: 300;
    margin-bottom: 10px;
}

.single-content-section .content ul {
    margin-top: 30px;
}

.single-content-section .content ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.single-content-section .content ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 3px;
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/aisb-knowledge-networks/assets/images/star.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.single-page-footer {
    margin-top: 60px;
    background-color: #2a528d;
    display: inline-flex;
    padding: 30px;
    flex-flow: nowrap;
    gap: 40px;
    align-items: center;
    border-radius: 15px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
}

.connect-text {
    width: 75%;
}

.request-speaker-btn {
    width: 25%;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 20px;
}

.connect-text p {
    margin: 0;
}

.request-speaker-btn a {
    text-decoration: none;
    color: #000;
}

li.social-sharing-icon-li::before {
    content: '';
    display: none;
}

.page-id-21 .contact-form .submit-btn {
    width: 45%;
    margin-left: 30%;
}

div#speaker-footer-image-speaker {
    right: 60px;
}

div#speaker-footer-image-speaker img {
    max-width: initial;
}

div#speaker-listing-header-section {
    position: relative;
    overflow: hidden;
}

/* LEFT waveform */
div#speaker-listing-header-section::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    
    width: 25%;
    height: 80%;
    
    background-image: url('assets/images/hero-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    
    pointer-events: none;
}

/* RIGHT waveform */
div#speaker-listing-header-section::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 0;
    transform: translateY(-50%);
    
    width: 25%;
    height: 80%;
    
    background-image: url('assets/images/hero-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    
    pointer-events: none;
}

/* Speaker Filters Dropdown Styling */
.speaker-filters .filter-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 25px;
    cursor: pointer;
}

/* Speaker Filters Dropdown Options Styling */
.speaker-filters .filter-select option {
    background: #2a528d;
    color: white;
    padding: 10px;
    font-size: 20px;
    font-weight: 400;
}

.speaker-filters .filter-select option:hover,
.speaker-filters .filter-select option:checked {
    background: #1a365d;
    color: white;
}





/* Speaker Category Archive Styling */
.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-size: 63px;
    color: #2a548c;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.category-description {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #2e2b2b;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Speaker cards in grid layout */
.speakers-grid .speaker-card {
    padding: 0;
}

.speakers-grid .speaker-card-inner {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speakers-grid .speaker-image {
    position: relative;
    height: auto;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.speakers-grid .speaker-photo {
    width: 100%;
    height: 100%;
}

.speakers-grid .speaker-info {
    padding: 25px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speakers-grid .speaker-name-wrapper {
    margin-bottom: 15px;
}

.speakers-grid .speaker-name {
    font-size: 26px;
    line-height: 31px;
    color: #2a548c;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.speakers-grid .featured-badge,
.speakers-grid .verified-badge {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.speakers-grid .speaker-designation {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 26px;
    color: #2a548c;
    font-weight: 300;
}

.speakers-grid .speaker-expertise {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
    color: #2a548c;
    font-weight: 400;
}

.speakers-grid .expertise-tag {
    display: inline-block;
    background: #e4e2dd;
    padding: 8px 16px;
    border-radius: 10px;
    margin-right: 5px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 22px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
}

.speakers-grid .speaker-region,
.speakers-grid .speaker-format {
    margin-bottom: 12px;
    width: 100%;
    height: 23px;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 23px;
    color: #2e2b2b;
    font-weight: 400;
}

.speakers-grid .region-label,
.speakers-grid .format-label {
    font-weight: 400;
    color: #2a528d;
}

.speakers-grid .speaker-list-actions {
    margin-top: auto;
    padding-top: 25px;
}

.speakers-grid .view-profile-btn {
    display: inline-block;
    background: #2a528d;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 24px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
}

.speakers-grid .view-profile-btn:hover {
    background: #1a365d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 84, 140, 0.3);
}

/* Pagination and Load More */
.pagination-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.load-more-btn {
    background: #2a528d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 84, 140, 0.3);
}

.pagination-info {
    font-size: 18px;
    color: #2e2b2b;
    font-weight: 300;
}

.showing-count {
    color: #2a548c;
    font-weight: 400;
}

.no-speakers-found {
    text-align: center;
    padding: 60px 20px;
    font-size: 25px;
    color: #2e2b2b;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .category-title {
        font-size: 48px;
    }
    
    .category-description {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-title {
        font-size: 36px;
    }
    
    .load-more-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
}

.taxonomy-footer-section {
    background-color: #2a528d;
    padding: 20px 30px;
    border-radius: 20px;
    color: #ffffff;
    display: inline-flex;
    width: 100%;
    position: relative;
}

.right-content-section {
    width: 30%;
    position: absolute;
    right: 60px;
    bottom: 0;
}

p.right-choice-text {
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
}

p.connect-with-team {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 300;
}

.left-content-section {
    width: 70%;
}

button.request-speaker-btn {
    width: fit-content;
    margin-top: 15px;
    margin-bottom: 10px;
    border: none;
}

button.request-speaker-btn a {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}



/* Speakers Single Page CSS */
.speaker-header-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.speaker-image-section {
    width: 50%;
}

.speaker-info-section {
    width: 50%;
}

.speaker-image-section img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.speaker-header {margin-bottom: 90px;}

.featured-label {
    font-size: 18px;
    line-height: 22px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    padding: 10px;
    background-color: #f68522;
    border-radius: 5px;
    margin-bottom: 20px;
}

h1.speaker-name {
    font-size: 40px;
    line-height: 48px;
    color: #2a548c;
    font-weight: 600;
    margin: 0;
}

.speaker-name-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.single-speaker-designation {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 31px;
    color: #2a548c;
    font-weight: 300;
    margin-bottom: 20px;
}

.single-speaker-expertise {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
    color: #2a548c;
    font-weight: 400;
}

.expertise-tag {
    display: inline-block;
    background: #e4e2dd;
    padding: 8px 16px;
    border-radius: 10px;
    margin-right: 5px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 22px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
}

.single-speaker-format, .single-speaker-location {
    color: #2e2b2b;
    margin-bottom: 10px;
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 31px;
    font-weight: 300;
}

span.speaker-location-label {
    color: #2a528d;
    font-weight: 400;
}

.single-speaker-actions {
    font-size: 24px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #2a528d;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

button.book-speaker-btn {
    border: none;
    background: transparent;
}

.single-speaker-actions a {
    color: #fff;
    text-decoration: none;
}

.speaker-content-wrapper {
    margin: 0 -80px;
    background-color: #f4f1ea;
}

.speaker-bio-section {
    padding: 80px;
    text-align: center;
}

.speaker-bio-section {
    padding: 80px;
    text-align: center;
}

.speaker-bio-section h2.section-title {
    font-size: 63px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
    margin-bottom: 35px;
}

.speaker-bio-section .speaker-bio {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #2e2b2b;
    font-weight: 300;
    text-align: center;
}

.speaker-what-to-expect {
    background-color: #102148;
    padding: 80px;
}

.speaker-what-to-expect-title h2 {
    font-size: 63px;
    line-height: 82px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.speaker-what-to-expect-title p.sub-title {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 300;
    font-family: "Poppins";
    text-align: center;
}

.speaker-what-to-expect-title {
    margin-bottom: 40px;
}

.what-to-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-to-expect-item {
    background-color: #0a1429;
    padding: 30px;
    border-radius: 15px;
}

.what-to-expect-item h3 {
    font-size: 24px;
    line-height: 31px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.what-to-expect-item span.session-duration {
    font-weight: 400;
}

.what-to-expect-item span.underline {
    display: inline-block;
    width: 20%;
    border: 2px solid #f58523;
    margin-bottom: 20px;
}

.what-to-expect-item p {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 23px;
    color: #ffffff;
    font-weight: 300;
}

.speaker-speaking-topics {
    padding: 80px;
    background-color: #fff;
    display: flex;
    gap: 30px;
    align-items: center;
}

.speaking-topic-left-section {
    padding: 30px;
    background-color: #2a528d;
    border-radius: 15px;
    width: 40%;
}

.speaking-topic-description p {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
}

.speaking-topic-right-section {
    font-size: 34px;
    line-height: 44px;
    color: #000000;
    font-weight: 400;
}

.speaking-topic-right-section ul li {
    list-style: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
}

.speaking-topic-title h2 {
    font-size: 63px;
    line-height: 82px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 40px;
}

.speaking-topic-right-section ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/aisb-knowledge-networks/assets/images/star.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.speaker-credentials-affiliation {
    background-color: #f4f1ea;
    padding: 80px;
}

.speaker-credentials-affiliation-title h2 {
    line-height: 82px;
    font-size: 63px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.speaker-credentials-affiliation-title {
    margin-bottom: 40px;
}

.credential-item p {
    font-size: 20px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

.credential-item {
    border: 1px solid #000000;
    padding: 30px;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.past-speaking-engagements {
    padding-top: 0;
}

.contact-speaker-section {
    padding: 80px 0;
    padding-bottom: 0;
}

.contact-speaker-section h5 {
    font-size: 40px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #2a528d;
    font-weight: 200;
    text-align: center;
    margin-bottom: 25px;
}

.contact-speaker-section h2 {
    font-size: 63px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
    margin-bottom: 45px;
}

.contact-speaker-section p {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #2e2b2b;
    font-weight: 300;
    text-align: center;
}

.contact-form-section {
    background-color: #2a528d;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    margin-top: 60px;
}

.contact-form-section .contact-form label {
    text-align: left;
}

.contact-form-section .contact-form .submit-btn {
    margin-left: 10%
}

.contact-form-section input#speaker_name {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    font-family: 'Poppins';
}

.footer-content .row {
    flex-direction: row;
}

.privacy-policy-title {
    text-align: center;
}

.privacy-policy-title h1 {
    font-size: 63px;
    color: #2a548c;
    font-weight: 400;
    text-align: center;
}

.privacy-policy-content {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 36px;
    color: #2e2b2b;
    font-weight: 300;
    margin-top: 40px;
}

.privacy-policy-content ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.privacy-policy-content ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 5px;
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/aisb-knowledge-networks/assets/images/star.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.privacy-policy-content img {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
}

.privacy-policy-content ul {
    margin: 30px 0;
}

.privacy-policy-content p {
    margin: 20px 0;
}

.browse-all-speakers {
    margin-top: 60px;
    text-align: center;
}

.browse-all-speakers a {
    font-size: 24px;
    line-height: 29px;
    color: #2a528d;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    border: 1px solid #2a528d;
    padding: 10px 20px;
}

.about-us-partner-item-inner { display: flex; align-items: center; justify-content: center; }

.speaker-action:hover {
    background-color: #fff;
    border: 1px solid #2a528d;
}

.speaker-action:hover a {
    color: #2a528d; /* change to whatever color you want */
}

.category-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background-color: #fff;
    border: 1px solid #2a528d;
    transform: translateY(-5px); /* subtle lift */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

button#search-button:hover {
    background: #2A528D;
    color: #fff;
    border: 1px solid #fff;
}

a.read-more-btn:hover {
    background-color: #fff;
    color: #2a548c;
    border: 1px solid #2a548c;
}

button.request-speaker-btn:hover {
    background-color: #f58523;
}

.single-speaker-format, .single-speaker-location { 
    font-size: 21px !important;
}

/* Hover effect */
.single-speaker-actions:hover {
    background-color: #fff;
    border: 1px solid #2a528d;
}

.single-speaker-actions:hover a {
    color: #2a528d;
}

.contact-form .submit-btn:hover {
    background: #e06f10;
    color: #000;
}

a.browse-all-speakers-link:hover {
    background-color: #2a528d;
    color: #fff;
}

/* Hover background */
.read-more-blogs:hover {
    background-color: #2a528d;
}

/* Change text color on hover */
.read-more-blogs:hover a {
    color: #ffffff;
}

.privacy-policy-content strong {
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
    display: block;
}

.header-cta .join-as-speaker {
    background-color: #2A548C;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    text-align: center;
}

.header-cta .join-as-speaker:hover {
    background-color: #1c4275;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgb(13 110 253 / 40%);
}

.single-content-section .content h2, .single-content-section .content h3, .single-content-section .content h4, .single-content-section .content h5, .single-content-section .content h6 { text-align: left;}

.content a { text-decoration: none; }
/* ========================================
   Join AISB Grid Section Hover Effects
   ======================================== */

.join-aisb-grid-section a {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-aisb-grid-section a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.join-aisb-grid-section a:hover::before {
    left: 100%;
}

.join-aisb-grid-section a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
}

.join-aisb-grid-section a:hover .e-paragraph-base,
.join-aisb-grid-section a:hover .e-heading-base {
    color: #fff;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.join-aisb-grid-section a:hover .e-heading-base {
    font-weight: 600;
}

/* Ensure smooth transitions for all child elements */
.join-aisb-grid-section a > div {
    transition: all 0.3s ease;
}

.join-aisb-grid-section a:hover > div {
    transform: translateY(-2px);
}
