* {
    box-sizing: border-box;
    padding: 0;
    font-family: "Outfit", sans-serif;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.campaign-ad {
    width: 728px;
    height: 90px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px dashed #cbd5e1;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 999;
}

.campaign-ad small {
    font-size: 12px;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .campaign-ad {
        width: 300px;
        height: 250px;
    }
}

/* Header Styles */
.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    padding: 0 120px;
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: end;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #0e1b2c;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-link:hover {
    color: #226093;
}

.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: translateY(2px);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Let's Talk CTA Button */
.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: #226093;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(34, 96, 147, 0.2);
}

.lets-talk-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lets-talk-btn:hover .lets-talk-icon {
    transform: translateX(2px);
}

.lets-talk-btn:hover {
    background: #1a4a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 96, 147, 0.3);
    color: #ffffff;
}

.header-separator {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

.dark-mode-toggle {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #0e1b2c;
    transition: all 0.2s ease;
}

.dark-mode-toggle:hover {
    color: #226093;
    border-color: #226093;
    background: #f8fafc;
}

.sun-icon,
.moon-icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark-mode-toggle .moon-icon {
    display: none;
}

.dark-mode-toggle .sun-icon {
    display: block;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
    display: block;
}

/* Mobile Dark Mode Toggle */
.offcanvas-dark-mode-wrapper {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.mobile-dark-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 20px;
    gap: 12px;
}

.mobile-lets-talk-btn {
    margin: 16px 20px;
    width: calc(100% - 40px);
    text-align: center;
}

.dark-mode-label {
    font-size: 16px;
    font-weight: 500;
    color: #0e1b2c;
    font-family: "Outfit", sans-serif;
}

body.dark-mode .dark-mode-label {
    color: #f1f5f9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #0e1b2c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Offcanvas Menu */
.offcanvas-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offcanvas-overlay.active {
    display: block;
    opacity: 1;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.offcanvas-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0e1b2c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.offcanvas-close:hover {
    color: #226093;
}

.offcanvas-close svg {
    width: 24px;
    height: 24px;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.offcanvas-nav-link {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #0e1b2c;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-nav-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.offcanvas-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.offcanvas-nav-link:hover .offcanvas-nav-icon {
    transform: scale(1.1);
}

.offcanvas-nav-link:hover {
    background: #f8fafc;
    color: #226093;
}

.offcanvas-nav-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.offcanvas-nav-dropdown:hover {
    background: #f8fafc;
}

.offcanvas-nav-dropdown .offcanvas-nav-link {
    padding: 0;
    flex: 1;
}

.offcanvas-nav-dropdown .dropdown-icon {
    width: 16px;
    height: 16px;
    color: #64748b;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-separator {
        display: none;
    }

    .header-content {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 24px;
    }

    .header-content {
        gap: 12px;
    }

    .header-right {
        gap: 8px;
    }

    .dark-mode-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .dark-mode-toggle .sun-icon,
    .dark-mode-toggle .moon-icon {
        width: 18px;
        height: 18px;
    }

    .lets-talk-btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 6px;
    }

    .lets-talk-icon {
        width: 16px;
        height: 16px;
    }

    .lets-talk-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }

    .header-content {
        padding: 12px 0;
        gap: 8px;
    }

    .header-right {
        gap: 6px;
    }

    .dark-mode-toggle {
        width: 32px;
        height: 32px;
        padding: 5px;
    }

    .dark-mode-toggle .sun-icon,
    .dark-mode-toggle .moon-icon {
        width: 16px;
        height: 16px;
    }

    .lets-talk-btn {
        padding: 7px 12px;
        font-size: 13px;
    }

    .lets-talk-icon {
        width: 14px;
        height: 14px;
    }

    .header-logo .logo-img {
        max-width: 140px;
    }
}

/* wrapper with your generated background image */
.hero-left-wrapper {
    position: relative; /* 🔥 REQUIRED */
    overflow: hidden;
    padding: 40px 120px;
}

/* Top-left soft glass gradient */
.hero-left-wrapper::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle at top left,
        rgba(200, 235, 245, 0.55),
        rgba(200, 235, 245, 0.25),
        rgba(255, 255, 255, 0)
    );
    mix-blend-mode: multiply;
    filter: blur(80px);
    z-index: 0;
}

/* Bottom-right soft glass gradient */
.hero-left-wrapper::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle at bottom right,
        rgba(205, 200, 245, 0.55),
        rgba(205, 200, 245, 0.25),
        rgba(255, 255, 255, 0)
    );
    filter: blur(90px);
    mix-blend-mode: multiply;
    z-index: 0;
}

.hero-section-content {
    display: grid;
    grid-template-columns: 1fr 2fr 300px;
    gap: 18px;
    width: 100%;
    padding: 15px 0px;
    align-items: start;
}

/* left content block - About the KOL */
.hero-left {
    width: 100%;
}
.speakers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Speaker Card Styles */
.speaker-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}
.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.speaker-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    background-color: #f0f0f0;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.speaker-name-credentials {
    flex: 1;
    min-width: 0;
}

.speaker-name {
    font-size: 18px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 6px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
}

.speaker-credentials {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}

.speaker-content {
    margin-top: 12px;
}

.speaker-description {
    font-size: 14px;
    line-height: 1.6;
    color: #5f6c7b;
    margin: 0 0 5px 0;
    font-family: "Outfit", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-more-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #226093;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
    display: block;
    text-align: end;
}

.show-more-link:hover {
    color: #1a4a73;
}

/* Center Column - Video */
.hero-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-info {
    padding: 0 8px;
}

.video-title {
    font-size: 22px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
}

.video-description {
    font-size: 15px;
    line-height: 1.6;
    color: #5f6c7b;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

/* Right Column - Ad Banner */
.hero-right {
    width: 100%;
    position: sticky;
    top: 100px;
    align-self: start;
}

.hero-ad-banner {
    width: 300px;
    height: 250px;
    margin: 0 auto;
}

.ad-placeholder {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}

.ad-placeholder small {
    font-size: 12px;
    margin-top: 4px;
    color: #94a3b8;
}

/* heading */
.hero-left h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    color: #0e1b2c;
    margin-bottom: 20px;
}

/* description */
.hero-left p {
    /* font-size: 16px; */
    line-height: 1.6;
    color: #5f6c7b;
    max-width: 480px;
}

/* CTA */
.cta-btn {
    display: inline-block;
    background: #226093;
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(34, 96, 147, 0.35);
    transition: transform 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.stats-pill {
    display: inline-flex;
    align-items: center;
    background: #e6f0f8;
    border-radius: 16px;
    padding: 14px 20px;
    gap: 18px;
    margin-top: 20px;
}

/* each item */
.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0e1b2c;
}

/* icons */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #226093;
}

/* numbers */
.stat-item strong {
    font-size: 26px;
    font-weight: 700;
}

/* labels */
.stat-item .label {
    font-size: 13px;
    color: #6b7280;
    margin-left: 2px;
}
.stat-item .stat-icon svg {
    width: 25px;
    height: 25px;
}

/* divider line */
.divider {
    width: 1px;
    height: 24px;
    background: rgba(15, 23, 42, 0.12);
}

/* responsive */
@media (max-width: 1200px) {
    .hero-left-wrapper {
        padding: 60px 80px;
    }

    .header-container {
        padding: 0 80px;
    }

    .hero-section-content {
        grid-template-columns: 1fr 2fr 280px;
    }

    .hero-ad-banner {
        width: 280px;
        height: 234px;
    }
}

@media (max-width: 1024px) {
    .hero-left-wrapper {
        padding: 60px 40px;
    }

    .header-container {
        padding: 0px 40px;
    }

    .hero-section-content {
        grid-template-columns: 1fr 1.5fr;
    }

    .hero-right {
        grid-column: 1 / -1;
        position: static;
        margin-top: 24px;
    }

    .hero-ad-banner {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-left-wrapper {
        padding: 40px 24px;
    }

    .header-container{
        padding: 0 24px;
    }

    .hero-section-content {
        grid-template-columns: 1fr;
    }

    .hero-center {
        order: 1;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 3;
        position: static;
        margin-top: 0;
    }

    .speaker-card {
        padding: 18px;
    }

    .speaker-avatar {
        width: 70px;
        height: 70px;
    }

    .speaker-name {
        font-size: 16px;
    }

    .speaker-credentials {
        font-size: 11px;
    }

    .speaker-description {
        font-size: 13px;
    }

    .video-title {
        font-size: 20px;
    }

    .video-description {
        font-size: 14px;
    }

    .video-card {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-left-wrapper {
        padding: 32px 20px;

    }

    .header-container{
        padding: 0 20px;
    }
    .hero-section-content {
        gap: 18px;
    }

    .speaker-card {
        padding: 16px;
    }

    .speaker-avatar {
        width: 60px;
        height: 60px;
    }

    .speaker-name {
        font-size: 15px;
    }

    .speaker-credentials {
        font-size: 11px;
    }

    .speaker-description {
        font-size: 12px;
    }

    .show-more-link {
        font-size: 12px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-description {
        font-size: 13px;
    }

    .video-title {
        font-size: 18px;
    }

    .video-description {
        font-size: 13px;
    }

    .hero-ad-banner {
        height: 200px;
    }

    .ad-placeholder {
        font-size: 14px;
    }
}

/* Hero right styles moved above */

/* Video Card */
.video-card {
    position: relative;
    background: #1f2937;
    border-radius: 18px;
    overflow: hidden;
}

/* Vimeo Frame */
.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #0e1b2c;
    flex-shrink: 0;
}

.title-icon svg {
    width: 20px;
    height: 20px;
}

.resource-card-description {
    font-size: 14px;
    color: #5f6c7b;
    line-height: 1.6;
    margin: 0;
    font-family: "Outfit", sans-serif;
    margin-top: 8px;
}

.resource-view-all {
    background: rgb(60, 174, 73);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Show View All button on hover */
.resource-card:hover .resource-view-all {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.resource-view-all:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Popular Videos & Latest Podcasts Section - Exact Match to Image */
.videos-podcasts-section {
    padding: 40px 120px;
    background: #f8fafc;
}

/* .vp-container {
    max-width: 1400px;
    margin: 0 auto;
} */

.vp-layout {
    width: 100%;
}

.popular-videos-wrapper {
    width: 100%;
    overflow: hidden;
}

.latest-podcasts-wrapper {
    width: 100%;
    overflow: hidden;
}

.videos-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.videos-title {
    font-size: 28px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Swiper Container */
.videos-swiper {
    padding: 5px !important;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.videos-swiper .swiper-wrapper {
    display: flex;
}

.videos-swiper .swiper-slide {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .videos-swiper .swiper-slide {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .videos-swiper .swiper-slide {
        width: calc(33.333% - 14px);
    }
}

.video-item-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

/* Hide other cards when hovering one */
.videos-swiper:hover .video-item-card:not(:hover) {
    opacity: 0.3;
}

.video-item-card:hover {
    transform: translateY(-2px);
    opacity: 1 !important;
}

/* Videos Navigation */
.videos-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    z-index: 10;
}

.videos-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.videos-nav-btn:hover {
    background: #226093;
    color: #ffffff;
    border-color: #226093;
    transform: scale(1.05);
}

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

.videos-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.videos-nav-btn.swiper-button-disabled:hover {
    background: #ffffff;
    color: #64748b;
    border-color: #e2e8f0;
    transform: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.video-thumbnail-1 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.play-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.play-icon-large svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    z-index: 3;
}

.video-card-content {
    padding: 16px;
}

.video-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 6px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.video-card-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
}

.tag-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #3cae49;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-btn-primary:hover {
    background: #2d8a3a;
}

.tag-btn-primary svg {
    width: 12px;
    height: 12px;
}

.tag-secondary {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.view-full-schedule {
    text-align: center;
    margin: 24px 0px;
}

.schedule-link {
    display: inline-block;
    background: #226093;
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(34, 96, 147, 0.25);
    transition: transform 0.2s ease;
}

.schedule-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .videos-podcasts-section {
        padding: 50px 80px;
    }
}

@media (max-width: 1024px) {
    .videos-podcasts-section {
        padding: 40px 40px;
    }

    .videos-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .videos-podcasts-section {
        padding: 32px 24px;
    }

    .popular-videos-wrapper {
        padding: 24px;
    }

    .videos-title {
        font-size: 24px;
    }

    .video-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .videos-podcasts-section {
        padding: 24px 20px;
    }

    .popular-videos-wrapper {
        padding: 20px;
    }

    .videos-header {
        gap: 12px;
    }

    .videos-navigation {
        justify-content: center;
        margin-top: 20px;
    }
}

.google-ads-wrapper {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cbd5e1;
    background-color: #f8fafc;
}
.google-ads-wrapper p {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 10px;
}

/* Upcoming Webinars Section */
.upcoming-webinars-section {
    padding: 40px 120px;
    background: #ffffff;
}

.webinars-container {
    max-width: 1400px;
    margin: 0 auto;
}

.webinars-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 20px;
    margin-bottom: 32px;
}

.webinars-header .google-ads-wrapper {
    flex: 1;
    max-width: 728px;
    width: 728px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

.webinars-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0;
    font-family: "Outfit", sans-serif;
    flex-shrink: 0;
}

.webinars-swiper-wrapper {
    position: relative;
}

.webinars-swiper {
    padding: 0;
    margin: 0;
    overflow: visible;
}

.webinar-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

.webinar-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
    min-width: 0;
}

.webinar-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.webinar-text-content {
    flex: 1;
    min-width: 0;
}

.webinar-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0.6;
}

.webinar-card::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(224, 242, 254, 0.5) 0%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0.5;
}

.webinar-card:hover {
    transform: translateY(-4px);
}

.webinar-icon {
    width: 56px;
    height: 56px;
    background: #3cae49;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(60, 174, 73, 0.3);
}

.webinar-icon svg {
    width: 28px;
    height: 28px;
}

.webinar-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 6px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
}

.webinar-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.webinar-date-time {
    font-size: 13px;
    color: #64748b;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    margin-top: 4px;
}

.webinar-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.webinar-card:hover .webinar-arrow {
    background: #ffffff;
    color: #226093;
    transform: translateX(2px);
}

.webinar-arrow svg {
    width: 20px;
    height: 20px;
}

.webinars-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    z-index: 10;
}

.webinar-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.webinar-nav-btn:hover {
    background: #226093;
    color: #ffffff;
    border-color: #226093;
    transform: scale(1.05);
}

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

.webinar-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.webinar-nav-btn.swiper-button-disabled:hover {
    background: #ffffff;
    color: #64748b;
    border-color: #e2e8f0;
    transform: none;
}

/* Responsive for Webinars */
@media (max-width: 1200px) {
    .upcoming-webinars-section {
        padding: 50px 80px;
    }
}

@media (max-width: 1024px) {
    .upcoming-webinars-section {
        padding: 40px 40px;
    }

    .webinars-header {
        margin-bottom: 28px;
    }

    .webinars-title {
        font-size: 28px;
    }

    .webinars-header .google-ads-wrapper {
        max-width: 728px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .upcoming-webinars-section {
        padding: 32px 24px;
    }

    .webinars-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .webinars-title {
        font-size: 24px;
        width: 100%;
    }

    .webinars-header .google-ads-wrapper {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
    }

    .webinars-header .google-ads-wrapper img {
        max-width: 100%;
        width: 100%;
    }

    .webinar-card {
        padding: 20px;
        min-height: 120px;
        flex-direction: column;
        align-items: flex-start;
    }

    .webinar-main-content {
        width: 100%;
    }

    .webinar-icon-wrapper {
        margin-bottom: 12px;
    }

    .webinar-icon {
        width: 48px;
        height: 48px;
    }

    .webinar-icon svg {
        width: 24px;
        height: 24px;
    }

    .webinar-title {
        font-size: 18px;
    }

    .webinar-subtitle {
        font-size: 13px;
    }

    .webinar-arrow {
        width: 36px;
        height: 36px;
    }

    .webinar-arrow svg {
        width: 18px;
        height: 18px;
    }

    .webinars-navigation {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .upcoming-webinars-section {
        padding: 24px 20px;
    }

    .webinars-header {
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .webinars-title {
        font-size: 22px;
    }

    .webinars-header .google-ads-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .webinar-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
    }

    .webinar-arrow {
        position: absolute;
        bottom: 18px;
        right: 18px;
    }

    .webinars-navigation {
        justify-content: center;
    }
}

/* Continue Learning Section */
.continue-learning-section {
    padding: 40px 120px;
    background: #ffffff;
}

.cl-layout {
    display: block;
}

.cl-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cl-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

/* Roundtable Swiper Wrapper */
.roundtable-swiper-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.roundtable-swiper {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.roundtable-swiper .swiper-wrapper {
    display: flex;
    width: 100%;
}

.roundtable-swiper .swiper-slide {
    height: auto;
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .roundtable-swiper .swiper-slide {
        width: calc(50% - 12px) !important;
        max-width: calc(50% - 12px);
    }
}

/* Roundtable Navigation */
.roundtable-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    margin: 24px 0px;
    z-index: 10;
}

.roundtable-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.roundtable-nav-btn:hover {
    background: #226093;
    color: #ffffff;
    border-color: #226093;
    transform: scale(1.05);
}

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

.roundtable-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.roundtable-nav-btn.swiper-button-disabled:hover {
    background: #ffffff;
    color: #64748b;
    border-color: #e2e8f0;
    transform: none;
}

/* Roundtable Discussions Card */
.roundtable-card {
    background-image: url("/images/cl-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.roundtable-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(224, 242, 254, 0.9) 0%,
        rgba(240, 249, 255, 0.75) 35%,
        rgba(255, 255, 255, 0.4) 44%,
        rgba(255, 255, 255, 0) 74%
    );
    z-index: 0;
    border-radius: 16px;
}

.roundtable-card::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(224, 242, 254, 0.5) 0%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.roundtable-header {
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.roundtable-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.roundtable-content {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.roundtable-discussions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.discussion-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.discussion-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.avatar-circle svg {
    width: 24px;
    height: 24px;
    color: #64748b;
}

.discussion-info {
    flex: 1;
    min-width: 0;
}

.discussion-topic {
    font-size: 16px;
    font-weight: 600;
    color: #0e1b2c;
    margin: 0 0 6px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.discussion-meta {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.roundtable-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

/* Quiz Section */
.quiz-section {
    padding: 60px 120px;
    background: #f8fafc;
}

.quiz-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0 0 8px 0;
    font-family: "Outfit", sans-serif;
}

.quiz-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
    font-family: "Outfit", sans-serif;
}

.quiz-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.quiz-progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.quiz-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 20%);
    background: #226093;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.quiz-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    font-family: "Outfit", sans-serif;
    min-width: 50px;
    text-align: right;
}

.quiz-content {
    min-height: 200px;
    margin-bottom: 32px;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.quiz-question-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 24px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: #0e1b2c;
    position: relative;
}

.quiz-option:hover {
    border-color: #226093;
    background: #f8fafc;
    transform: translateX(4px);
}

.quiz-option.selected {
    border-color: #226093;
    background: #e6f0f8;
    color: #226093;
    font-weight: 600;
}

.quiz-option input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #226093;
}

.quiz-option label {
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #226093;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(34, 96, 147, 0.2);
}

.quiz-btn:hover:not(:disabled) {
    background: #1a4a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 96, 147, 0.3);
}

.quiz-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.quiz-btn-prev {
    background: #ffffff;
    color: #226093;
    border: 2px solid #226093;
    box-shadow: none;
}

.quiz-btn-prev:hover:not(:disabled) {
    background: #f8fafc;
    transform: translateY(-1px);
}

.quiz-btn-submit {
    background: #3cae49;
    box-shadow: 0 2px 8px rgba(60, 174, 73, 0.2);
}

.quiz-btn-submit:hover {
    background: #2d8a3a;
    box-shadow: 0 4px 12px rgba(60, 174, 73, 0.3);
}

.quiz-btn svg {
    width: 18px;
    height: 18px;
}

/* Quiz Results */
.quiz-results {
    text-align: center;
    padding: 20px 0;
}

.quiz-results-title {
    font-size: 28px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 24px 0;
    font-family: "Outfit", sans-serif;
}

.quiz-score {
    margin: 32px 0;
}

.quiz-score-number {
    font-size: 48px;
    font-weight: 800;
    color: #226093;
    margin: 0 0 8px 0;
    font-family: "Outfit", sans-serif;
}

.quiz-score-percentage {
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
    font-family: "Outfit", sans-serif;
}

.quiz-results-message {
    font-size: 16px;
    line-height: 1.6;
    color: #5f6c7b;
    margin: 0 0 32px 0;
    font-family: "Outfit", sans-serif;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-btn-restart {
    background: #3cae49;
    box-shadow: 0 2px 8px rgba(60, 174, 73, 0.2);
}

.quiz-btn-restart:hover {
    background: #2d8a3a;
    box-shadow: 0 4px 12px rgba(60, 174, 73, 0.3);
}

/* Quiz Responsive */
@media (max-width: 768px) {
    .quiz-wrapper {
        padding: 24px;
    }

    .quiz-title {
        font-size: 28px;
    }

    .quiz-question-title {
        font-size: 18px;
    }

    .quiz-option {
        padding: 14px 16px;
        font-size: 14px;
    }

    .quiz-navigation {
        flex-direction: column;
    }

    .quiz-btn {
        width: 100%;
        justify-content: center;
    }

    .quiz-results-title {
        font-size: 24px;
    }

    .quiz-score-number {
        font-size: 36px;
    }
}

.roundtable-view-btn {
    padding: 10px 20px;
    background: rgb(60, 174, 73);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.roundtable-view-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0e1b2c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.roundtable-view-btn svg {
    width: 16px;
    height: 16px;
}

.cl-right-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Today's Schedule Section */
.todays-schedule-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.schedule-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0 0 24px 0;
    font-family: "Outfit", sans-serif;
}

.schedule-event {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-event:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.schedule-event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 16px;
}

.schedule-date-time {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.schedule-day {
    font-size: 14px;
    font-weight: 600;
    color: #0e1b2c;
    font-family: "Outfit", sans-serif;
}

.schedule-time {
    font-size: 14px;
    font-weight: 600;
    color: #0e1b2c;
    font-family: "Outfit", sans-serif;
}

.schedule-join-btn {
    padding: 8px 16px;
    background: #ffe4d1;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0e1b2c;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.schedule-join-btn:hover {
    background: #f79251;
    color: #ffffff;
    transform: translateY(-1px);
}

.schedule-join-btn svg {
    width: 16px;
    height: 16px;
}

.schedule-location {
    font-size: 13px;
    color: #64748b;
    font-family: "Outfit", sans-serif;
    padding-left: 0;
}

.schedule-view-full {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #0e1b2c;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
    margin-top: 8px;
}

.schedule-view-full:hover {
    color: #226093;
}

.schedule-view-full svg {
    width: 18px;
    height: 18px;
}

/* Promotional Image Section */
.schedule-promo-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.promo-image-placeholder {
    width: 100%;
    height: 300px;
    background-image: url("/images/measles.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Recent News Section */
.recent-news-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recent-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.recent-news-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.recent-news-browse-all {
    font-size: 16px;
    font-weight: 600;
    color: #0e1b2c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
}

.recent-news-browse-all:hover {
    color: #226093;
}

.recent-news-browse-all svg {
    width: 18px;
    height: 18px;
}

.recent-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.news-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.news-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.news-icon svg {
    width: 20px;
    height: 20px;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #0e1b2c;
    margin: 0 0 8px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.news-meta {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.5;
}

/* Responsive for Continue Learning */
@media (max-width: 1200px) {
    .continue-learning-section {
        padding: 50px 80px;
    }
}

@media (max-width: 1024px) {
    .quiz-section {
        padding: 40px 40px;
    }
    .continue-learning-section {
        padding: 40px 40px;
    }

    .roundtable-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .continue-learning-section {
        padding: 32px 24px;
    }

    .quiz-section {
        padding: 32px 24px;
    }

    .cl-title {
        font-size: 28px;
    }

    .roundtable-card {
        padding: 20px;
    }

    .roundtable-title {
        font-size: 18px;
    }

    .roundtable-navigation {
        margin: 20px 0px;
    }

    .discussion-topic {
        font-size: 15px;
    }

    .recent-news-title {
        font-size: 28px;
    }

    .recent-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .schedule-title {
        font-size: 28px;
    }

    .todays-schedule-section {
        padding: 20px;
    }

    .schedule-event {
        padding: 16px 0;
    }

    .promo-image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .continue-learning-section {
        padding: 24px 20px;
    }

    .cl-title {
        font-size: 24px;
    }

    .roundtable-card {
        padding: 16px;
    }

    .roundtable-navigation {
        justify-content: center;
        margin-top: 16px;
    }

    .discussion-item {
        gap: 12px;
    }

    .avatar-circle {
        width: 40px;
        height: 40px;
    }

    .avatar-circle svg {
        width: 20px;
        height: 20px;
    }

    .schedule-title {
        font-size: 24px;
    }

    .todays-schedule-section {
        padding: 16px;
    }

    .schedule-event-header {
        flex-wrap: wrap;
    }

    .schedule-join-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .promo-image-placeholder {
        height: 200px;
    }
}

/* Footer Section */
.main-footer {
    /* background-image: url("/images/bg-footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

    position: relative;
    padding: 40px 120px;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        #273043 25%,
        #2e384c 75%,
        #2b3547 100%
    );
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Navigation Columns */
.footer-nav-columns {
    display: grid;
    place-items: center;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 20px 0;
    font-family: "Outfit", sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: 15px;
    font-weight: 400;
    color: #475569;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0e1b2c;
}

/* Newsletter Section */
.footer-newsletter {
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    margin-bottom: 30px;
}

.newsletter-content {
    padding-bottom: 20px;
}

.newsletter-text {
    font-size: 16px;
    font-weight: 500;
    color: #ededed;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Outfit", sans-serif;
    color: #0e1b2c;
    background: #ffffff;
    min-width: 280px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input::-moz-placeholder {
    color: #94a3b8;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    border-color: #226093;
}

.newsletter-btn {
    padding: 12px 24px;
    background: #226093;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #1a4a73;
    transform: translateY(-1px);
}

/* Footer Bottom */

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #94a3b8;
    font-family: "Outfit", sans-serif;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-link {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #0e1b2c;
}

.footer-separator {
    font-size: 13px;
    color: #cbd5e1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .main-footer {
        padding: 50px 40px 30px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 24px 24px;
    }

    .footer-newsletter {
        padding: 24px 0;
    }

    .newsletter-text {
        font-size: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 32px 20px 20px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .newsletter-text {
        font-size: 14px;
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 12px;
    }
}

/* ============================================
   DARK MODE STYLES
   ============================================ */

body.dark-mode {
    background: #0f172a;
    color: #f1f5f9;
}

/* Header Dark Mode */
body.dark-mode .main-header {
    background: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.dark-mode .header-container {
    background: #0f172a;
}

body.dark-mode .nav-link {
    color: #cbd5e1;
}

body.dark-mode .nav-link:hover {
    color: #3cae49;
}

body.dark-mode .nav-icon {
    color: inherit;
}

body.dark-mode .offcanvas-nav-icon {
    color: inherit;
}

body.dark-mode .dark-mode-toggle {
    color: #cbd5e1;
    border-color: #334155;
}

body.dark-mode .dark-mode-toggle:hover {
    color: #3cae49;
    border-color: #3cae49;
    background: rgba(60, 174, 73, 0.1);
}

body.dark-mode .lets-talk-btn {
    background: #226093;
    color: #ffffff;
}

body.dark-mode .lets-talk-btn:hover {
    background: #1a4d73;
    color: #ffffff;
}

body.dark-mode .hamburger-line {
    background: #cbd5e1;
}

/* Logo Dark Mode */
body.dark-mode .logo-img {
    opacity: 0.9;
}

/* Offcanvas Dark Mode */
body.dark-mode .offcanvas-menu {
    background: #0f172a;
}

body.dark-mode .offcanvas-nav-link {
    color: #cbd5e1;
}

body.dark-mode .offcanvas-nav-link:hover {
    color: #3cae49;
    background: rgba(60, 174, 73, 0.1);
}

body.dark-mode .offcanvas-close {
    color: #cbd5e1;
}

body.dark-mode .offcanvas-dark-mode-wrapper {
    border-top-color: #334155;
}

/* Hero Section Dark Mode */
body.dark-mode .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .hero-title {
    color: #f1f5f9;
}

body.dark-mode .hero-left h1 {
    color: #f1f5f9;
}

body.dark-mode .hero-left p {
    color: #cbd5e1;
}

body.dark-mode .speaker-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .speaker-name {
    color: #f1f5f9;
}

body.dark-mode .speaker-credentials {
    color: #94a3b8;
}

body.dark-mode .speaker-description {
    color: #cbd5e1;
}

body.dark-mode .show-more-link {
    color: #3cae49;
}

body.dark-mode .show-more-link:hover {
    color: #2d8a3a;
}

body.dark-mode .speaker-avatar {
    border-color: #334155;
}

/* Video Info Dark Mode */
body.dark-mode .video-title {
    color: #f1f5f9;
}

body.dark-mode .video-description {
    color: #cbd5e1;
}

/* Ad Banner Dark Mode */
body.dark-mode .ad-placeholder {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-mode .ad-placeholder small {
    color: #64748b;
}

body.dark-mode .hero-subtitle {
    color: #cbd5e1;
}

body.dark-mode .stat-item strong {
    color: #f1f5f9;
}

body.dark-mode .stat-item .label {
    color: #cbd5e1;
}

body.dark-mode .stat-item .stat-icon svg {
    color: #3cae49;
}

body.dark-mode .resource-card-title {
    color: #f1f5f9;
}

body.dark-mode .resource-card-description {
    color: #cbd5e1;
}

body.dark-mode .cta-btn {
    background: #226093;
    color: #ffffff;
}

body.dark-mode .cta-btn:hover {
    background: #1a4d73;
}

body.dark-mode .stats-pill {
    background: rgba(34, 96, 147, 0.2);
    color: #cbd5e1;
}

body.dark-mode .campaign-ad {
    background-color: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}

body.dark-mode .section-title {
    color: #f1f5f9;
}

body.dark-mode .view-all-btn {
    color: #3cae49;
}

body.dark-mode .view-all-btn:hover {
    color: #2d8a3a;
}

/* Videos & Podcasts Dark Mode */
body.dark-mode .videos-podcasts-section {
    background: #0f172a;
}

body.dark-mode .videos-title {
    color: #f1f5f9;
}

body.dark-mode .tab-btn {
    color: #94a3b8;
    background: transparent;
}

body.dark-mode .video-item-card {
    background: #1e293b;
    border-color: #334155;
}
body.dark-mode .video-card-title {
    color: #f1f5f9;
}

body.dark-mode .video-item-card:hover {
    background: #334155;
    border-color: #3cae49;
}

body.dark-mode .tab-btn:hover {
    color: #cbd5e1;
    background: rgba(60, 174, 73, 0.1);
}

body.dark-mode .tab-btn.active {
    color: #3cae49;
    background: rgba(60, 174, 73, 0.15);
}

body.dark-mode .video-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .video-card:hover {
    background: #334155;
    border-color: #3cae49;
}

body.dark-mode .video-title {
    color: #f1f5f9;
}

body.dark-mode .video-meta {
    color: #94a3b8;
}

body.dark-mode .google-ads-wrapper {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .google-ads-placeholder {
    color: #94a3b8;
}

body.dark-mode .upcoming-webinars-section {
    background: #0f172a;
}

/* Upcoming Webinars Dark Mode */
body.dark-mode .webinars-section {
    background: #0f172a;
}

body.dark-mode .webinar-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .webinar-card:hover {
    background: #334155;
    border-color: #3cae49;
}

body.dark-mode .webinar-title {
    color: #f1f5f9;
}
body.dark-mode .webinars-title {
    color: #f1f5f9;
}

body.dark-mode .webinar-subtitle {
    color: #cbd5e1;
}

body.dark-mode .webinars-date,
body.dark-mode .webinars-time {
    color: #94a3b8;
}

body.dark-mode .webinar-nav-btn {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .webinar-nav-btn:hover:not(:disabled) {
    background: #334155;
    border-color: #3cae49;
    color: #3cae49;
}

/* Videos Navigation Dark Mode */
body.dark-mode .videos-nav-btn {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .videos-nav-btn:hover:not(:disabled) {
    background: #334155;
    border-color: #3cae49;
    color: #3cae49;
}

body.dark-mode .videos-nav-btn.swiper-button-disabled {
    opacity: 0.4;
}

body.dark-mode .videos-nav-btn.swiper-button-disabled:hover {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

/* Continue Learning Dark Mode */
body.dark-mode .continue-learning-section {
    background: #0f172a;
}

body.dark-mode .cl-title {
    color: #f1f5f9;
}

body.dark-mode .roundtable-card::before {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(10, 10, 10, 0.85) 35%,
        rgba(20, 20, 20, 0.65) 44%,
        rgba(0, 0, 0, 0) 74%
    );
}

body.dark-mode .roundtable-card::after {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 35%,
        transparent 70%
    );
}

body.dark-mode .roundtable-card {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.dark-mode .roundtable-title {
    color: #f1f5f9;
}

body.dark-mode .discussion-topic {
    color: #f1f5f9;
}

body.dark-mode .discussion-meta {
    color: #94a3b8;
}

/* Quiz Dark Mode */
body.dark-mode .quiz-wrapper {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .quiz-title {
    color: #f1f5f9;
}

body.dark-mode .quiz-subtitle {
    color: #94a3b8;
}

body.dark-mode .quiz-progress-bar {
    background: #334155;
}

body.dark-mode .quiz-progress-text {
    color: #cbd5e1;
}

body.dark-mode .quiz-question-title {
    color: #f1f5f9;
}

body.dark-mode .quiz-option {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .quiz-option:hover {
    border-color: #226093;
    background: #0f172a;
}

body.dark-mode .quiz-option.selected {
    border-color: #226093;
    background: rgba(34, 96, 147, 0.2);
    color: #60a5fa;
}

body.dark-mode .quiz-navigation {
    border-top-color: #334155;
}

body.dark-mode .quiz-btn-prev {
    background: #1e293b;
    color: #60a5fa;
    border-color: #334155;
}

body.dark-mode .quiz-btn-prev:hover:not(:disabled) {
    background: #0f172a;
    border-color: #226093;
}

body.dark-mode .quiz-results-title {
    color: #f1f5f9;
}

body.dark-mode .quiz-score-number {
    color: #60a5fa;
}

body.dark-mode .quiz-score-percentage {
    color: #94a3b8;
}

body.dark-mode .quiz-results-message {
    color: #cbd5e1;
}

body.dark-mode .avatar-circle {
    background: rgba(34, 96, 147, 0.2);
    color: #60a5fa;
}

body.dark-mode .roundtable-view-btn {
    background: white;
    color: #3cae49;
}

body.dark-mode .roundtable-view-btn:hover {
    background: rgba(60, 174, 73, 0.3);
}

body.dark-mode .roundtable-nav-btn {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .roundtable-nav-btn:hover:not(:disabled) {
    background: #334155;
    border-color: #3cae49;
    color: #3cae49;
}

/* Recent News Dark Mode */
body.dark-mode .recent-news-section {
    background: #0f172a;
}

body.dark-mode .recent-news-title {
    color: #f1f5f9;
}

body.dark-mode .news-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .news-card:hover {
    background: #334155;
    border-color: #3cae49;
}

body.dark-mode .news-title {
    color: #f1f5f9;
}

body.dark-mode .news-meta {
    color: #94a3b8;
}

/* Footer Dark Mode */
body.dark-mode .main-footer {
    background: #0f172a;
    border-top-color: #334155;
}

body.dark-mode .footer-column-title {
    color: #f1f5f9;
}

body.dark-mode .footer-links a {
    color: #cbd5e1;
}

body.dark-mode .footer-links a:hover {
    color: #3cae49;
}

body.dark-mode .footer-social-link {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .footer-social-link:hover {
    background: #334155;
    border-color: #3cae49;
    color: #3cae49;
}

body.dark-mode .newsletter-input {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

body.dark-mode .newsletter-input::-moz-placeholder {
    color: #94a3b8;
}

body.dark-mode .newsletter-input::placeholder {
    color: #94a3b8;
}

body.dark-mode .newsletter-btn {
    background: #226093;
    color: #ffffff;
}

body.dark-mode .newsletter-btn:hover {
    background: #1a4d73;
}

body.dark-mode .footer-copyright,
body.dark-mode .footer-legal-link {
    color: #94a3b8;
}

body.dark-mode .footer-legal-link:hover {
    color: #3cae49;
}

/* Swiper Navigation Dark Mode */
body.dark-mode .swiper-button-next,
body.dark-mode .swiper-button-prev {
    color: #cbd5e1;
}

body.dark-mode .swiper-button-next:hover,
body.dark-mode .swiper-button-prev:hover {
    color: #3cae49;
}

body.dark-mode .swiper-pagination-bullet {
    background: #334155;
}

body.dark-mode .swiper-pagination-bullet-active {
    background: #3cae49;
}

/* Video Play Icon Dark Mode */
body.dark-mode .video-play-icon {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

body.dark-mode .video-play-icon:hover {
    background: rgba(60, 174, 73, 0.8);
}

/* Divider Line Dark Mode */
body.dark-mode .section-divider {
    border-color: #334155;
}

/* Responsive Dark Mode Adjustments */
@media (max-width: 768px) {
    body.dark-mode .mobile-dark-toggle {
        color: #cbd5e1;
    }

    body.dark-mode .mobile-dark-toggle:hover {
        color: #3cae49;
    }
}

body.dark-mode .main-footer::before {
    background: #0e1b2c;
}

body.dark-mode .newsletter-text {
    color: #f1f5f9;
}

body.dark-mode .roundtable-card {
    border: 0px solid #000000;
}

body.dark-mode .roundtable-title {
    color: #f1f5f9;
}

.video-tag-top {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    line-height: 1;
}

/* Case Studies Section */
.case-studies-section {
    padding: 40px 120px;
    background: #ffffff;
}

.case-studies-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0 0 32px 0;
    font-family: "Outfit", sans-serif;
}

.case-studies-content {
    width: 100%;
}

/* Research RoundUp Section */
.research-roundup-section {
    padding: 40px 120px;
    background: #ffffff;
}

.research-roundup-header {
    margin-bottom: 25px;
}

.research-roundup-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
}

.research-roundup-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.research-roundup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.research-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #226093;
}

.research-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.research-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #226093;
    font-family: "Outfit", sans-serif;
}

.research-category svg {
    width: 18px;
    height: 18px;
    color: #226093;
}

.research-date {
    font-size: 13px;
    color: #64748b;
    font-family: "Outfit", sans-serif;
}

.research-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.research-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.research-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #5f6c7b;
    margin: 0 0 20px 0;
    font-family: "Outfit", sans-serif;
    flex: 1;
}

.research-card-footer {
    margin-top: auto;
}

.research-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #226093;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: all 0.2s ease;
}

.research-read-more:hover {
    color: #1a4a73;
    gap: 10px;
}

.research-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.research-read-more:hover svg {
    transform: translateX(4px);
}

.research-roundup-footer {
    text-align: center;
    margin-top: 40px;
}

.research-browse-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #226093;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(34, 96, 147, 0.2);
}

.research-browse-all:hover {
    background: #1a4a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 96, 147, 0.3);
    color: #ffffff;
}

.research-browse-all svg {
    width: 18px;
    height: 18px;
}

/* Research RoundUp Responsive */
@media (max-width: 1024px) {
    .research-roundup-section {
        padding: 40px 40px;
    }

    .research-roundup-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .case-studies-section {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .research-roundup-section {
        padding: 40px 24px;
    }

    .research-roundup-title {
        font-size: 28px;
    }

    .research-roundup-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .research-card {
        padding: 20px;
    }

    .case-studies-section {
        padding: 40px 24px;
    }

    .case-studies-title {
        font-size: 28px;
    }
}

/* Research RoundUp Dark Mode */
body.dark-mode .research-roundup-section {
    background: #0f172a;
}

body.dark-mode .research-roundup-title {
    color: #f1f5f9;
}

body.dark-mode .research-roundup-subtitle {
    color: #94a3b8;
}

body.dark-mode .research-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .research-card:hover {
    border-color: #226093;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.dark-mode .research-card-header {
    border-bottom-color: #334155;
}

body.dark-mode .research-category {
    color: #60a5fa;
}

body.dark-mode .research-category svg {
    color: #60a5fa;
}

body.dark-mode .research-date {
    color: #94a3b8;
}

body.dark-mode .research-card-title {
    color: #f1f5f9;
}

body.dark-mode .research-card-description {
    color: #cbd5e1;
}

body.dark-mode .research-read-more {
    color: #60a5fa;
}

body.dark-mode .research-read-more:hover {
    color: #93c5fd;
}

body.dark-mode .case-studies-section {
    background: #0f172a;
}

body.dark-mode .case-studies-title {
    color: #f1f5f9;
}

body.dark-mode .quiz-section {
    background: #1e293b;
}

/* HCP Tool Kit Section */
.hcp-toolkit-section {
    padding: 40px 120px;
    background: #f8fafc;
}

.hcp-toolkit-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hcp-toolkit-header {
    margin-bottom: 40px;
}

.hcp-toolkit-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b2c;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
}

.hcp-toolkit-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.hcp-toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.hcp-tool-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hcp-tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #226093 0%, #3cae49 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hcp-tool-card:hover::before {
    transform: scaleX(1);
}

.hcp-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #226093;
}

.hcp-tool-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e6f0f8 0%, #f0f9ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hcp-tool-icon svg {
    width: 28px;
    height: 28px;
    color: #226093;
    transition: all 0.3s ease;
}

.hcp-tool-card:hover .hcp-tool-icon {
    background: linear-gradient(135deg, #226093 0%, #1a4a73 100%);
    transform: scale(1.05);
}

.hcp-tool-card:hover .hcp-tool-icon svg {
    color: #ffffff;
}

.hcp-tool-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hcp-tool-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e1b2c;
    margin: 0 0 12px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.hcp-tool-description {
    font-size: 15px;
    line-height: 1.6;
    color: #5f6c7b;
    margin: 0 0 20px 0;
    font-family: "Outfit", sans-serif;
    flex: 1;
}

.hcp-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #226093;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: all 0.2s ease;
    margin-top: auto;
}

.hcp-tool-link:hover {
    color: #1a4a73;
    gap: 12px;
}

.hcp-tool-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.hcp-tool-link:hover svg {
    transform: translateX(4px);
}

.hcp-toolkit-footer {
    text-align: center;
    margin-top: 40px;
}

.hcp-toolkit-browse-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #226093;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(34, 96, 147, 0.2);
}

.hcp-toolkit-browse-all:hover {
    background: #1a4a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 96, 147, 0.3);
    color: #ffffff;
}

.hcp-toolkit-browse-all svg {
    width: 18px;
    height: 18px;
}

/* HCP Tool Kit Responsive */
@media (max-width: 1024px) {
    .hcp-toolkit-section {
        padding: 40px 40px;
    }

    .hcp-toolkit-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hcp-toolkit-section {
        padding: 40px 24px;
    }

    .hcp-toolkit-title {
        font-size: 28px;
    }

    .hcp-toolkit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hcp-tool-card {
        padding: 24px;
    }

    .hcp-tool-icon {
        width: 48px;
        height: 48px;
    }

    .hcp-tool-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* HCP Tool Kit Dark Mode */
body.dark-mode .hcp-toolkit-section {
    background: #1e293b;
}

body.dark-mode .hcp-toolkit-title {
    color: #f1f5f9;
}

body.dark-mode .hcp-toolkit-subtitle {
    color: #94a3b8;
}

body.dark-mode .hcp-tool-card {
    background: #0f172a;
    border-color: #334155;
}

body.dark-mode .hcp-tool-card:hover {
    border-color: #226093;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hcp-tool-icon {
    background: linear-gradient(
        135deg,
        rgba(34, 96, 147, 0.2) 0%,
        rgba(60, 174, 73, 0.1) 100%
    );
}

body.dark-mode .hcp-tool-icon svg {
    color: #60a5fa;
}

body.dark-mode .hcp-tool-card:hover .hcp-tool-icon {
    background: linear-gradient(135deg, #226093 0%, #1a4a73 100%);
}

body.dark-mode .hcp-tool-card:hover .hcp-tool-icon svg {
    color: #ffffff;
}

body.dark-mode .hcp-tool-title {
    color: #f1f5f9;
}

body.dark-mode .hcp-tool-description {
    color: #cbd5e1;
}

body.dark-mode .hcp-tool-link {
    color: #60a5fa;
}

body.dark-mode .hcp-tool-link:hover {
    color: #93c5fd;
}

