/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Global Color Scheme: Teal, Peach, Burgundy */
    --primary-color: #008080; /* Dark Teal */
    --secondary-color: #FFCBA4; /* Peach */
    --accent-color: #800020; /* Burgundy */
    --teal-color: #008080; /* Dark Teal */
    --peach-color: #FFCBA4;
    --burgundy-color: #800020;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --hover-color: #1a1a1a;
    --header-bg: #00bda1; /* Teal header background */
    --orange-color: #FFCBA4;
    --green-color: #008080; /* Dark Teal */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--orange-color);
    outline-offset: 2px;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--orange-color);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--orange-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.search-input {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 4px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Header */
.header {
    background: #00bda1 !important;
    background-color: #00bda1 !important;
    position: relative !important;
    z-index: 100;
    width: 100%;
}

.header-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 101;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo-section:focus {
    outline: 2px solid var(--orange-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line-1 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-line-2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 2px;
}

.logo-line-3 {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 1.5px;
}

/* Header Dividers */
.header-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Sponsors Section */
.sponsors-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.sponsors-label {
    font-size: 11px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 400px;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-box {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.sponsor-logo-box.hsbc {
    background: #DA020E;
    color: var(--primary-color);
}

.sponsor-logo-box.moodys {
    background: transparent;
    color: var(--secondary-color);
}

.sponsor-logo-box.moodys::first-letter {
    color: #FFD700;
}

.sponsor-logo-box.jpmorgan {
    background: transparent;
    color: var(--secondary-color);
}

.sponsor-logo-box.ebay {
    background: transparent;
    color: var(--secondary-color);
    font-weight: 700;
}

.sponsor-logo-box.ebay span:nth-of-type(1) {
    color: #0064D2;
}

.sponsor-logo-box.ebay span:nth-of-type(2) {
    color: #E53238;
}

.sponsor-logo-box.ebay span:nth-of-type(3) {
    color: #F5AF02;
}

.sponsor-logo-box.ebay span:nth-of-type(4) {
    color: #86B817;
}

/* Date Section */
.date-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    text-align: right;
}

.event-date {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.event-location {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 4px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
}

.countdown-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px;
    min-width: 40px;
    flex-shrink: 0;
}

.countdown-number {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 9px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 600;
}

.countdown-separator {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.8;
    margin: 0 -2px;
    display: inline-block !important;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .countdown-timer {
        gap: 4px;
        padding: 6px 10px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
    
    .countdown-label {
        font-size: 8px;
    }
    
    .countdown-separator {
        font-size: 14px;
    }
    
    .countdown-item {
        min-width: 35px;
    }
}

@media (max-width: 767px) {
    .countdown-timer {
        gap: 3px;
        padding: 5px 8px;
        margin-top: 8px;
    }
    
    .countdown-number {
        font-size: 16px;
    }
    
    .countdown-label {
        font-size: 7px;
    }
    
    .countdown-separator {
        font-size: 12px;
        margin: 0 -3px;
    }
    
    .countdown-item {
        min-width: 30px;
    }
}

/* Navigation */
.main-nav {
    background: var(--header-bg);
    display: block;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav.active {
    display: block;
}

.nav-menu {
    list-style: none;
    padding: 0 40px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nav-menu > li {
    border-bottom: none;
    position: relative;
    margin-right: 30px;
}

.nav-menu > li:last-child,
.nav-menu > li.nav-actions {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    gap: 15px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 0;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--orange-color);
}

.nav-home {
    color: var(--orange-color) !important;
}

.nav-home svg {
    width: 20px;
    height: 20px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
    background: var(--bg-light);
}

.has-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a {
    padding: 12px 0;
    font-weight: 400;
    font-size: 14px;
}

.submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
    background: #f0f0f0;
}

.has-submenu.active .submenu {
    display: block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--hover-color);
    color: var(--secondary-color);
}

.btn-sponsor {
    background: var(--green-color) !important;
    color: var(--secondary-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.btn-sponsor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-sponsor:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    color: var(--secondary-color) !important;
}

.btn-sponsor:hover::before {
    width: 300px;
    height: 300px;
}

.btn-sponsor:active {
    transform: translateY(0);
}

.btn-pre-register {
    background: var(--orange-color) !important;
    color: var(--secondary-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-pre-register::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pre-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: var(--secondary-color) !important;
}

.btn-pre-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pre-register:active {
    transform: translateY(0);
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Section */
.video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

.video-section .row-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.row-bg-wrap {
    position: relative;
    width: 100%;
}

.inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.row-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Standalone background wrapper (not inside video section) */
.video-section + .row-bg-wrap {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    z-index: auto;
}

.video-section + .row-bg-wrap .inner-wrap {
    position: relative;
    width: 100%;
    height: auto;
}

.video-section + .row-bg-wrap .row-bg-layer {
    position: relative;
    width: 100%;
    height: auto;
}

.video-section + .row-bg-wrap .row-bg.using-bg-color {
    min-height: 50px;
    padding: 0;
}

.section-heading {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    color: #FFCBA4;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
}

.vc_custom_heading {
    margin-bottom: 0.625rem;
    margin-top: 0;
}

.video-section + .row-bg-wrap .section-heading {
    color: #FFCBA4;
}

.dark {
    color: var(--text-color);
}

.no-extra-padding {
    padding: 0;
}

.force-desktop-text-align-center {
    text-align: center;
}

.row-bg.viewport-desktop {
    width: 100%;
    height: 100%;
}

.row-bg.using-bg-color {
    width: 100%;
    height: 100%;
    display: block;
}

.nectar-video-wrap {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    z-index: 2;
    background: var(--primary-color);
}

.nectar-video-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nectar-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    visibility: visible;
    opacity: 1;
    background: var(--primary-color);
}

.nectar-video-bg.translate {
    transform: translate3d(0, 0, 0);
}

/* Column wrapper below video and in background wrapper */
.video-section .row_col_wrap_12 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    pointer-events: none;
}

.row_col_wrap_12 {
    position: relative;
    width: 100%;
}

.video-section + .row-bg-wrap .row_col_wrap_12 {
    position: relative;
    z-index: 2;
}

.col.span_12 {
    width: 100%;
}

.light {
    color: var(--secondary-color);
}

.center,
.centered-text {
    text-align: center;
}

.vc_col-sm-12 {
    width: 100%;
}

.wpb_column {
    position: relative;
}

.column_container {
    padding: 0;
}

.padding-8-percent {
    padding: 8% 0;
}

.vc_column-inner {
    position: relative;
}

.wpb_wrapper {
    width: 100%;
}

.divider-wrap {
    width: 100%;
}

.divider {
    width: 100%;
    display: block;
}

/* Animation classes */
.animated-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Content Section (White Background) */
.hero-content-section {
    position: relative;
    width: 100%;
    padding: 5% 0;
}

.hero-content-section .row-bg-wrap {
    position: relative;
}

.hero-content-section .row_col_wrap_12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.hero-content-section .vc_col-sm-8 {
    width: 66.666%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-content-section .vc_col-sm-2 {
    width: 16.666%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-content-section .row_col_wrap_12::after {
    content: "";
    display: table;
    clear: both;
}

.nectar-highlighted-text {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6716;
}

.hero-description {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1b203e;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #1b203e;
}

/* Stream Focuses Section */
.stream-focuses-section {
    position: relative;
    width: 100%;
    padding: 2% 0;
}

.stream-focuses-section .row-bg-wrap {
    position: relative;
}

.stream-focuses-section .row_col_wrap_12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stream-focuses-section .vc_col-sm-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.nectar-split-heading {
    margin-bottom: 40px;
}

.nectar-split-heading h4 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stream-card {
    text-align: center;
    padding: 20px;
}

.stream-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.stream-card h5 span {
    color: #ffffff;
}

/* Hero Section (Old - can be removed if not needed) */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--secondary-color);
    padding: 80px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-description {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Old stream-focuses styles removed - now using stream-focuses-section */

/* Speakers Section */
.speakers-section {
    position: relative;
    width: 100%;
    padding: 4% 0;
}

.speakers-section .row-bg-wrap {
    position: relative;
}

.speakers-section .row_col_wrap_12 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.speakers-section .nectar-split-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.speakers-note-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 4%;
}

.speakers-note-row .vc_col-sm-2,
.speakers-note-row .vc_col-sm-8 {
    padding: 0 15px;
    box-sizing: border-box;
}

.speakers-note-row .vc_col-sm-2 {
    width: 16.666%;
}

.speakers-note-row .vc_col-sm-8 {
    width: 66.666%;
}

.speakers-note-row h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* WiFAI-style Speakers Grid */
.speakers-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.speakers-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.speakers-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.speakers-section-description {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legacy styles - only for speakers-grid-new (homepage) */
.speakers-grid-new .speaker-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.speakers-grid-new .speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.speaker-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.speaker-image-wrapper.image-error {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(255, 203, 164, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-image-wrapper.image-error::after {
    content: '👤';
    font-size: 80px;
    opacity: 0.3;
}

.speaker-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Legacy speaker-name - only for speakers-grid-new */
.speakers-grid-new .speaker-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.speaker-org {
    font-size: 15px;
    color: #666666;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-weight: 500;
}

.speaker-title {
    font-size: 14px;
    color: #888888;
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.speaker-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease, gap 0.3s ease;
    margin-top: auto;
}

.speaker-profile-link:hover {
    color: var(--burgundy-color);
    gap: 12px;
}

.speaker-profile-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.speaker-profile-link:hover i {
    transform: translateX(4px);
}

/* WiFAI Speakers Page Styles - Exact Copy */
.speakers-page {
  background: #eaf3fb;
  padding: 34px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(10,30,60,0.06);
  max-width: 1200px;
  margin: 0 auto;
}
.speakers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.speakers-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 28px;
  letter-spacing: 0.3px;
  margin: 0;
  color: #17324b;
}

/* search */
.speakers-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.speakers-search input[type="search"] {
  width: 260px;
  max-width: 40vw;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.speakers-search button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

/* Grid layout: responsive, fills columns and avoids single column on mobile */
.speakers-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: start;
}

/* Card styling & hover animation - WiFAI Style */
.speakers-page .speaker-card,
.speakers-grid .speaker-card {
  background: #fff !important;
  padding: 24px 18px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 8px rgba(10,30,60,0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  height: auto !important;
  position: relative !important;
}

/* Different hover animations for each card */
.speakers-page .speaker-card:nth-child(1):hover,
.speakers-grid .speaker-card:nth-child(1):hover {
  transform: translateY(-8px) rotate(1deg) scale(1.03) !important;
  box-shadow: 0 12px 32px rgba(10,30,60,0.15) !important;
}

.speakers-page .speaker-card:nth-child(2):hover,
.speakers-grid .speaker-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(-1deg) scale(1.03) !important;
  box-shadow: 0 12px 32px rgba(10,30,60,0.15) !important;
}

.speakers-page .speaker-card:nth-child(3):hover,
.speakers-grid .speaker-card:nth-child(3):hover {
  transform: translateY(-10px) scale(1.04) !important;
  box-shadow: 0 16px 40px rgba(10,30,60,0.18) !important;
}

.speakers-page .speaker-card:nth-child(4):hover,
.speakers-grid .speaker-card:nth-child(4):hover {
  transform: translateY(-8px) rotate(0.5deg) scale(1.02) !important;
  box-shadow: 0 14px 36px rgba(10,30,60,0.16) !important;
}

.speakers-page .speaker-card:nth-child(5):hover,
.speakers-grid .speaker-card:nth-child(5):hover {
  transform: translateY(-8px) rotate(-0.5deg) scale(1.02) !important;
  box-shadow: 0 14px 36px rgba(10,30,60,0.16) !important;
}

.speakers-page .speaker-card:nth-child(6):hover,
.speakers-grid .speaker-card:nth-child(6):hover {
  transform: translateY(-10px) rotate(1.5deg) scale(1.05) !important;
  box-shadow: 0 18px 44px rgba(10,30,60,0.2) !important;
}

.speakers-page .speaker-card:nth-child(7):hover,
.speakers-grid .speaker-card:nth-child(7):hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.03) !important;
  box-shadow: 0 12px 32px rgba(10,30,60,0.15) !important;
}

.speakers-page .speaker-card:nth-child(8):hover,
.speakers-grid .speaker-card:nth-child(8):hover {
  transform: translateY(-9px) scale(1.04) !important;
  box-shadow: 0 15px 38px rgba(10,30,60,0.17) !important;
}

/* Pattern repeats for remaining cards */
.speakers-page .speaker-card:nth-child(odd):hover,
.speakers-grid .speaker-card:nth-child(odd):hover {
  transform: translateY(-8px) rotate(0.5deg) scale(1.03) !important;
  box-shadow: 0 12px 32px rgba(10,30,60,0.15) !important;
}

.speakers-page .speaker-card:nth-child(even):hover,
.speakers-grid .speaker-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(-0.5deg) scale(1.03) !important;
  box-shadow: 0 12px 32px rgba(10,30,60,0.15) !important;
}

/* Circle photo: fixed diameter for all cards - WiFAI Style */
.speakers-page .speaker-photo-wrap,
.speakers-grid .speaker-photo-wrap {
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  background: #f1f6fa !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Different photo animations on hover */
.speakers-page .speaker-card:nth-child(1):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(1):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(5deg) !important;
}

.speakers-page .speaker-card:nth-child(2):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(2):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(-5deg) !important;
}

.speakers-page .speaker-card:nth-child(3):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(3):hover .speaker-photo-wrap {
  transform: scale(1.15) !important;
}

.speakers-page .speaker-card:nth-child(4):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(4):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(3deg) !important;
}

.speakers-page .speaker-card:nth-child(5):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(5):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(-3deg) !important;
}

.speakers-page .speaker-card:nth-child(6):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(6):hover .speaker-photo-wrap {
  transform: scale(1.12) rotate(7deg) !important;
}

.speakers-page .speaker-card:nth-child(7):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(7):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(-7deg) !important;
}

.speakers-page .speaker-card:nth-child(8):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(8):hover .speaker-photo-wrap {
  transform: scale(1.13) !important;
}

/* Pattern for remaining cards */
.speakers-page .speaker-card:nth-child(odd):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(odd):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(3deg) !important;
}

.speakers-page .speaker-card:nth-child(even):hover .speaker-photo-wrap,
.speakers-grid .speaker-card:nth-child(even):hover .speaker-photo-wrap {
  transform: scale(1.1) rotate(-3deg) !important;
}

.speakers-page .speaker-photo,
.speakers-grid .speaker-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 50% !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease !important;
}

.speakers-page .speaker-card:hover .speaker-photo,
.speakers-grid .speaker-card:hover .speaker-photo {
  filter: saturate(1.1) brightness(1.05) !important;
}

/* Speaker body - contains all text info - WiFAI Style */
.speakers-page .speaker-body,
.speakers-grid .speaker-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  flex-grow: 1 !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Subtle text animation on hover */
.speakers-page .speaker-card:hover .speaker-body,
.speakers-grid .speaker-card:hover .speaker-body {
  transform: translateY(-2px) !important;
}

/* Text inside card - WiFAI Style */
.speakers-page .speaker-name,
.speakers-grid .speaker-name {
  font-weight: 700 !important;
  margin: 6px 0 2px !important;
  color: #14324a !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  text-align: center !important;
}
.speakers-page .speaker-role,
.speakers-grid .speaker-role {
  color: #2f5870 !important;
  font-size: 13px !important;
  margin: 0 0 8px !important;
  min-height: 1.6em !important;
  text-align: center !important;
  line-height: 1.4 !important;
}
.speakers-page .speaker-excerpt,
.speakers-grid .speaker-excerpt {
  font-size: 13px !important;
  color: #556b78 !important;
  margin-bottom: 10px !important;
  line-height: 1.25 !important;
  max-height: 3.75em !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
}
.speakers-page .speaker-link,
.speakers-grid .speaker-link {
  font-size: 13px !important;
  color: #1976d2 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 8px !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  background: rgba(25, 118, 210, 0.05) !important;
}

.speakers-page .speaker-card:hover .speaker-link,
.speakers-grid .speaker-card:hover .speaker-link {
  color: #1565c0 !important;
  gap: 8px !important;
  background: rgba(25, 118, 210, 0.1) !important;
  transform: translateY(-2px) !important;
}

.speakers-page .speaker-link i,
.speakers-grid .speaker-link i {
  font-size: 11px !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.speakers-page .speaker-card:hover .speaker-link i,
.speakers-grid .speaker-card:hover .speaker-link i {
  transform: translateX(4px) !important;
}

/* No results message */
.no-results {
  text-align: center;
  padding: 18px;
  color: #4a5560;
}

/* Responsive rules: make sure mobile shows two columns (not only one) */
@media (max-width: 700px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speakers-search input[type="search"] { width: 160px; }
}
/* Very small screens: slightly smaller circle */
@media (max-width: 380px) {
  .speaker-photo-wrap { width: 80px; height: 80px; }
}

/* Optional: make sure long names wrap nicely */
.speaker-name,
.speaker-role { word-break: break-word; }

/* Legacy speakers-grid for homepage compatibility */
.speakers-grid-legacy {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 2%;
    width: 100%;
    max-width: 100%;
}

.speakers-grid::after {
    content: "";
    display: none;
}

.speakers-grid .vc_col-sm-3 {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 0;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-image {
    width: 100%;
    height: 350px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: 16px;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.team-member-image.image-error {
    background-image: none !important;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(255, 203, 164, 0.1) 100%);
}

.team-member-image.image-error::after {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
    z-index: 1;
}

.team-member:hover .team-member-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.team-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.team-member:hover .team-meta {
    transform: translateY(0);
}

.team-meta h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.speaker-org {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0;
    opacity: 0.9;
}

.speaker-linkedin {
    display: inline-block;
    margin-top: 10px;
    color: #FFCBA4;
    font-size: 20px;
    transition: color 0.3s ease;
}

.speaker-linkedin:hover {
    color: #008080;
}

.team-member a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.speakers-actions-row {
    display: flex;
    flex-wrap: wrap;
    padding: 2% 0;
    gap: 0;
}

.speakers-actions-row .vc_col-sm-6 {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.nectar-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nectar-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nectar-button:hover::after {
    width: 400px;
    height: 400px;
}

.nectar-button.accent-color {
    background: #ff6716;
    color: #ffffff;
}

.nectar-button.accent-color:hover {
    background: #e55a2b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 22, 0.4);
}

.nectar-button.accent-color:active {
    transform: translateY(0);
}

.nectar-button.extra-color-1 {
    background: #1b203e;
    color: #ffffff;
}

.nectar-button.extra-color-1:hover {
    background: #2a3458;
    color: #ffffff;
}

.nectar-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

.nectar-button span {
    display: inline-block;
}

/* Old speakers styles - can be removed */
.speakers {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Anchor Events Section */
.anchor-events-section {
    position: relative;
    width: 100%;
    padding: 5% 0;
}

.anchor-events-section .row-bg-wrap {
    position: relative;
}

.anchor-events-section .row_col_wrap_12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.anchor-events-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.anchor-events-header .vc_col-sm-3,
.anchor-events-header .vc_col-sm-6 {
    padding: 0 15px;
    box-sizing: border-box;
}

.anchor-events-header .vc_col-sm-6 {
    width: 50%;
}

.anchor-events-header .vc_col-sm-3 {
    width: 25%;
}

.anchor-events-section .nectar-split-heading h2 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.events-fancy-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.events-fancy-grid .vc_col-sm-4 {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* Nectar Fancy Box Styles */
.nectar-fancy-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 100%;
    min-height: 400px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.nectar-fancy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 103, 22, 0.1) 0%, rgba(255, 103, 22, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.nectar-fancy-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 103, 22, 0.3);
    border-color: rgba(255, 103, 22, 0.5);
}

.nectar-fancy-box:hover::before {
    opacity: 1;
}

.nectar-fancy-box.using-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s ease;
    z-index: 1;
    will-change: transform;
    filter: brightness(0.85) contrast(1.1);
}

.nectar-fancy-box[data-bg-animation="long_zoom"]:hover .box-bg {
    transform: scale(1.2) rotate(1deg);
    filter: brightness(1.1) contrast(1.2);
}

.nectar-fancy-box .inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    transition: background 0.4s ease, padding 0.4s ease;
}

.nectar-fancy-box:hover .inner {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(255, 103, 22, 0.1) 30%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
    padding: 35px;
}

.heading-wrap {
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.4s ease,
                filter 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nectar-fancy-box:hover .heading-wrap {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.im-icon-wrap {
    display: inline-block;
    margin-bottom: 10px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.nectar-fancy-box:hover .im-icon-wrap {
    transform: scale(1.25) rotate(5deg);
}

.im-icon-wrap svg {
    width: 50px;
    height: 50px;
    transition: filter 0.4s ease,
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 0 rgba(255, 103, 22, 0));
}

.nectar-fancy-box:hover .im-icon-wrap svg {
    filter: drop-shadow(0 0 15px rgba(255, 103, 22, 1)) 
            drop-shadow(0 0 25px rgba(255, 103, 22, 0.6));
    transform: scale(1.1);
}

.heading-wrap h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease,
                text-shadow 0.4s ease,
                font-weight 0.3s ease;
}

.nectar-fancy-box:hover .heading-wrap h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 103, 22, 0.5),
                 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.heading-wrap h3 strong {
    font-weight: 700;
}

.hover-content {
    font-size: 16px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nectar-fancy-box:hover .hover-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 100px;
    padding-top: 10px;
    color: #ff6716;
    font-weight: 600;
}

.box-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-indent: -9999px;
}

/* Background image loading */
.box-bg[data-nectar-img-src] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>');
}

/* Load actual image */
.box-bg[data-nectar-img-src]:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: attr(data-nectar-img-src url);
    background-size: cover;
    background-position: center;
}

/* Fallback for browsers that don't support attr() in CSS */
.box-bg {
    background-image: var(--bg-image);
}

/* Legacy event card styles (kept for compatibility) */
.anchor-events {
    padding: 100px 0;
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    text-align: center;
}

.event-date .day {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-date .date {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin: 5px 0;
}

.event-date .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.3;
}

.event-time,
.event-badge {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.event-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

/* Sponsors Section */
.sponsors-section {
    position: relative;
    width: 100%;
}

.sponsors-section .row-bg-wrap {
    position: relative;
}

.sponsors-section .row_col_wrap_12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sponsors-section .nectar-split-heading {
    margin-bottom: 40px;
}

.sponsors-section .nectar-split-heading h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 28.08px;
    color: var(--text-color);
    margin: 0 auto;
    text-align: center;
}

.carousel-wrap {
    width: 100%;
    margin-bottom: 40px;
}

.carousel.clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.carousel.clients.six-cols .no-link {
    flex: 0 0 calc(16.666% - 33.33px);
    max-width: calc(16.666% - 33.33px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.carousel.clients .no-link img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel.clients .no-link:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.sponsors-section .nectar-button {
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 300px;
}

/* Women In Agric Business Show Banner Section */
.ukbbs-banner-section {
    position: relative;
    width: 100%;
}

.ukbbs-banner-section .row-bg-wrap {
    position: relative;
}

.ukbbs-banner-section .row_col_wrap_12 {
    width: 100%;
    padding: 0;
}

.img-with-aniamtion-wrap {
    width: 100%;
    text-align: center;
}

.img-with-aniamtion-wrap.center {
    margin: 0 auto;
}

.img-with-aniamtion-wrap .inner {
    width: 100%;
    display: inline-block;
}

.hover-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hover-wrap-inner {
    width: 100%;
}

.hover-wrap-inner a {
    display: block;
    width: 100%;
}

.hover-wrap-inner img {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
}

/* As Seen On Section */
.as-seen-on-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.as-seen-on-section .row-bg-wrap {
    position: relative;
}

.as-seen-on-section .row_col_wrap_12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.nectar-shape-divider-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.nectar-shape-divider {
    width: 100%;
    height: 100%;
    display: block;
}

.as-seen-on-section .nectar-split-heading {
    margin-bottom: 40px;
}

.as-seen-on-section .nectar-split-heading h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 28.08px;
    color: var(--text-color);
    margin: 0 auto;
    text-align: center;
}

.as-seen-on-section .carousel-wrap {
    margin-bottom: 0;
}

.as-seen-on-section .carousel.clients.six-cols .no-link {
    flex: 0 0 calc(20% - 32px);
    max-width: calc(20% - 32px);
}

/* Legacy sponsor styles (kept for compatibility) */
.sponsors {
    padding: 100px 0;
    background: var(--secondary-color);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 10px;
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.8;
    transition: all 0.3s;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 4px;
}

.sponsor-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.btn-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* As Seen On Section */
.as-seen-on {
    padding: 80px 0;
    background: var(--bg-light);
}

.as-seen-on .section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

/* Footer */
#footer-outer {
    background: #000000;
    color: var(--secondary-color);
    width: 100%;
    position: relative;
}

#footer-widgets {
    padding: 60px 0 40px;
    background: #000000;
}

#footer-widgets .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer-widgets .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
    justify-content: center;
}

#footer-widgets .col.span_3 {
    width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-widgets .col.span_3:first-child {
    display: none;
}

#footer-widgets .col.span_3:not(:first-child) {
    width: calc(33.333% - 30px);
    flex: 0 0 calc(33.333% - 30px);
}

#footer-widgets .widget {
    margin-bottom: 0;
    width: 100%;
}

#footer-widgets .widget_block {
    text-align: center;
    width: 100%;
}

#footer-widgets .wp-block-image {
    margin: 0 auto;
    display: block;
    text-align: center;
}

#footer-widgets .wp-block-image img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-width: 252px;
    max-height: 252px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

#footer-widgets .wp-block-image img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

#footer-widgets .wp-block-image.aligncenter {
    text-align: center;
    margin: 0 auto;
}

#footer-widgets .wp-block-image.size-full {
    width: 100%;
}

#footer-widgets .wp-block-image a {
    display: block;
    text-align: center;
}

#footer-widgets figure {
    margin: 0;
    display: block;
    text-align: center;
}

#copyright {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

#copyright .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#copyright .copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

#copyright .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

#copyright .footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
    display: inline-block;
}

#copyright .footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

#copyright .copyright-text {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: var(--secondary-color);
    text-align: center;
    opacity: 0.9;
}

#copyright .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

#copyright .social li {
    margin: 0;
    display: inline-block;
}

#copyright .social a {
    color: var(--secondary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

#copyright .social a:hover {
    background: var(--orange-color);
    border-color: var(--orange-color);
    transform: translateY(-3px) scale(1.1);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

#copyright .social a:active {
    transform: translateY(-1px) scale(1.05);
}

#copyright .social a i {
    display: inline-block;
    transition: transform 0.3s ease;
}

#copyright .social a:hover i {
    transform: scale(1.1);
}

#copyright .social .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Font Awesome icon support - using Unicode fallbacks */
.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: inline-block;
}

.fa-twitter::before {
    content: "\f099";
}

.fa-facebook::before {
    content: "\f09a";
}

.fa-instagram::before {
    content: "\f16d";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-instagram:before {
    content: "\f16d";
}

/* Legacy footer styles (kept for compatibility) */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: var(--secondary-color);
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-wrapper {
        max-width: 1400px;
    }

    .nav-menu {
        padding: 0 30px;
    }

    .section-heading {
        font-size: 35px;
        padding: 50px 40px;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--header-bg);
        min-width: 250px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        padding: 10px 0;
        border-radius: 4px;
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a {
        padding: 12px 20px;
        color: var(--secondary-color);
    }

    .dropdown-menu a:hover {
        color: var(--orange-color);
    }

    .submenu {
        position: absolute;
        left: 100%;
        top: 0;
        background: var(--header-bg);
        min-width: 250px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .close-menu {
        display: none;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .hero-description {
        font-size: 28px;
    }

    .hero-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 48px;
    }

    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .speakers-grid .vc_col-sm-3 {
        width: 100%;
        margin-bottom: 0;
    }

    .speakers-note-row .vc_col-sm-2 {
        display: none;
    }

    .speakers-note-row .vc_col-sm-8 {
        width: 100%;
    }

    .speakers-actions-row .vc_col-sm-6 {
        width: 100%;
        margin-bottom: 15px;
    }

    .speakers-section .nectar-split-heading h2 {
        font-size: 32px;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 48px;
    }

    .stream-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-content-section .vc_col-sm-8 {
        width: 100%;
    }

    .hero-content-section .vc_col-sm-2 {
        display: none;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-heading {
        font-size: 40px;
        padding: 60px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Performance and Animation Improvements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive styles for WiFAI-style speakers */
@media (max-width: 1024px) {
    .speakers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }
    
    .speakers-section-title {
        font-size: 36px;
    }
    
    .speakers-section-description {
        font-size: 16px;
    }
    
    .speaker-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .speakers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .speakers-intro {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .speakers-section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .speakers-section-description {
        font-size: 15px;
    }
    
    .speaker-image-wrapper {
        height: 240px;
    }
    
    .speaker-info {
        padding: 20px;
    }
    
    .speaker-name {
        font-size: 18px;
    }
    
    .speaker-title {
        font-size: 14px;
    }
    
    .speaker-profile-link {
        font-size: 14px;
    }
    
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu > li {
        border-bottom: 1px solid var(--border-color);
        margin-right: 0;
        width: 100%;
    }

    .nav-menu > li:last-child {
        margin-left: 0;
    }

    .nav-menu > li > a {
        padding: 15px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .speakers,
    .anchor-events,
    .sponsors,
    .as-seen-on {
        padding: 60px 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .speakers-grid .vc_col-sm-3 {
        width: 100%;
        margin-bottom: 0;
        padding: 0 5px;
    }
    
    .team-member {
        margin-bottom: 15px;
    }
    
    .team-member-image {
        height: 280px;
        min-height: 280px;
        border-radius: 12px;
    }
    
    .team-member-image img {
        border-radius: 12px;
    }
    
    .team-meta {
        padding: 15px;
    }
    
    .team-meta h3 {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .speaker-org {
        font-size: 12px;
        margin: 5px 0;
    }
    
    .speaker-linkedin {
        font-size: 16px;
        margin-top: 5px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: space-around;
        min-width: auto;
    }

    /* Header Responsive */
    .header-top {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo-section {
        width: 100%;
        justify-content: center;
        order: 1;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-line-1 {
        font-size: 32px;
        font-weight: 900;
    }

    .logo-line-2 {
        font-size: 20px;
    }

    .logo-line-3 {
        font-size: 10px;
    }

    .header-divider {
        display: none;
    }

    .sponsors-section {
        width: 100%;
        order: 2;
        margin-top: 10px;
    }

    .sponsors-logos {
        max-width: 100%;
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }

    .date-section {
        width: 100%;
        order: 3;
        align-items: center;
        margin-top: 10px;
    }

    .event-date {
        font-size: 14px;
    }

    .event-location {
        font-size: 11px;
    }

    .nectar-video-wrap {
        height: 50vh;
        min-height: 400px;
    }

    .padding-8-percent {
        padding: 5% 0;
    }

    .section-heading {
        font-size: 28px;
        padding: 30px 20px;
        line-height: 1.4;
    }

    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-content-section {
        padding: 3% 0;
    }

    .stream-focuses-section {
        padding: 2% 0;
    }
    
    /* Anchor Events Responsive */
    .anchor-events-section {
        padding: 3% 0;
    }
    
    .anchor-events-section .nectar-split-heading h2 {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
    
    .events-fancy-grid .vc_col-sm-4 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .anchor-events-header .vc_col-sm-6 {
        width: 100%;
    }
    
    .anchor-events-header .vc_col-sm-3 {
        display: none;
    }
    
    .nectar-fancy-box {
        min-height: 300px;
    }
    
    .heading-wrap h3 {
        font-size: 20px;
    }
    
    /* Sponsors Section Responsive */
    .sponsors-section .row_col_wrap_12 {
        padding: 40px 20px;
    }
    
    .carousel.clients.six-cols .no-link {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .as-seen-on-section .carousel.clients.six-cols .no-link {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .as-seen-on-section .row_col_wrap_12 {
        padding: 40px 20px;
    }
    
    .as-seen-on-section .vc_col-sm-2 {
        display: none;
    }
    
    .as-seen-on-section .vc_col-sm-8 {
        width: 100%;
    }
    
    .nectar-shape-divider-wrap {
        height: 10% !important;
    }
    
    /* Footer Responsive */
    #footer-widgets {
        padding: 40px 0 30px;
    }
    
    #footer-widgets .col.span_3:not(:first-child) {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    #footer-widgets .col.span_3:not(:first-child):last-child {
        margin-bottom: 0;
    }
    
    /* Tables Responsive */
    table {
        font-size: 12px;
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead,
    table tbody {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    table tr {
        display: table-row;
    }
    
    table th,
    table td {
        padding: 10px 8px;
        font-size: 11px;
        word-wrap: break-word;
        white-space: normal;
        display: table-cell;
    }
    
    /* Table wrapper for better scrolling */
    div[style*="overflow-x: auto"] {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    div[style*="overflow-x: auto"]::-webkit-scrollbar {
        height: 8px;
    }
    
    div[style*="overflow-x: auto"]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }
    
    div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    /* Buttons Responsive */
    .nectar-button {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .speakers-actions-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .speakers-actions-row .vc_col-sm-6 {
        width: 100%;
        padding: 0;
    }
    
    /* Stream Cards Mobile */
    .stream-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .stream-card {
        padding: 20px 15px;
    }
    
    .stream-card h4 {
        font-size: 18px;
    }
    
    .stream-card p {
        font-size: 14px;
    }
    
    /* Hero Section Mobile */
    .hero-content-section {
        padding: 40px 20px;
    }
    
    .hero-content-section .hero-text {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .hero-content-section ul {
        padding-left: 20px;
        font-size: 15px;
    }
    
    .hero-content-section li {
        margin-bottom: 10px;
    }
    
    /* Video Section Mobile */
    .nectar-video-wrap {
        height: 40vh;
        min-height: 300px;
    }
    
    /* Section Headings Mobile */
    .nectar-split-heading h2 {
        font-size: 24px;
        padding: 20px 15px;
    }
    
    .nectar-split-heading h3 {
        font-size: 18px;
    }
    
    .nectar-split-heading p {
        font-size: 14px;
    }
    
    /* Speakers Note Row Mobile */
    .speakers-note-row {
        padding: 0 15px;
    }
    
    .speakers-note-row h5 {
        font-size: 14px;
    }
    
    /* Page Hero Mobile */
    .page-hero h1 {
        font-size: 32px;
        padding: 40px 20px;
    }
    
    /* Speakers Section Mobile */
    .speakers-section {
        padding: 40px 0;
    }
    
    #footer-widgets .wp-block-image img {
        max-width: 200px;
        max-height: 200px;
    }
    
    #copyright {
        padding: 25px 0;
    }
    
    #copyright .container {
        display: flex;
        justify-content: center;
    }
    
    #copyright .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    #copyright .copyright-text {
        margin-bottom: 12px;
    }
    
    #copyright .social {
        gap: 12px;
    }
    
    #copyright .social a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .speakers-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .speakers-intro {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .speakers-section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .speakers-section-description {
        font-size: 14px;
    }
    
    .speaker-image-wrapper {
        height: 220px;
    }
    
    .speaker-info {
        padding: 18px;
    }
    
    .speaker-name {
        font-size: 17px;
    }
    
    .speaker-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .speaker-profile-link {
        font-size: 13px;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }
    
    .team-member-image {
        height: 250px;
        min-height: 250px;
        border-radius: 12px;
    }
    
    .team-member-image img {
        border-radius: 12px;
    }
    
    .team-meta h3 {
        font-size: 13px;
    }
    
    .speaker-org {
        font-size: 11px;
    }
    
    .section-heading {
        font-size: 22px;
        padding: 20px 15px;
    }
    
    .nectar-split-heading h2 {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .logo-line-1 {
        font-size: 24px;
    }
    
    .logo-line-2 {
        font-size: 16px;
    }
    
    .logo-line-3 {
        font-size: 9px;
    }
    
    table th,
    table td {
        padding: 8px 5px;
        font-size: 10px;
    }
    
    .nectar-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Tablet Portrait (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member-image {
        height: 320px;
        min-height: 320px;
        border-radius: 14px;
    }
    
    .team-member-image img {
        border-radius: 14px;
    }
}

