/* Vastago Grotesk Font Family */
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Heavy.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vastago Grotesk', sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header/Navigation Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.sticky {
    background: rgba(32, 44, 169, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 0;
    background: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo h1 {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    font-style: italic;
    letter-spacing: -2px;
    margin: 0;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.collaborate-btn {
    background: transparent;
    border: 2px solid #93c5fd;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collaborate-btn:hover {
    background: #93c5fd;
    color: #202CA9;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive Nav */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(32, 44, 169, 0.98);
        padding: 100px 30px 40px;
        gap: 0;
        z-index: 10000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta.active {
        display: block;
        position: fixed;
        bottom: 40px;
        left: 30px;
        right: 30px;
        z-index: 10001;
    }

    .nav-cta.active .collaborate-btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 100px;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #202CA9;
    background-image: url('../images/home-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #e2e8f0;
   
}

.hero-top-text .tick-bg {
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    color: #2B2A2A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tick-icon {
    height: 18px;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.hero-top-text i {
    color: #10b981;
    font-size: 18px;
}

.hero-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.hero-title .highlight {
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 550px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.schedule-btn {
    background: #ffffff;
    color: #202CA9;
    border: none;
    padding: 18px 36px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.follow-section {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.linkedin-box {
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #0077b5;
}

.linkedin-link {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.linkedin-link span:first-child {
    font-size: 14px;
    font-weight: 400;
    color: #e2e8f0;
}

.linkedin-link span:last-child {
    font-size: 18px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #93c5fd;
}

.stat-label {
    font-size: 14px;
    color: #e2e8f0;
    /* font-weight: 500; */
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #94a3b8;
    margin: 0 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Platform Section Styles */
.platform-section {
    padding: 80px 20px;
    background: #1e293b;
}

.platform-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.platform-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
}

.platform-title span {
    color: #fbbf24;
}

.overlapping-logos {
    display: flex;
    position: relative;
    align-items: center;
}

.overlapping-logos img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -20px;
    position: relative;
}

.overlapping-logos img:first-child {
    margin-left: 0;
    z-index: 4;
}

.overlapping-logos img:nth-child(2) {
    z-index: 3;
}

.overlapping-logos img:nth-child(3) {
    z-index: 2;
}

.overlapping-logos img:nth-child(4) {
    z-index: 1;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-logo {
    font-size: 18px;
    font-weight: 600;
    color: #cbd5e1;
    padding: 15px 20px;
    border-radius: 8px;
    background: #334155;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    background: #475569;
    transform: translateY(-2px);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.partner-logo img {
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.partner-slider-section {
    width: 100%;
    z-index: 10;
}
.partner-slider-content {
    display: flex;
}
.partner-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.partner-slider-text {
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-slider-text h3 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.partner-slider-text p {
    font-size: 22px;
    font-weight: 600;
    color: #FFD600;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 40px;
}

.brand-slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brand-logos-row {
    display: flex;
    gap: 0px;
    animation: scrollLogos 25s linear infinite;
}

.brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    /* filter: grayscale(100%) brightness(200%); */
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

.slider-fade-left,
.slider-fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.slider-fade-left {
    background: linear-gradient(to right, #08198C, transparent);
    left: 0;
}

.slider-fade-right {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3), transparent);
    right: 0;
}

.hero-section .slider-fade-left,
.hero-section .slider-fade-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hero-section .slider-fade-left {
    background: linear-gradient(to right, rgba(8, 25, 140, 0.8), transparent);
    left: 0;
}

.hero-section .slider-fade-right {
    background: linear-gradient(to left, rgba(20, 55, 255, 0.8), transparent);
    right: 0;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-slider {
    /* margin-top: 60px; */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 10px 0;
    width: 100%;
    max-width: none;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: slideAnimation 20s linear infinite;
    width: fit-content;
}

.slide {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 150px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%) brightness(1);
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.second-container {
    max-width: 1200px;
    margin: 0 auto;
}

.second-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.second-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
}

.second-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin: 0;
    text-align: center;
}

.second-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    font-weight: 400;
    text-align: center;
}

.second-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    justify-content: center;
}

.feature-item i {
    color: #10b981;
    font-size: 20px;
}

.second-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.second-btn {
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.second-btn.primary {
    background: linear-gradient(135deg, #202CA9, #1e2390);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(32, 44, 169, 0.3);
}

.second-btn.primary:hover {
    background: linear-gradient(135deg, #1e2390, #1a1f7a);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 44, 169, 0.4);
}

.second-btn.secondary {
    background: transparent;
    color: #202CA9;
    border: 2px solid #202CA9;
}

.second-btn.secondary:hover {
    background: #202CA9;
    color: #ffffff;
    transform: translateY(-2px);
}

.second-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.second-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(32, 44, 169, 0.9), transparent);
    padding: 30px;
    color: #ffffff;
}

.overlay-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.overlay-text p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Story Section Styles */
.story-section {
    padding: 80px 20px;
    background: #ffffff;
}

.story-container {
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.story-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #1e293b;
}

.story-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.story-badge .tick-icon {
    height: 18px;
    width: auto;
    margin-right: 2px;
}

.story-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 60px 0;
    /* font-style: italic; */
}

.story-title .blue-text {
    color: #202DAA;
}

.story-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.story-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-stat-avatars {
    display: flex;
    align-items: center;
}

.story-stat-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
}

.story-stat-avatars img:first-child {
    margin-left: 0;
}

.story-stat-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.story-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.story-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.story-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

.story-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Journey Section Styles */
.journey-section {
    padding: 80px 0;
    background: #202CA9;
    overflow: hidden;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-left {
    flex: 1;
    min-width: 0;
}

.journey-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #e2e8f0;
}

.journey-badge {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.journey-badge .tick-icon {
    height: 18px;
    width: auto;
    margin-right: 2px;
}

.journey-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 50px 0;
}

.yellow-underline {
    color: #FFD600;
    /* text-decoration: underline; */
    text-underline-offset: 4px;
}

.journey-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.journey-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.journey-stat-avatars {
    display: flex;
    align-items: center;
}

.journey-stat-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #202CA9;
    margin-left: -10px;
    object-fit: cover;
}

.journey-stat-avatars img:first-child {
    margin-left: 0;
}

.journey-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.journey-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.journey-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.journey-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.journey-right {
    flex: 1;
    min-width: 0;
    position: relative;
}

.journey-slider {
    overflow: hidden;
}

.journey-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.journey-card {
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    border: 3px solid rgba(100, 140, 255, 0.5);
    padding: 12px;
    position: relative;
}

.journey-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.journey-card-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 20px;
    text-align: center;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
}

.journey-card-overlay span {
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
}

.journey-card-overlay strong {
    color: #202CA9;
    font-size: 22px;
    font-weight: 500;
}

.journey-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

.journey-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journey-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0 50px;
    background: #ffffff;
    text-align: center;
    overflow: clip;
}

.content-phone-area {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.content-slider-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
    height: 100%;
}

.content-slider-track {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.content-slide {
    flex-shrink: 0;
    width: 150px;
    height: 290px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #e8e8e8;
    transition: opacity 0.8s ease, transform 0.8s ease, width 0.8s ease;
}

.content-slide:nth-child(odd) {
    transform: translateY(25px);
}

.content-slide:nth-child(even) {
    transform: translateY(-25px);
}

.content-slide.placeholder {
    opacity: 0.6;
}

.content-slide:not(.placeholder) {
    opacity: 0.9;
}

.content-slide.active {
    opacity: 0;
    pointer-events: none;
    width: 260px;
    height: 290px;
    background: transparent;
}

.content-slide img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    opacity: 0.7;
    z-index: 3;
    pointer-events: none;
}

.content-slide.active .content-play-icon {
    display: none;
}

.content-phone-frame {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 530px;
    z-index: 5;
    pointer-events: none;
}

.content-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-active-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 215px;
    height: 440px;
    z-index: 3;
    border-radius: 30px;
    overflow: hidden;
}

.content-active-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.content-active-image img.slide-out {
    transform: translateX(-100%);
}

.content-active-image img.slide-in {
    transform: translateX(100%);
}

.content-active-image img.slide-center {
    transform: translateX(0);
}

.content-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #64748b;
}

.content-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.content-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 30px 0;
}

.content-blue {
    color: #202DAA;
}

.content-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.content-follow-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #202DAA;
    border-radius: 10px;
    color: #202DAA;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-follow-btn:hover {
    background: #202DAA;
    color: #ffffff;
}

.content-followers {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.content-followers-number {
    font-size: 22px;
    font-weight: 500;
    color: #1e293b;
}

.content-followers-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

/* Transformation Section Styles */
.transform-section {
    padding: 80px 0;
    background: #202CA9;
}

.transform-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.transform-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.transform-left {
    flex: 0 0 340px;
    position: relative;
    overflow: hidden;
}

.transform-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.transform-bg-img {
    display: block;
    width: 94%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0 0 20px;
    position: relative;
    z-index: 1;
}

.transform-person-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.transform-right {
    flex: 1;
    padding: 50px 50px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transform-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
    flex-wrap: wrap;
}

.transform-badge {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.transform-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    color: #1e293b;
    margin: 0 0 30px 0;
}

.transform-title em {
    /* font-style: italic; */
    color: #202DAA;
    /* text-decoration: underline; */
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.transform-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    margin-bottom: 35px;
}

.transform-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 400;
}

.transform-checkbox {
    width: 22px;
    height: 22px;
    background: #202DAA;
    color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.transform-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #202DAA;
    border-radius: 10px;
    color: #202DAA;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.transform-btn:hover {
    background: #202DAA;
    color: #ffffff;
}

/* Guest Section Styles */
.guest-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #e8eeff 100%);
    overflow: hidden;
}

.guest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.guest-left {
    flex: 0 0 340px;
    padding-top: 20px;
}

.guest-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.guest-blue {
    color: #202DAA;
}

.guest-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 300px;
}

.guest-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.guest-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #202DAA;
    background: transparent;
    color: #202DAA;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.guest-nav-btn:hover {
    background: #202DAA;
    color: #ffffff;
}

.guest-learn-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #202DAA;
    border-radius: 10px;
    color: #202DAA;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guest-learn-btn:hover {
    background: #202DAA;
    color: #ffffff;
}

.guest-right {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.guest-slider {
    overflow: visible;
}

.guest-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.guest-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.guest-card:nth-child(2) {
    margin-top: 40px;
}

.guest-card:nth-child(3) {
    margin-top: 20px;
}

.guest-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.guest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guest-card-info {
    padding: 16px 20px;
    background: #ffffff;
}

.guest-card-role {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.guest-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-card-company {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.guest-card-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
}

/* Crown CTA Section Styles */
.crown-section {
    padding: 60px 0;
    background: #ffffff;
}

.crown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crown-banner {
    background: linear-gradient(135deg, #202DAA 0%, #3947C9 92%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.crown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14%;
    width: 100%;
    height: 100%;
    background: url('../images/right-arrow2.png') no-repeat center center;
    background-size: 60% auto;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.crown-content {
    padding: 50px 60px;
    flex: 1;
    z-index: 2;
    position: relative;
}

.crown-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.crown-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.crown-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 35px 0;
}

.crown-yellow {
    color: #FFD700;
}

.crown-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.crown-schedule-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    border-radius: 10px;
    color: #202DAA;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.crown-schedule-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.crown-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.crown-availability i {
    font-size: 16px;
}

.crown-image {
    flex: 0 0 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.crown-image img {
    width: 500px;
    height: auto;
    display: block;
    position: relative;
    right: -20px;
    bottom: -10px;
}

/* Trusted Section Styles */
.trusted-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.trusted-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.trusted-flower {
    position: absolute;
    width: 120px;
    height: auto;
    z-index: 1;
}

.trusted-flower-left {
    left: -60px;
    bottom: 40px;
    transform: scaleX(1);
}

.trusted-flower-right {
    right: -60px;
    bottom: 40px;
}

.trusted-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

.trusted-badge {
    background: rgba(32, 45, 170, 0.06);
    border: 1px solid rgba(32, 45, 170, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.trusted-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 50px 0;
}

.trusted-blue {
    color: #202DAA;
}

.trusted-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.trusted-stat {
    text-align: center;
}

.trusted-stat-number {
    font-size: 56px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0px;
}

.trusted-arrow {
    width: 60px;
    height: 60px;
    display: inline-block;
}

.trusted-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #64748b;

}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trusted-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.trusted-logo:hover {
    transform: scale(1.05);
}

.trusted-contact {
    text-align: center;
}

.trusted-contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.trusted-email {
    font-size: 15px;
    color: #64748b;
}

.trusted-email:hover {
color: #202DAA;
}

/* Beyond Journey Section Styles */
.beyond-section {
position: relative;
min-height: 840px;
overflow: hidden;
display: flex;
align-items: center;
}

.beyond-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.beyond-bg img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.beyond-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
width: 100%;
position: relative;
z-index: 2;
display: flex;
justify-content: flex-end;
}

.beyond-content {
max-width: 560px;
padding: 60px 0;
text-align: right;
}

.beyond-top-text {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
margin-bottom: 20px;
font-size: 15px;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
}

.beyond-badge {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.25);
padding: 6px 14px;
border-radius: 20px;
color: #ffffff;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
}

.beyond-title {
font-size: 42px;
font-weight: 500;
line-height: 1.2;
color: #ffffff;
margin: 0 0 30px 0;
}

.beyond-yellow {
color: #FFD700;
/* text-decoration: underline; */
text-underline-offset: 4px;
text-decoration-thickness: 3px;
}

.beyond-platforms {
margin-bottom: 35px;
}

.beyond-platform-logos {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 24px;
}

.beyond-logo-stack {
display: flex;
align-items: center;
}

.beyond-platform-icon {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid #ffffff;
object-fit: contain;
background: #ffffff;
margin-left: -10px;
}

.beyond-platform-icon:first-child {
margin-left: 0;
}

.beyond-stat {
text-align: right;
}

.beyond-stat-number {
font-size: 22px;
font-weight: 500;
color: #ffffff;
line-height: 1;
}

.beyond-stat-label {
display: block;
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
font-weight: 400;
margin-top: 2px;
}

.beyond-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 20px;
}

.beyond-schedule-btn {
display: flex;
align-items: center;
gap: 12px;
background: #202DAA;
padding: 14px 24px;
border-radius: 10px;
color: #ffffff;
text-decoration: none;
transition: all 0.3s ease;
}

.beyond-schedule-btn i {
font-size: 20px;
}

.beyond-schedule-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}

.beyond-schedule-text span {
font-size: 12px;
font-weight: 400;
opacity: 0.8;
}

.beyond-schedule-text strong {
font-size: 16px;
font-weight: 700;
}

.beyond-schedule-btn:hover {
background: #1a2490;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.beyond-book-btn {
display: inline-block;
padding: 16px 32px;
border: 2px solid #ffffff;
border-radius: 10px;
color: #ffffff;
font-size: 15px;
font-weight: 700;
text-decoration: none;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}

.beyond-book-btn:hover {
background: #ffffff;
color: #1e293b;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fb;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.testimonials-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

.testimonials-badge {
    background: rgba(32, 45, 170, 0.06);
    border: 1px solid rgba(32, 45, 170, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: #1e293b;
    margin: 0;
}

.testimonials-blue {
    color: #202DAA;
}

.testimonials-nav {
    display: flex;
    gap: 10px;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-nav-btn:hover {
    border-color: #202DAA;
    color: #202DAA;
}

.testimonials-slider {
    overflow: visible;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 360px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e8ecf1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.testimonial-date {
    font-size: 13px;
    font-weight: 600;
    color: #202DAA;
    background: rgba(32, 45, 170, 0.06);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.testimonial-author-info span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
}

/* LinkedIn CTA Section Styles */
.linkedin-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.linkedin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.linkedin-banner {
    background: linear-gradient(92deg, #202DAA 0%, #3947C9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.linkedin-content {
    flex: 1;
    padding: 50px 60px;
    z-index: 2;
}

.linkedin-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.linkedin-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.linkedin-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.linkedin-yellow {
    color: #FFD700;
    /* text-decoration: underline; */
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.linkedin-follow-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    border-radius: 10px;
    color: #202DAA;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.linkedin-follow-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.linkedin-image {
    flex: 0 0 400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.linkedin-image img {
    width: 400px;
    height: auto;
    display: block;
    position: relative;
    right: -20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .platform-logos {
        gap: 20px;
    }
    
    .second-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .second-title {
        font-size: 32px;
    }
    
    .second-buttons {
        justify-content: center;
    }
    
    .journey-container {
        flex-direction: column;
        gap: 40px;
    }

    .journey-title {
        font-size: 28px;
    }

    .journey-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .journey-card {
        min-width: 250px;
    }

    .content-phone-area {
        height: 420px;
    }

    .content-phone-frame {
        width: 220px;
        height: 420px;
    }

    .content-active-image {
        width: 192px;
        height: 384px;
        border-radius: 28px;
    }

    .content-slide {
        width: 120px;
        height: 240px;
    }

    .content-title {
        font-size: 32px;
    }

    .transform-card {
        flex-direction: column;
    }

    .transform-left {
        flex: none;
        min-height: 300px;
    }

    .transform-person-img {
        left: 0;
        width: 80%;
    }

    .transform-right {
        padding: 35px 30px;
    }

    .transform-title {
        font-size: 28px;
    }

    .transform-checklist {
        grid-template-columns: 1fr;
    }

    .guest-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .guest-left {
        flex: none;
        text-align: center;
    }

    .guest-title {
        font-size: 32px;
    }

    .guest-description {
        max-width: 100%;
    }

    .guest-nav {
        justify-content: center;
    }

    .guest-card {
        width: 240px;
    }

    .guest-card:nth-child(2),
    .guest-card:nth-child(3) {
        margin-top: 0;
    }

    .crown-banner {
        flex-direction: column;
        min-height: auto;
    }

    .crown-content {
        padding: 40px 30px;
    }

    .crown-title {
        font-size: 30px;
    }

    .crown-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .crown-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .crown-image img {
        width: 260px;
        right: 0;
        bottom: 0;
    }

    .trusted-title {
        font-size: 36px;
    }

    .trusted-stats {
        gap: 40px;
    }

    .trusted-stat-number {
        font-size: 40px;
    }

    .trusted-arrow {
        width: 22px;
        height: 22px;
    }

    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo {
        height: 32px;
    }

    .trusted-flower {
        width: 80px;
    }

    .beyond-section {
        min-height: 400px;
    }

    .beyond-container {
        justify-content: center;
        padding: 0 20px;
    }

    .beyond-content {
        max-width: 100%;
        text-align: center;
    }

    .beyond-top-text {
        justify-content: center;
    }

    .beyond-title {
        font-size: 30px;
    }

    .beyond-platform-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .beyond-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-title {
        font-size: 34px;
    }

    .testimonial-card {
        min-width: 280px;
    }
    .testimonials-container {
        padding: 0 20px;
    }

    .linkedin-banner {
        flex-direction: column;
        min-height: auto;
    }

    .linkedin-content {
        padding: 40px 30px;
    }

    .linkedin-title {
        font-size: 30px;
    }

    .linkedin-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .linkedin-image img {
        width: 260px;
        right: 0;
    }

    .linkedin-container {
        padding: 0 20px;
    }



    .linkedin-banner {
        padding: 20px 0;
    }

    .linkedin-content {
        padding: 20px;
    }

    .linkedin-title {
        font-size: 24px;
    }

    .linkedin-image {
        width: 100%;
    }
    .linkedin-image img {
        width: 200px;
    }

    .linkedin-section {
        padding: 40px 0;
    }

    .linkedin-follow-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .platform-logos {
        gap: 15px;
    }

    .platform-logo {
        font-size: 14px;
        padding: 10px 15px;
    }

    .story-title {
        font-size: 28px;
    }

    .story-stats {
        gap: 15px;
    }

    .content-phone-area {
        height: 340px;
    }

    .content-phone-frame {
        width: 180px;
        height: 340px;
    }

    .content-active-image {
        width: 157px;
        height: 310px;
        border-radius: 24px;
    }

    .content-slide {
        width: 100px;
        height: 200px;
    }

    .content-title {
        font-size: 26px;
    }

    .content-follow-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .transform-section {
        padding: 50px 0;
    }

    .transform-left {
        min-height: 240px;
    }

    .transform-person-img {
        width: 200px;
    }

    .transform-title {
        font-size: 24px;
    }

    .transform-right {
        padding: 25px 20px;
    }

    .transform-check-item {
        font-size: 13px;
    }

    .transform-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .guest-section {
        padding: 50px 0;
    }

    .guest-title {
        font-size: 28px;
    }

    .guest-card {
        width: 200px;
    }

    .guest-card-img {
        height: 220px;
    }

    .guest-learn-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .crown-section {
        padding: 40px 0;
    }

    .crown-title {
        font-size: 24px;
    }

    .crown-schedule-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .crown-image img {
        width: 200px;
    }

    .trusted-section {
        padding: 50px 0;
    }

    .trusted-title {
        font-size: 28px;
    }

    .trusted-stats {
        flex-direction: column;
        gap: 30px;
    }

    .trusted-stat-number {
        font-size: 36px;
        justify-content: center;
    }

    .trusted-logos {
        gap: 20px;
    }

    .trusted-logo {
        height: 28px;
    }

    .trusted-flower {
        width: 60px;
    }

    .beyond-section {
        min-height: 360px;
    }

    .beyond-title {
        font-size: 24px;
    }

    .beyond-schedule-btn {
        padding: 10px 18px;
    }

    .beyond-book-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 24px;
    }

    .testimonials-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* Hero Centered Variant (Story Page) */
.hero-centered {
    background-image: url('../images/breadcrumb.png');
}

.hero-centered .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 900px;
}

.hero-centered .hero-content {
    align-items: center;
}

.hero-centered .hero-top-text {
    justify-content: center;
}

.hero-centered .hero-title {
    font-size: 62px;
    line-height: 1.15;
}

.hero-centered .hero-description {
    max-width: 650px;
    text-align: center;
    font-size: 16px;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-centered .hero-title {
        font-size: 36px;
    }
}

/* Enquiry Section */
.enquiry-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.enquiry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.enquiry-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enquiry-form-wrapper {
    position: absolute;
    top: 0;
    right: 90px;
    width: 380px;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 30px 0;
    box-sizing: border-box;
}

.enquiry-form {
    width: 100%;
    background: #ffffff;
    padding: 28px 28px 24px;
    box-sizing: border-box;
}

.enquiry-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    padding-top: 12px;
}

.enquiry-form .enquiry-label:first-child {
    padding-top: 15px;
}

.enquiry-label i {
    font-size: 9px;
    color: #94a3b8;
    margin-left: 3px;
}

.enquiry-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    outline: none;
    box-sizing: border-box;
}

.enquiry-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-size: 13px;
}

.enquiry-input:focus {
    background: #e8e8e8;
}

.enquiry-textarea {
    min-height: 75px;
    resize: vertical;
    line-height: 1.4;
}

.enquiry-row {
    display: flex;
    gap: 10px;
}

.enquiry-col {
    flex: 1;
}

.enquiry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}

.enquiry-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border: 1.5px solid #202DAA;
    border-radius: 20px;
    font-size: 10px;
    color: #202DAA;
    background: transparent;
    transition: background 0.2s ease;
}

.enquiry-tag:hover {
    background: rgba(32, 45, 170, 0.06);
}

.tag-close {
    background: none;
    border: none;
    color: #202DAA;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.tag-close:hover {
    color: #e53e3e;
}

.enquiry-submit-btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.enquiry-submit-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 900px) {
    .enquiry-section {
        min-height: auto;
    }

    .enquiry-bg {
        position: relative;
        height: 320px;
    }

    .enquiry-form-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
    }

    .enquiry-form {
        padding: 24px 20px;
    }

    .enquiry-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #ffffff;
}

.featured-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef0ff;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.featured-badge .tick-icon {
    width: 18px;
    height: 18px;
}

.featured-title {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 50px 0;
}

.featured-blue {
    color: #202DAA;
    font-style: italic;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 24px;
}

.featured-card {
    background: #f5f7fa;
    border-radius: 16px;
    overflow: hidden;
}

.featured-card-left {
    display: flex;
    flex-direction: column;
}

.featured-card-left .featured-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-card-left .featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card-body {
    padding: 20px 22px 24px;
}

.featured-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.featured-cve-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.featured-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.featured-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.featured-card-desc {
    font-size: 13px;
    color: #64748b;
}

.featured-logo-bottom {
    width: 44px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.featured-card-merged {
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fa;
}

.featured-grid-reverse {
    grid-template-columns: 1.8fr 1fr;
    margin-top: 24px;
}

.featured-card-merged .featured-card-img-tall {
    width: 50%;
    min-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-card-merged .featured-card-img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 16px;
    border-radius: 25px;
}

.featured-card-merged .featured-card-body {
    width: 50%;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.featured-card-merged .featured-cve-badge {
    margin-bottom: 14px;
    align-self: flex-start;
}

.featured-card-merged .featured-card-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.featured-card-merged .featured-card-desc {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 900px) {
    .featured-section {
        padding: 50px 0;
    }

    .featured-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-grid-reverse {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .featured-card-img-tall {
        height: 300px;
    }

    .featured-card-merged {
        flex-direction: column;
    }

    .featured-card-merged .featured-card-img-tall {
        width: 100%;
        height: 260px;
    }

    .featured-card-merged .featured-card-body {
        width: 100%;
    }
}

/* Speaking Engagements Section */
.speaking-section {
    padding: 80px 0;
    background: #ffffff;
}

.speaking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.speaking-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.speaking-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef0ff;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.speaking-badge .tick-icon {
    width: 18px;
    height: 18px;
}

.speaking-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.speaking-title {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
}

.speaking-blue {
    color: #202DAA;
    font-style: italic;
}

.speaking-nav {
    display: flex;
    gap: 10px;
}

.speaking-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #c5c9e6;
    background: transparent;
    font-size: 22px;
    color: #202DAA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.speaking-nav-btn:hover {
    background: #eef0ff;
    border-color: #202DAA;
}

.speaking-slider {
    overflow: hidden;
    width: 100%;
}

.speaking-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.speaking-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    flex-shrink: 0;
}

.speaking-card-large {
    width: calc(45% - 10px);
}

.speaking-card-small {
    width: calc(27.5% - 10px);
}

.speaking-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.speaking-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 100%);
}

.speaking-cve-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    align-self: flex-start;
}

.speaking-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.speaking-card-info {
    flex: 1;
}

.speaking-university {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.speaking-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.speaking-card-small .speaking-card-title {
    font-size: 16px;
}

.speaking-play-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.speaking-play-icon:hover {
    opacity: 1;
}

.speaking-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.speaking-card-small .speaking-card-bottom {
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .speaking-section {
        padding: 50px 0;
    }

    .speaking-title {
        font-size: 32px;
    }

    .speaking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .speaking-slider-track {
        gap: 20px;
        transition: transform 0.5s ease;
    }

    .speaking-card-large {
        width: 75%;
    }

    .speaking-card-small {
        width: 65%;
    }

    .speaking-card {
        min-height: 260px;
    }
}

/* Events Gallery Section */
.events-section {
    padding: 60px 0 80px;
    padding-top: 0;
    background: #ffffff;
}

.events-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.events-filter-btn {
    padding: 8px 22px;
    border-radius: 5px;
    border: 1.5px solid #d1d5db;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.events-filter-btn.active {
    background: #202DAA;
    color: #ffffff;
    border-color: #202DAA;
}

.events-filter-btn:hover:not(.active) {
    border-color: #202DAA;
    color: #202DAA;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.events-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.events-card.hidden {
    display: none;
}

.events-card-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
}

.events-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.events-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.events-play-icon:hover {
    opacity: 1;
}

.events-cve-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    z-index: 2;
}

.events-card-body {
    padding: 14px 4px 8px;
}

.events-university {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}

.events-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0;
}

@media (max-width: 900px) {
    .events-section {
        padding: 40px 0 60px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .events-card-img-wrap {
        height: 160px;
    }

    .events-card-title {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients-section {
    background: #ffffff;
    padding: 60px 20px 50px;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #202DAA;
    /* font-weight: 500; */
}

.clients-badge {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    padding: 3px 6px;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.clients-arrow-icon {
    width: 50px;
    height: 50px;
    left: -30px;
    position: relative;
    top: -15px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
.footer {
    background: linear-gradient(92deg, #1e2aa0 0%, #1e2aa0 100%);
    padding: 60px 0 0;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('../images/footer-bg-rishav.png') no-repeat center bottom;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-title {
    font-size: 36px;
    /* font-weight: 500; */
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.footer-yellow {
    color: #FFD700;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    gap: 10px;
}

.footer-email-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    width: 220px;
    padding: 10px 0;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-btn {
    background: #ffffff;
    color: #202DAA;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a i {
    font-size: 10px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social > span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.footer-social a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-social a i.fab {
    font-size: 16px;
}

.footer-social a i.fas {
    font-size: 10px;
}

/* .footer-watermark {
    font-size: 230px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    text-align: center;
    line-height: 1;
    margin-top: 10px;
    padding-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    letter-spacing: -2px;
    width: 100%;
    position: relative;
    z-index: 2;
} */

@media (max-width: 768px) {
    .clients-logos {
        gap: 30px;
    }

    .client-logo {
        height: 35px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-watermark {
        font-size: 60px;
    }

    .footer-email-input {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 20px;
    }

    .clients-logos {
        gap: 20px;
    }

    .client-logo {
        height: 28px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-subscribe {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }

    .footer-email-input {
        width: 100%;
        text-align: center;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-watermark {
        font-size: 40px;
    }
}

/* Counter Section */
.counter-section {
    background: linear-gradient(92deg, #1e2aa0 0%, #2533c4 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.counter-bg-arrow {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.counter-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    flex: 1;
}

.counter-number {
    display: block;
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
}

.counter-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .counter-section {
        padding: 40px 0;
    }

    .counter-container {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding: 0 20px;
    }

    .counter-item {
        flex: 0 0 45%;
    }

    .counter-number {
        font-size: 36px;
    }

    .counter-bg-arrow {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .counter-item {
        flex: 0 0 100%;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-bg-arrow {
        width: 150px;
        opacity: 0.05;
    }
}

/* ========== Journey Parallax Section ========== */
.journey-parallax-section {
    position: relative;
    height: 500vh;
    background: #fff;
}

.journey-parallax-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journey-parallax-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px 30px;
}

/* Header */
.journey-parallax-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.journey-parallax-top-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.journey-parallax-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #222;
}

.journey-parallax-badge .tick-icon {
    width: 18px;
    height: 18px;
}

.journey-parallax-title {
    font-size: 42px;
    font-weight: 500;
    color: #111;
    line-height: 1.15;
}

.journey-parallax-italic {
    font-style: italic;
    color: #202DAA;
}

.journey-parallax-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.journey-parallax-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.journey-parallax-avatars {
    display: flex;
}

.journey-parallax-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.journey-parallax-avatars img:first-child {
    margin-left: 0;
}

.journey-parallax-stat-info {
    display: flex;
    flex-direction: column;
}

.journey-parallax-stat-number {
    font-size: 20px;
    font-weight: 500;
    color: #111;
}

.journey-parallax-stat-label {
    font-size: 12px;
    color: #777;
}

.journey-parallax-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.journey-parallax-learn-btn {
    padding: 10px 28px;
    border: 2px solid #222;
    border-radius: 6px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.journey-parallax-learn-btn:hover {
    background: #222;
    color: #fff;
}

.journey-parallax-linkedin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.journey-parallax-linkedin-icon {
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.journey-parallax-linkedin-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #555;
    line-height: 1.3;
}

.journey-parallax-linkedin-text strong {
    font-size: 16px;
    color: #111;
}

/* Timeline */
.journey-parallax-timeline {
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.journey-timeline-years {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.journey-year-label {
    font-size: 16px;
    font-weight: 700;
    color: #c0c0c0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.journey-year-label.active {
    color: #111E73;
    font-size: 18px;
}

.journey-timeline-line {
    position: relative;
    height: 3px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 20px;
}

.journey-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #111E73;
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

.journey-timeline-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.journey-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e0e0e0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.journey-dot.active {
    background: #111E73;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
    transform: scale(1.3);
}

.journey-dot.passed {
    background: #111E73;
    box-shadow: 0 0 0 2px #111E73;
}

.journey-timeline-date-labels {
    display: flex;
    justify-content: space-between;
}

.journey-date-label {
    font-size: 12px;
    color: #bbb;
    transition: all 0.4s ease;
    padding: 4px 10px;
    border-radius: 20px;
    background: transparent;
}

.journey-date-label.active {
    background: #111E73;
    color: #fff;
    font-weight: 600;
}

/* Card Area */
.journey-parallax-card-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.journey-parallax-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 24px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
}

.journey-parallax-nav:hover {
    border-color: #111E73;
    color: #111E73;
    background: #f0f0ff;
}

.journey-parallax-card-wrapper {
    position: relative;
    width: 780px;
    height: 340px;
    overflow: hidden;
}

.journey-parallax-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.journey-parallax-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.journey-parallax-card.exit-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
}

.journey-parallax-card-inner {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.35), 0 20px 60px rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, #5b5fc7 0%, #6366f1 50%, #818cf8 100%);
    padding: 14px;
    padding-right: 0;
}

.journey-parallax-card-img {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
}

.journey-parallax-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.journey-card-date-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #111E73;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 3;
}

.journey-parallax-card-content {
    position: relative;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    width: 58%;
    overflow: hidden;
}

.journey-card-bg-arrow {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 500px;
    height: 230px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.journey-card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    width: fit-content;
}

.journey-parallax-card-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.journey-parallax-card-content h3 em {
    font-style: italic;
    font-weight: 500;
}

.journey-parallax-card-content p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.journey-card-avatars {
    display: flex;
}

.journey-card-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    margin-left: -8px;
    object-fit: cover;
}

.journey-card-avatars img:first-child {
    margin-left: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .journey-parallax-header {
        flex-direction: column;
        gap: 20px;
    }

    .journey-parallax-right {
        align-items: flex-start;
    }

    .journey-parallax-title {
        font-size: 32px;
    }

    .journey-parallax-card-wrapper {
        width: 560px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .journey-parallax-section {
        height: 400vh;
    }

    .journey-parallax-container {
        padding: 20px;
    }

    .journey-parallax-title {
        font-size: 26px;
    }

    .journey-parallax-actions {
        flex-wrap: wrap;
    }

    .journey-parallax-card-wrapper {
        width: 100%;
        height: 300px;
    }

    .journey-parallax-card-content {
        width: 100%;
        padding: 20px;
    }

    .journey-parallax-card-content h3 {
        font-size: 18px;
    }

    .journey-timeline-years {
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 5px;
    }

    .journey-year-label {
        font-size: 13px;
        white-space: nowrap;
    }

    .journey-date-label {
        font-size: 10px;
    }

    .journey-parallax-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .journey-parallax-card-wrapper {
        height: 380px;
    }

    .journey-parallax-card-content h3 {
        font-size: 16px;
    }

    .journey-parallax-card-content p {
        font-size: 12px;
    }
}

/* ===== Testimonial Section ===== */
.testi-section {
    background: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    margin-bottom: 50px;
}

.testi-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.testi-badge .tick-icon {
    width: 16px;
    height: 16px;
}

.testi-title {
    font-size: 48px;
    font-weight: 500;
    color: #111;
    line-height: 1.15;
}

.testi-blue {
    color: #111E73;
}

/* Slider Area */
.testi-slider-area {
    position: relative;
}

.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    line-height: 1;
}

.testi-nav:hover {
    border-color: #111E73;
    color: #111E73;
    background: #f0f0ff;
}

.testi-prev {
    left: 20px;
}

.testi-next {
    right: 20px;
}

/* Slider */
.testi-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testi-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card */
.testi-card {
    display: flex;
    flex-shrink: 0;
    width: 50%;
    min-height: 480px;
    background: #fff;
    border-right: 1px solid #eee;
}

/* Card Image Side */
.testi-card-img {
    position: relative;
    width: 48%;
    flex-shrink: 0;
    overflow: hidden;
}

.testi-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    /* background: rgba(255, 255, 255, 0.75); */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.testi-play-btn img {
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

.testi-play-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.testi-card-img-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.testi-person-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.testi-person-info h4 span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 6px;
}

.testi-person-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin: 3px 0 0;
}

.testi-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.testi-company-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.testi-company-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

/* Card Content Side */
.testi-card-content {
    width: 52%;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-tag {
    display: inline-block;
    background: #eef2ff;
    color: #111E73;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.testi-quote {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    flex-grow: 1;
    margin-bottom: 28px;
}

.testi-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.testi-category {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.testi-year {
    font-size: 14px;
    color: #999;
}

/* Testimonial Responsive */
@media (max-width: 1024px) {
    .testi-title {
        font-size: 38px;
    }

    .testi-card {
        min-height: 420px;
    }

    .testi-quote {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .testi-section {
        padding: 50px 0 40px;
    }

    .testi-title {
        font-size: 30px;
    }

    .testi-card {
        width: 85vw;
        min-height: auto;
        flex-direction: column;
    }

    .testi-card-img {
        width: 100%;
        height: 240px;
    }

    .testi-card-content {
        width: 100%;
        padding: 20px;
    }

    .testi-quote {
        font-size: 13px;
    }

    .testi-nav {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .testi-prev {
        left: 8px;
    }

    .testi-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .testi-title {
        font-size: 26px;
    }

    .testi-card {
        width: 90vw;
    }

    .testi-card-img {
        height: 200px;
    }
}

/* ===== Growth Consultancy Section ===== */
.growth-section {
    background: #fff;
    padding: 80px 0;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.growth-left {
    flex: 1;
}

.growth-top-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.growth-badge .tick-icon {
    width: 16px;
    height: 16px;
}

.growth-title {
    font-size: 44px;
    font-weight: 500;
    color: #111;
    line-height: 1.15;
    margin-bottom: 20px;
}

.growth-blue {
    color: #111E73;
}

.growth-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
    margin-bottom: 28px;
}

.growth-checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.growth-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.growth-check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #111E73;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

.growth-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
}

.growth-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #111E73;
    border-radius: 8px;
    background: transparent;
    color: #111E73;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.growth-cta-btn:hover {
    background: #111E73;
    color: #fff;
}

.growth-stat {
    display: flex;
    flex-direction: column;
}

.growth-stat-number {
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.growth-stat-label {
    font-size: 12px;
    color: #888;
}

.growth-right {
    flex-shrink: 0;
}

.growth-img-wrapper {
    width: 440px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.growth-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Growth Responsive */
@media (max-width: 1024px) {
    .growth-container {
        gap: 40px;
    }

    .growth-title {
        font-size: 36px;
    }

    .growth-img-wrapper {
        width: 340px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .growth-section {
        padding: 50px 0;
    }

    .growth-container {
        flex-direction: column;
        text-align: center;
    }

    .growth-top-text {
        justify-content: center;
    }

    .growth-title {
        font-size: 30px;
    }

    .growth-desc {
        max-width: 100%;
    }

    .growth-checks {
        align-items: center;
    }

    .growth-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }

    .growth-img-wrapper {
        width: 300px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .growth-title {
        font-size: 26px;
    }

    .growth-img-wrapper {
        width: 260px;
        height: 320px;
    }

    .growth-cta-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* ===== Media & Awards Section ===== */
.media-section {
    background: #f9fafb;
    padding: 80px 0;
}

.media-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.media-header {
    text-align: center;
    margin-bottom: 50px;
}

.media-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.media-badge .tick-icon {
    width: 16px;
    height: 16px;
}

.media-title {
    font-size: 42px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 24px;
}

.media-blue {
    color: #111E73;
}

.media-header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.media-book-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid #111E73;
    border-radius: 8px;
    background: transparent;
    color: #111E73;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.media-book-btn:hover {
    background: #111E73;
    color: #fff;
}

.media-speaker-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.media-speaker-logos {
    display: flex;
    gap: -6px;
}

.media-speaker-logos img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 2px solid #eee;
    margin-left: -6px;
}

.media-speaker-logos img:first-child {
    margin-left: 0;
}

.media-speaker-stat {
    display: flex;
    flex-direction: column;
}

.media-stat-number {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
}

.media-stat-label {
    font-size: 11px;
    color: #888;
}

/* Media Cards */
.media-cards-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.media-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.media-card-img {
    width: 280px;
    min-height: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #111;
}

.media-img-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-img-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.media-img-track img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.media-img-prev,
.media-img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.media-img-prev {
    left: 8px;
}

.media-img-next {
    right: 8px;
}

.media-img-prev:hover,
.media-img-next:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Media Card Content */
.media-card-content {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.media-tag-year {
    background: #eef2ff;
    color: #111E73;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 14px;
}

.media-tag-label {
    background: #eef2ff;
    color: #111E73;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 14px;
}

.media-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 10px;
}

.media-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 18px;
}

.media-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.media-card-org {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-org-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.media-card-org span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.media-know-more {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid #111E73;
    border-radius: 6px;
    color: #111E73;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.media-know-more:hover {
    background: #111E73;
    color: #fff;
}

/* Media Pagination */
.media-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.media-page {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.media-page.active {
    background: #111E73;
    border-color: #111E73;
    color: #fff;
}

.media-page:hover:not(.active) {
    border-color: #111E73;
    color: #111E73;
}

/* Media Responsive */
@media (max-width: 768px) {
    .media-section {
        padding: 50px 0;
    }

    .media-title {
        font-size: 28px;
    }

    .media-header-actions {
        flex-direction: column;
        gap: 16px;
    }

    .media-card {
        flex-direction: column;
    }

    .media-card-img {
        width: 100%;
        height: 220px;
    }

    .media-card-content {
        padding: 20px;
    }

    .media-card-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .media-title {
        font-size: 24px;
    }

    .media-card-img {
        height: 180px;
    }

    .media-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===== Platforms & Publications Section ===== */
.pub-section {
    background: #fff;
    padding: 80px 0;
}

.pub-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.pub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 36px;
}

.pub-header-left {
    flex: 1;
}

.pub-top-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.pub-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.pub-badge .tick-icon {
    width: 16px;
    height: 16px;
}

.pub-title {
    font-size: 40px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
}

.pub-blue {
    color: #111E73;
}

.pub-header-right {
    max-width: 300px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding-top: 10px;
}

.pub-quote {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.pub-book-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid #111E73;
    border-radius: 8px;
    background: transparent;
    color: #111E73;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.pub-book-btn:hover {
    background: #111E73;
    color: #fff;
}

/* Logo Bar */
.pub-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pub-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
}

.pub-logo:hover {
    opacity: 1;
}

.pub-logo-count {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

/* Publication Grid */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pub-card {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}

.pub-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card with image on top, text below */
.pub-card-img-type .pub-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pub-card-img-type .pub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pub-card-img-type .pub-card-body {
    padding: 18px 20px;
}

/* Card text only type (no image, just content) */
.pub-card-text-type {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Row 2: side-by-side image + text cards (span 1.5 cols each) */
.pub-card-img-text {
    grid-column: span 1;
}

.pub-card-img-text .pub-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pub-card-img-text .pub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pub-card-img-text .pub-card-body {
    padding: 18px 20px;
}

/* Row 2 cards span wider */
.pub-grid .pub-card-img-text:nth-child(4) {
    grid-column: 1 / 2;
}

.pub-grid .pub-card-img-text:nth-child(5) {
    grid-column: 2 / 4;
}

/* Tags */
.pub-card-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.pub-tag {
    background: #eef2ff;
    color: #111E73;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}

.pub-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.pub-card-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pub-card-org {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pub-org-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.6;
}

/* Pub Responsive */
@media (max-width: 1024px) {
    .pub-title {
        font-size: 32px;
    }

    .pub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pub-grid .pub-card-img-text:nth-child(4),
    .pub-grid .pub-card-img-text:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .pub-section {
        padding: 50px 0;
    }

    .pub-header {
        flex-direction: column;
        gap: 20px;
    }

    .pub-header-right {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .pub-title {
        font-size: 28px;
    }

    .pub-grid {
        grid-template-columns: 1fr;
    }

    .pub-grid .pub-card-img-text:nth-child(4),
    .pub-grid .pub-card-img-text:nth-child(5) {
        grid-column: span 1;
    }

    .pub-logos {
        gap: 14px;
    }

    .pub-logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .pub-title {
        font-size: 24px;
    }
}

/* ===== Ventures Section ===== */
.ventures-section {
    background: #fff;
    padding: 80px 0;
}

.ventures-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.ventures-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.ventures-header-left {
    flex: 1;
}

.ventures-top-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.ventures-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #222;
    font-size: 13px;
}

.ventures-badge .tick-icon {
    width: 16px;
    height: 16px;
}

.ventures-title {
    font-size: 42px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 28px;
}

.ventures-italic {
    color: #111E73;
    font-style: italic;
}

.ventures-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ventures-learn-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #222;
    border-radius: 8px;
    background: transparent;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.ventures-learn-btn:hover {
    background: #222;
    color: #fff;
}

.ventures-linkedin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ventures-linkedin-icon {
    width: 38px;
    height: 38px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.ventures-linkedin-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.ventures-linkedin-text strong {
    font-size: 14px;
    color: #111;
    font-weight: 700;
}

.ventures-header-right {
    max-width: 340px;
    padding-top: 40px;
}

.ventures-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Ventures Logo Bar */
.ventures-logo-bar {
    background: linear-gradient(135deg, #2836AC, #3a4fd4, #5b6be6);
    border-radius: 70px;
    padding: 16px 30px;
    overflow: hidden;
}

.ventures-logo-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ventures-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.2s;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.ventures-logo:last-child {
    border-right: none;
    padding-right: 0;
}

.ventures-logo-highlight {
    /* background: rgba(255, 255, 255, 0.15); */
    /* border-radius: 50px; */
    padding: 14px 24px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ventures-logo-highlight .ventures-logo-main {
    height: 50px;
    opacity: 1;
    border-right: none;
    padding-right: 0;
}

.ventures-logo:hover {
    opacity: 1;
}

/* Ventures Responsive */
@media (max-width: 1024px) {
    .ventures-title {
        font-size: 34px;
    }

    .ventures-header {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ventures-section {
        padding: 50px 0;
    }

    .ventures-header {
        flex-direction: column;
        gap: 24px;
    }

    .ventures-header-right {
        max-width: 100%;
        padding-top: 0;
    }

    .ventures-title {
        font-size: 28px;
    }

    .ventures-actions {
        flex-wrap: wrap;
    }

    .ventures-logo-bar {
        padding: 16px 24px;
        border-radius: 40px;
    }

    .ventures-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ventures-title {
        font-size: 24px;
    }

    .ventures-logo-bar {
        border-radius: 30px;
        padding: 14px 20px;
    }

    .ventures-logo-track {
        justify-content: center;
        gap: 16px;
    }

    .ventures-logo {
        height: 24px;
    }
}

/* ===== Venture Card ===== */
.venture-card {
    display: flex;
    align-items: stretch;
    gap: 50px;
    margin-top: 60px;
}

.venture-card-left {
    flex-shrink: 0;
    width: 380px;
}

.venture-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.venture-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venture-card-img-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.venture-overlay-company {
    display: block;
    font-size: 11px;
    color: #111E73;
    font-weight: 600;
    margin-bottom: 4px;
}

.venture-overlay-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.venture-overlay-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.venture-overlay-date {
    font-size: 11px;
    color: #999;
}

.venture-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venture-card-title {
    font-size: 52px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 16px;
}

.venture-card-italic {
    color: #111E73;
    font-style: italic;
}

.venture-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    /* max-width: 360px; */
}

.venture-card-stats {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    margin-bottom: 28px;
}

.venture-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.venture-stat-number {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 50px;
    font-weight: 500;
    color: #111;
    line-height: 1;
}

.venture-arrow {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.venture-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.venture-card-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.venture-contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #222;
    border-radius: 8px;
    background: transparent;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.venture-contact-btn:hover {
    background: #222;
    color: #fff;
}

.venture-web-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.venture-web-icon {
    width: 38px;
    height: 38px;
    /* background: #111; */
    border: 1px solid #f5f5f5;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.venture-web-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.venture-web-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: #888;
    line-height: 1.3;
}

.venture-web-text strong {
    font-size: 14px;
    color: #111;
    font-weight: 700;
}

/* Venture Card Responsive */
@media (max-width: 1024px) {
    .venture-card {
        gap: 36px;
    }

    .venture-card-left {
        width: 320px;
    }

    .venture-card-title {
        font-size: 30px;
    }

    .venture-stat-number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .venture-card {
        flex-direction: column;
        gap: 28px;
    }

    .venture-card-left {
        width: 100%;
    }

    .venture-card-img {
        height: 280px;
    }

    .venture-card-title {
        font-size: 26px;
    }

    .venture-card-stats {
        gap: 24px;
    }

    .venture-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .venture-card-title {
        font-size: 22px;
    }

    .venture-card-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .venture-stat-number {
        font-size: 24px;
    }

    .venture-card-actions {
        flex-wrap: wrap;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 18px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .enquiry-form-wrapper {
        right: 40px;
        width: 340px;
    }

    .speaking-card-large {
        width: calc(50% - 10px);
    }

    .speaking-card-small {
        width: calc(50% - 10px);
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Global mobile padding */
    .nav-container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-section {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-top-text {
        flex-wrap: wrap;
        font-size: 15px;
    }

    .follow-section {
        font-size: 14px;
    }

    /* Platform Section */
    .platform-section {
        padding: 50px 20px;
    }

    .platform-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .platform-logos {
        gap: 15px;
    }

    .platform-logo {
        font-size: 14px;
        padding: 10px 14px;
    }

    /* Story Section */
    .story-section {
        padding: 50px 20px;
    }

    .story-container {
        padding: 0 20px;
    }

    /* Journey Section */
    .journey-section {
        padding: 50px 0;
    }

    .journey-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .journey-title {
        font-size: 28px;
    }

    .journey-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .journey-card {
        min-width: 260px;
    }

    /* Content Section */
    .content-section {
        padding: 50px 0;
    }

    .content-container {
        padding: 0 20px;
    }

    .content-title {
        font-size: 28px;
    }

    /* Transform Section */
    .transform-section {
        padding: 50px 20px;
    }

    .transform-card {
        flex-direction: column;
    }

    .transform-left {
        flex: none;
        min-height: 260px;
    }

    .transform-person-img {
        left: 0;
        width: 70%;
    }

    .transform-right {
        padding: 30px 20px;
    }

    .transform-title {
        font-size: 26px;
    }

    .transform-checklist {
        grid-template-columns: 1fr;
    }

    /* Guest Section */
    .guest-section {
        padding: 50px 0;
    }

    .guest-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .guest-left {
        flex: none;
    }

    .guest-title {
        font-size: 28px;
    }

    .guest-description {
        max-width: 100%;
    }

    .guest-card {
        width: 220px;
    }

    .guest-card:nth-child(2),
    .guest-card:nth-child(3) {
        margin-top: 0;
    }

    /* Crown Section */
    .crown-section {
        padding: 40px 0;
    }

    .crown-container {
        padding: 0 20px;
    }

    .crown-banner {
        flex-direction: column;
        min-height: auto;
    }

    .crown-content {
        padding: 30px 20px;
    }

    .crown-title {
        font-size: 26px;
    }

    .crown-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .crown-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .crown-image img {
        width: 220px;
        right: 0;
        bottom: 0;
    }

    /* Trusted Section */
    .trusted-section {
        padding: 50px 20px;
    }

    .trusted-container {
        padding: 0 20px;
    }

    .trusted-title {
        font-size: 30px;
    }

    .trusted-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .trusted-stat-number {
        font-size: 36px;
    }

    .trusted-logos {
        gap: 20px;
    }

    .trusted-logo {
        height: 30px;
    }

    /* Beyond Section */
    .beyond-section {
        min-height: 360px;
        padding: 40px 20px;
    }

    .beyond-container {
        justify-content: center;
        padding: 0 20px;
    }

    .beyond-content {
        max-width: 100%;
    }

    .beyond-title {
        font-size: 28px;
    }

    .beyond-actions {
        flex-wrap: wrap;
    }

    .beyond-platform-logos {
        flex-wrap: wrap;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 24px;
    }

    /* LinkedIn CTA Section */
    .linkedin-section {
        padding: 50px 0;
    }

    .linkedin-container {
        padding: 0 20px;
    }

    .linkedin-banner {
        flex-direction: column;
        min-height: auto;
    }

    .linkedin-content {
        padding: 30px 20px;
    }

    .linkedin-title {
        font-size: 26px;
    }

    .linkedin-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .linkedin-image img {
        width: 220px;
        right: 0;
    }

    /* Enquiry Section */
    .enquiry-section {
        min-height: auto;
    }

    .enquiry-bg {
        position: relative;
        height: 280px;
    }

    .enquiry-form-wrapper {
        position: relative;
        width: 100%;
        right: 0;
        height: auto;
        padding: 0;
    }

    .enquiry-form {
        padding: 24px 20px;
    }

    .enquiry-row {
        flex-direction: column;
        gap: 0;
    }

    /* Featured Section */
    .featured-section {
        padding: 50px 0;
    }

    .featured-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-grid-reverse {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .featured-card-merged {
        flex-direction: column;
    }

    .featured-card-merged .featured-card-img-tall {
        width: 100%;
        height: 240px;
    }

    .featured-card-merged .featured-card-body {
        width: 100%;
    }

    /* Speaking Section */
    .speaking-section {
        padding: 50px 0;
    }

    .speaking-title {
        font-size: 30px;
    }

    .speaking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .speaking-card-large {
        width: 80%;
    }

    .speaking-card-small {
        width: 70%;
    }

    .speaking-card {
        min-height: 260px;
    }

    /* Events Section */
    .events-section {
        padding: 40px 0;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .events-card-img-wrap {
        height: 160px;
    }

    .events-card-title {
        font-size: 15px;
    }

    .events-filter {
        flex-wrap: wrap;
    }

    /* Clients Section */
    .clients-section {
        padding: 40px 20px;
    }

    .clients-logos {
        gap: 30px;
    }

    .client-logo {
        height: 35px;
    }

    /* Footer */
    .footer {
        padding-bottom: 80px;
    }

    .footer-container {
        padding: 0 20px;
        padding-bottom: 40px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-title {
        font-size: 26px;
    }

    .footer-subscribe {
        width: 100%;
    }

    .footer-email-input {
        width: 100%;
        min-width: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer::before {
        height: 140px;
    }

    /* Counter Section */
    .counter-section {
        padding: 40px 20px;
    }

    .counter-item {
        flex: 0 0 45%;
    }

    .counter-number {
        font-size: 36px;
    }

    /* Journey Parallax */
    .journey-parallax-section {
        height: 350vh;
    }

    .journey-parallax-header {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .journey-parallax-title {
        font-size: 30px;
    }

    .journey-parallax-card-wrapper {
        height: 360px;
        padding: 0 20px;
    }

    /* Testi Section */
    .testi-section {
        padding: 50px 0;
    }

    .testi-header {
        padding: 0 20px;
    }

    .testi-title {
        font-size: 30px;
    }

    /* Growth Section */
    .growth-section {
        padding: 50px 0;
    }

    .growth-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .growth-title {
        font-size: 28px;
    }

    .growth-img-wrapper {
        width: 100%;
    }

    /* Media Section */
    .media-section {
        padding: 50px 0;
    }

    .media-container {
        padding: 0 20px;
    }

    .media-title {
        font-size: 28px;
    }

    .media-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .media-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Pub Section */
    .pub-section {
        padding: 50px 0;
    }

    .pub-container {
        padding: 0 20px;
    }

    .pub-header {
        flex-direction: column;
        gap: 20px;
    }

    .pub-title {
        font-size: 28px;
    }

    .pub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Ventures Section */
    .ventures-section {
        padding: 50px 0;
    }

    .ventures-container {
        padding: 0 20px;
    }

    .ventures-header {
        flex-direction: column;
        gap: 20px;
    }

    .ventures-title {
        font-size: 28px;
    }

    .ventures-header-right {
        max-width: 100%;
        padding-top: 0;
    }

    .ventures-logo-bar {
        padding: 12px 20px;
        border-radius: 30px;
    }

    .ventures-logo {
        height: 28px;
        padding-right: 12px;
    }

    .ventures-logo-highlight {
        padding: 8px 12px;
        margin-right: 12px;
    }

    .ventures-logo-highlight .ventures-logo-main {
        height: 32px;
    }

    /* Venture Card */
    .venture-card {
        flex-direction: column;
        gap: 28px;
    }

    .venture-card-left {
        width: 100%;
    }

    .venture-card-img {
        height: 300px;
    }

    .venture-card-title {
        font-size: 32px;
    }

    .venture-stat-number {
        font-size: 36px;
    }

    .venture-arrow {
        width: 30px;
        height: 30px;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    /* Hero */
    .hero-section {
        padding: 90px 16px 30px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
    }

    .schedule-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-top-text {
        font-size: 13px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Hero Centered */
    .hero-centered .hero-title {
        font-size: 28px;
    }

    /* Platform */
    .platform-title {
        font-size: 18px;
    }

    .platform-logo {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Journey */
    .journey-title {
        font-size: 24px;
    }

    .journey-card {
        min-width: 220px;
    }

    /* Content */
    .content-title {
        font-size: 24px;
    }

    /* Transform */
    .transform-title {
        font-size: 22px;
    }

    .transform-left {
        min-height: 200px;
    }

    /* Guest */
    .guest-title {
        font-size: 24px;
    }

    .guest-card {
        width: 180px;
    }

    .guest-card-img {
        height: 200px;
    }

    /* Crown */
    .crown-title {
        font-size: 22px;
    }

    .crown-image img {
        width: 180px;
    }

    /* Trusted */
    .trusted-title {
        font-size: 24px;
    }

    .trusted-stats {
        flex-direction: column;
        gap: 24px;
    }

    .trusted-stat-number {
        font-size: 32px;
    }

    .trusted-logo {
        height: 24px;
    }

    /* Beyond */
    .beyond-title {
        font-size: 22px;
    }

    .beyond-section {
        min-height: 300px;
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 24px;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 20px;
    }

    /* LinkedIn */
    .linkedin-title {
        font-size: 22px;
    }

    .linkedin-image img {
        width: 180px;
    }

    /* Featured */
    .featured-title {
        font-size: 24px;
    }

    /* Speaking */
    .speaking-title {
        font-size: 24px;
    }

    .speaking-card-large,
    .speaking-card-small {
        width: 85%;
    }

    .speaking-card {
        min-height: 220px;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    /* Clients */
    .clients-section {
        padding: 30px 16px;
    }

    .clients-top-text {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .client-logo {
        height: 28px;
    }

    .clients-logos {
        gap: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
        padding-bottom: 60px;
    }

    .footer-container {
        padding: 0 16px;
        padding-bottom: 30px;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-subscribe {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }

    .footer-email-input {
        width: 100%;
        text-align: center;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer::before {
        height: 100px;
    }

    /* Counter */
    .counter-item {
        flex: 0 0 100%;
    }

    .counter-number {
        font-size: 30px;
    }

    /* Journey Parallax */
    .journey-parallax-title {
        font-size: 24px;
    }

    .journey-parallax-card-wrapper {
        height: 340px;
    }

    /* Testi */
    .testi-title {
        font-size: 24px;
    }

    /* Growth */
    .growth-title {
        font-size: 24px;
    }

    /* Media */
    .media-title {
        font-size: 22px;
    }

    /* Pub */
    .pub-title {
        font-size: 22px;
    }

    .pub-grid {
        grid-template-columns: 1fr;
    }

    /* Ventures */
    .ventures-title {
        font-size: 22px;
    }

    .ventures-logo-bar {
        border-radius: 20px;
        padding: 10px 14px;
    }

    .ventures-logo {
        height: 22px;
        padding-right: 8px;
    }

    .ventures-logo-highlight {
        padding: 6px 8px;
        margin-right: 8px;
    }

    .ventures-logo-highlight .ventures-logo-main {
        height: 26px;
    }

    /* Venture Card */
    .venture-card-title {
        font-size: 26px;
    }

    .venture-card-img {
        height: 240px;
    }

    .venture-card-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .venture-stat-number {
        font-size: 28px;
    }

    .venture-arrow {
        width: 24px;
        height: 24px;
    }

    .venture-card-actions {
        flex-wrap: wrap;
        gap: 14px;
    }

    .venture-contact-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}