/**
 * TopLine About Page Content Styles
 * Award-Winning Design System
 * Colors: #0C2333 (navy), #5AA9AC (teal), #D52330 (red), #FDBA23 (yellow)
 */

.topline-about-page-widget {
    --about-navy: #0c2333;
    --about-navy-light: #1a3d52;
    --about-navy-dark: #081a24;
    --about-teal: #5aa9ac;
    --about-teal-soft: #e8f5f5;
    --about-teal-dark: #3d8f92;
    --about-red: #d52330;
    --about-red-hover: #b91c28;
    --about-white: #ffffff;
    --about-gray-50: #f9fafb;
    --about-gray-100: #f5f5f5;
    --about-gray-200: #e5e5e5;
    --about-gray-300: #d4d4d4;
    --about-gray-400: #a3a3a3;
    --about-gray-500: #737373;
    --about-gray-600: #525252;
    --about-gray-700: #404040;
    --about-gray-900: #111827;
    --about-yellow: #FDBA23;
    --about-yellow-soft: #fef3cd;
    
    --about-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --about-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --about-radius-sm: 8px;
    --about-radius-md: 12px;
    --about-radius-lg: 16px;
    --about-radius-xl: 24px;
    --about-radius-2xl: 32px;
    --about-radius-full: 9999px;
    
    --about-shadow-sm: 0 2px 4px rgba(12, 35, 51, 0.04);
    --about-shadow-md: 0 4px 12px rgba(12, 35, 51, 0.06);
    --about-shadow-lg: 0 12px 32px rgba(12, 35, 51, 0.08);
    --about-shadow-xl: 0 24px 48px rgba(12, 35, 51, 0.12);
    
    font-family: var(--about-font);
    color: var(--about-gray-700);
    font-size: 17px;
    line-height: 1.65;
    width: 100%;
    margin: 0;
}

/* Remove Elementor container padding for full-width display */
.elementor-widget-topline_about_page_content,
.elementor-widget-topline_about_page_content > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-element.elementor-widget-topline_about_page_content {
    width: 100% !important;
}

.e-con:has(.elementor-widget-topline_about_page_content),
.elementor-container:has(.elementor-widget-topline_about_page_content) {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.topline-about-page-widget * {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INNER WRAPPER
═══════════════════════════════════════════════════════════════════════════════ */

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION - Bold & Impactful
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-hero {
    background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-light) 50%, var(--about-navy) 100%);
    padding: 100px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    padding-top: 150px;
}

/* Remove any top margin/padding from widget and all parent containers */
.topline-about-page-widget {
    margin-top: 0 !important;
}

.e-con:has(.topline-about-page-widget),
.e-con:has(.elementor-widget-topline_about_page_content),
.elementor-section:has(.topline-about-page-widget),
.elementor-section:has(.elementor-widget-topline_about_page_content) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Target first container on page holding this widget */
.elementor > .e-con:first-child:has(.elementor-widget-topline_about_page_content),
.elementor > .elementor-section:first-child:has(.elementor-widget-topline_about_page_content),
.elementor-inner > .elementor-section-wrap > .elementor-section:first-child:has(.elementor-widget-topline_about_page_content) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Target the main page content area */
body:has(.elementor-widget-topline_about_page_content) .elementor {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body:has(.elementor-widget-topline_about_page_content) #primary,
body:has(.elementor-widget-topline_about_page_content) .site-main,
body:has(.elementor-widget-topline_about_page_content) .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Animated gradient orbs */
.topline-about-page-widget .about-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 169, 172, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroOrb1 15s ease-in-out infinite;
}

.topline-about-page-widget .about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 186, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroOrb2 12s ease-in-out infinite reverse;
}

@keyframes heroOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes heroOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.15); }
}

.topline-about-page-widget .about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topline-about-page-widget .about-hero-eyebrow {
    display: inline-block;
    font-family: var(--about-font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--about-white);
    background: rgba(90, 169, 172, 0.3);
    padding: 8px 20px;
    border-radius: var(--about-radius-full);
    margin: 0 0 24px;
    border: 1px solid rgba(90, 169, 172, 0.4);
}

.topline-about-page-widget .about-hero-title {
    font-family: var(--about-font-heading);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 500;
    color: var(--about-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.topline-about-page-widget .about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 650px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INTRO SECTION - Elegant Typography
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-intro {
    padding: 80px 24px 70px;
    background: var(--about-white);
    position: relative;
}

/* Removed horizontal accent bar - using border on stats section instead */

.topline-about-page-widget .about-intro-heading {
    font-family: var(--about-font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--about-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    text-align: center;
}

.topline-about-page-widget .about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--about-gray-600);
    line-height: 1.8;
    font-size: 18px;
}

.topline-about-page-widget .about-intro-text p {
    margin: 0 0 24px;
}

.topline-about-page-widget .about-intro-text p:last-child {
    margin-bottom: 0;
}

.topline-about-page-widget .about-intro-text p:first-child::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 6px;
    font-family: var(--about-font-heading);
    font-weight: 700;
    color: var(--about-teal);
}

.topline-about-page-widget .about-intro-text a {
    color: var(--about-teal);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(90, 169, 172, 0.3);
    transition: all 0.2s ease;
}

.topline-about-page-widget .about-intro-text a:hover {
    color: var(--about-teal-dark);
    border-bottom-color: var(--about-teal);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STATS SECTION - Minimal Modern with Duo Side Line
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-stats {
    padding: 64px 24px;
    background: var(--about-white);
    position: relative;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.topline-about-page-widget .about-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.topline-about-page-widget .about-stat {
    text-align: left;
    position: relative;
    padding: 16px 32px 16px 24px;
    background: transparent;
    border: none;
    flex: 1;
}

/* Duo colored side line - teal top, yellow bottom */
.topline-about-page-widget .about-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 0;
    background: linear-gradient(
        180deg,
        var(--about-teal) 0%,
        var(--about-teal) 40%,
        var(--about-yellow) 40%,
        var(--about-yellow) 100%
    );
}

.topline-about-page-widget .about-stat-value {
    display: block;
    font-family: var(--about-font-heading);
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 600;
    color: var(--about-navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.topline-about-page-widget .about-stat-label {
    display: block;
    font-family: var(--about-font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--about-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .topline-about-page-widget .about-stats-grid {
        flex-wrap: wrap;
        gap: 32px 0;
    }
    
    .topline-about-page-widget .about-stat {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 12px 24px 12px 24px;
    }
}

@media (max-width: 480px) {
    .topline-about-page-widget .about-stats-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        max-width: 100%;
        padding: 0 24px;
    }
    
    .topline-about-page-widget .about-stat {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 8px 20px 8px 20px;
    }
    
    .topline-about-page-widget .about-stat-value {
        font-size: 44px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTENT SECTIONS - Visual & Engaging
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-content-section {
    padding: 80px 24px;
    background: var(--about-white);
    position: relative;
}

.topline-about-page-widget .about-content-section.about-section--tint {
    background: linear-gradient(180deg, var(--about-gray-50) 0%, var(--about-white) 100%);
}

.topline-about-page-widget .about-content-section.about-section--highlight {
    background: linear-gradient(135deg, var(--about-teal-soft) 0%, rgba(253, 186, 35, 0.08) 100%);
    padding: 100px 24px;
}

.topline-about-page-widget .about-content-section.about-section--highlight .about-inner {
    background: var(--about-white);
    border-radius: var(--about-radius-2xl);
    padding: 56px 48px;
    box-shadow: var(--about-shadow-xl);
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.topline-about-page-widget .about-content-section.about-section--highlight .about-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--about-teal), var(--about-yellow), var(--about-red));
}

.topline-about-page-widget .about-section-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--about-radius-xl);
    background: linear-gradient(135deg, var(--about-teal-soft) 0%, rgba(90, 169, 172, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
}

.topline-about-page-widget .about-section-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--about-radius-xl);
    border: 2px solid var(--about-teal);
    opacity: 0.3;
}

.topline-about-page-widget .about-section-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--about-teal);
}

.topline-about-page-widget .about-section-title {
    font-family: var(--about-font-heading);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--about-navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    text-align: center;
}

.topline-about-page-widget .about-section-content {
    max-width: 750px;
    margin: 0 auto;
    color: var(--about-gray-600);
    line-height: 1.8;
    font-size: 17px;
    text-align: center;
}

.topline-about-page-widget .about-section-content p {
    margin: 0 0 20px;
}

.topline-about-page-widget .about-section-content p:last-child {
    margin-bottom: 0;
}

.topline-about-page-widget .about-section-content strong {
    color: var(--about-navy);
    font-weight: 700;
}

.topline-about-page-widget .about-section-content a {
    color: var(--about-teal);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(90, 169, 172, 0.3);
}

.topline-about-page-widget .about-section-content a:hover {
    border-bottom-color: var(--about-teal);
}

.topline-about-page-widget .about-section-cta {
    text-align: center;
    margin-top: 36px;
}

/* Two Column Layout */
.topline-about-page-widget .about-section--two-col .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
}

.topline-about-page-widget .about-section--two-col .about-section-icon {
    margin: 0 0 24px;
}

.topline-about-page-widget .about-section--two-col .about-section-title,
.topline-about-page-widget .about-section--two-col .about-section-content {
    text-align: left;
}

.topline-about-page-widget .about-section--two-col .about-section-cta {
    text-align: left;
}

@media (max-width: 768px) {
    .topline-about-page-widget .about-section--two-col .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .topline-about-page-widget .about-section--two-col .about-section-title,
    .topline-about-page-widget .about-section--two-col .about-section-content,
    .topline-about-page-widget .about-section--two-col .about-section-cta {
        text-align: center;
    }
    
    .topline-about-page-widget .about-section--two-col .about-section-icon {
        margin: 0 auto 24px;
    }
    
    .topline-about-page-widget .about-content-section.about-section--highlight .about-inner {
        padding: 40px 28px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE CARDS - Modern & Clean
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-cards {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--about-white) 0%, var(--about-gray-50) 100%);
}

.topline-about-page-widget .about-cards-title {
    font-family: var(--about-font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--about-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 56px;
    text-align: center;
}

.topline-about-page-widget .about-cards-grid {
    display: grid;
    gap: 28px;
}

.topline-about-page-widget .about-cards--2col {
    grid-template-columns: repeat(2, 1fr);
}

.topline-about-page-widget .about-cards--3col {
    grid-template-columns: repeat(3, 1fr);
}

.topline-about-page-widget .about-cards--4col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .topline-about-page-widget .about-cards--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .topline-about-page-widget .about-cards--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .topline-about-page-widget .about-cards--2col,
    .topline-about-page-widget .about-cards--3col,
    .topline-about-page-widget .about-cards--4col {
        grid-template-columns: 1fr;
    }
}

.topline-about-page-widget .about-card {
    background: var(--about-white);
    border: 1px solid var(--about-gray-200);
    border-radius: var(--about-radius-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.topline-about-page-widget .about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--about-shadow-xl);
    border-color: rgba(90, 169, 172, 0.3);
}

.topline-about-page-widget .about-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--about-radius-lg);
    background: linear-gradient(135deg, var(--about-teal-soft) 0%, rgba(90, 169, 172, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.topline-about-page-widget .about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--about-teal) 0%, var(--about-teal-dark) 100%);
}

.topline-about-page-widget .about-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--about-teal);
    transition: stroke 0.3s ease;
}

.topline-about-page-widget .about-card:hover .about-card-icon svg {
    stroke: var(--about-white);
}

.topline-about-page-widget .about-card-title {
    font-family: var(--about-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--about-navy);
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.topline-about-page-widget .about-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--about-gray-600);
    margin: 0 0 20px;
    flex-grow: 1;
}

.topline-about-page-widget .about-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--about-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--about-teal);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.topline-about-page-widget .about-card-link:hover {
    color: var(--about-navy);
    gap: 12px;
}

.topline-about-page-widget .about-card-link svg {
    transition: transform 0.2s ease;
}

.topline-about-page-widget .about-card-link:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   VALUES SECTION - Visual Impact
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-values {
    padding: 100px 24px;
    background: var(--about-white);
}

.topline-about-page-widget .about-values-title {
    font-family: var(--about-font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--about-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 56px;
    text-align: center;
}

.topline-about-page-widget .about-values-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.topline-about-page-widget .about-value {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: linear-gradient(135deg, var(--about-gray-50) 0%, var(--about-white) 100%);
    border-radius: var(--about-radius-xl);
    border: 1px solid var(--about-gray-200);
    transition: all 0.3s ease;
}

.topline-about-page-widget .about-value:hover {
    background: linear-gradient(135deg, var(--about-teal-soft) 0%, var(--about-white) 100%);
    border-color: rgba(90, 169, 172, 0.3);
    transform: translateX(8px);
}

.topline-about-page-widget .about-value-marker {
    width: 6px;
    min-height: 60px;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--about-teal) 0%, var(--about-yellow) 100%);
    flex-shrink: 0;
}

.topline-about-page-widget .about-value-content {
    flex: 1;
}

.topline-about-page-widget .about-value-title {
    font-family: var(--about-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-navy);
    margin: 0 0 10px;
    line-height: 1.3;
}

.topline-about-page-widget .about-value-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--about-gray-600);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TIMELINE SECTION - Perfectly Aligned & Animated
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-timeline {
    padding: 100px 24px 120px;
    background: linear-gradient(180deg, var(--about-white) 0%, var(--about-gray-50) 30%, var(--about-gray-50) 70%, var(--about-white) 100%);
    position: relative;
    overflow: hidden;
}

.topline-about-page-widget .about-timeline-title {
    font-family: var(--about-font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--about-navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    text-align: center;
}

.topline-about-page-widget .about-timeline-subtitle {
    font-size: 18px;
    color: var(--about-gray-500);
    text-align: center;
    margin: 0 auto 72px;
    max-width: 500px;
}

/* Timeline Track Container */
.topline-about-page-widget .about-timeline-track {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    --timeline-line-left: 24px;
    --timeline-node-size: 20px;
    --timeline-content-left: 80px;
}

/* The Progress Line - precisely centered through nodes, BEHIND the circles */
.topline-about-page-widget .about-timeline-track::before {
    content: '';
    position: absolute;
    left: calc(var(--timeline-line-left) + (var(--timeline-node-size) / 2) - 2px);
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--about-gray-200);
    border-radius: 4px;
    z-index: 0;
}

.topline-about-page-widget .about-timeline-track::after {
    content: '';
    position: absolute;
    left: calc(var(--timeline-line-left) + (var(--timeline-node-size) / 2) - 2px);
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(
        180deg, 
        var(--about-teal) 0%, 
        #4ECDC4 30%,
        var(--about-yellow) 70%,
        #F7B733 100%
    );
    background-size: 100% 200%;
    animation: timelineGradientFlow 6s ease infinite;
    z-index: 1;
}

@keyframes timelineGradientFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Glow behind the line */
.topline-about-page-widget .about-timeline-track .timeline-glow {
    position: absolute;
    left: calc(var(--timeline-line-left) + (var(--timeline-node-size) / 2) - 8px);
    top: 10px;
    bottom: 10px;
    width: 20px;
    background: linear-gradient(180deg, rgba(90, 169, 172, 0.4) 0%, rgba(253, 186, 35, 0.4) 100%);
    filter: blur(12px);
    border-radius: 10px;
    opacity: 0.5;
    animation: timelineGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes timelineGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* Timeline Events */
.topline-about-page-widget .about-timeline-event {
    position: relative;
    padding-left: var(--timeline-content-left);
    padding-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: timelineEventReveal 0.5s ease forwards;
}

.topline-about-page-widget .about-timeline-event:nth-child(2) { animation-delay: 0.1s; }
.topline-about-page-widget .about-timeline-event:nth-child(3) { animation-delay: 0.2s; }
.topline-about-page-widget .about-timeline-event:nth-child(4) { animation-delay: 0.3s; }
.topline-about-page-widget .about-timeline-event:nth-child(5) { animation-delay: 0.4s; }
.topline-about-page-widget .about-timeline-event:nth-child(6) { animation-delay: 0.5s; }
.topline-about-page-widget .about-timeline-event:nth-child(7) { animation-delay: 0.6s; }

@keyframes timelineEventReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topline-about-page-widget .about-timeline-event:last-child {
    padding-bottom: 0;
}

/* Timeline Node - Filled Circle, IN FRONT of the line */
.topline-about-page-widget .about-timeline-event::before {
    content: '';
    position: absolute;
    left: var(--timeline-line-left);
    top: 28px;
    width: var(--timeline-node-size);
    height: var(--timeline-node-size);
    background: var(--about-teal);
    border: none;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 5px var(--about-white),
        0 0 0 6px rgba(90, 169, 172, 0.2),
        0 4px 12px rgba(90, 169, 172, 0.3);
}

.topline-about-page-widget .about-timeline-event:hover::before {
    transform: scale(1.25);
    background: var(--about-teal-dark);
    box-shadow: 
        0 0 0 6px var(--about-white),
        0 0 0 8px rgba(90, 169, 172, 0.3),
        0 6px 20px rgba(90, 169, 172, 0.4);
}

/* Connector line from node to card */
.topline-about-page-widget .about-timeline-event .timeline-connector {
    position: absolute;
    left: calc(var(--timeline-line-left) + var(--timeline-node-size));
    top: 37px;
    width: calc(var(--timeline-content-left) - var(--timeline-line-left) - var(--timeline-node-size) - 4px);
    height: 2px;
    background: linear-gradient(90deg, var(--about-teal), var(--about-gray-200));
    opacity: 0.5;
    transition: all 0.3s ease;
}

.topline-about-page-widget .about-timeline-event:hover .timeline-connector {
    opacity: 1;
    background: var(--about-teal);
}

/* Event Card Container */
.topline-about-page-widget .about-timeline-content {
    background: var(--about-white);
    border-radius: var(--about-radius-xl);
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(12, 35, 51, 0.04);
    border: 1px solid var(--about-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.topline-about-page-widget .about-timeline-event:hover .about-timeline-content {
    transform: translateX(8px);
    box-shadow: var(--about-shadow-lg);
    border-color: rgba(90, 169, 172, 0.3);
}

/* Year Badge */
.topline-about-page-widget .about-timeline-year {
    display: inline-flex;
    align-items: center;
    font-family: var(--about-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--about-teal);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--about-teal-soft);
    border-radius: var(--about-radius-full);
    transition: all 0.3s ease;
}

.topline-about-page-widget .about-timeline-event:hover .about-timeline-year {
    background: var(--about-teal);
    color: var(--about-white);
}

/* Event Title */
.topline-about-page-widget .about-timeline-event-title {
    font-family: var(--about-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-navy);
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* Event Description */
.topline-about-page-widget .about-timeline-event-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--about-gray-600);
    margin: 0;
}

/* Decorative Elements */
.topline-about-page-widget .about-timeline-decoration {
    position: absolute;
    top: 100px;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90, 169, 172, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.topline-about-page-widget .about-timeline-decoration-2 {
    position: absolute;
    bottom: 100px;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(253, 186, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .topline-about-page-widget .about-timeline {
        padding: 72px 16px 80px;
    }
    
    .topline-about-page-widget .about-timeline-track {
        --timeline-line-left: 16px;
        --timeline-node-size: 16px;
        --timeline-content-left: 56px;
    }
    
    .topline-about-page-widget .about-timeline-event::before {
        top: 26px;
    }
    
    .topline-about-page-widget .about-timeline-event .timeline-connector {
        top: 33px;
    }
    
    .topline-about-page-widget .about-timeline-content {
        padding: 24px;
    }
    
    .topline-about-page-widget .about-timeline-event:hover .about-timeline-content {
        transform: translateX(4px);
    }
}

@media (max-width: 480px) {
    .topline-about-page-widget .about-timeline-track {
        --timeline-line-left: 12px;
        --timeline-node-size: 14px;
        --timeline-content-left: 44px;
    }
    
    .topline-about-page-widget .about-timeline-content {
        padding: 20px;
    }
    
    .topline-about-page-widget .about-timeline-year {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .topline-about-page-widget .about-timeline-event-title {
        font-size: 1.1rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .topline-about-page-widget .about-timeline-track::after,
    .topline-about-page-widget .about-timeline-track .timeline-glow,
    .topline-about-page-widget .about-hero::before,
    .topline-about-page-widget .about-hero::after {
        animation: none;
    }
    
    .topline-about-page-widget .about-timeline-event {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION - Bold & Action-Oriented
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.topline-about-page-widget .about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 169, 172, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.topline-about-page-widget .about-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 186, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.topline-about-page-widget .about-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topline-about-page-widget .about-cta-title {
    font-family: var(--about-font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--about-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

.topline-about-page-widget .about-cta-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0 0 40px;
}

.topline-about-page-widget .about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS - Premium Feel
═══════════════════════════════════════════════════════════════════════════════ */

.topline-about-page-widget .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--about-radius-full);
    font-family: var(--about-font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.topline-about-page-widget .about-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.topline-about-page-widget .about-btn:hover svg {
    transform: translateX(4px);
}

.topline-about-page-widget .about-btn--primary {
    background: linear-gradient(135deg, var(--about-red) 0%, var(--about-red-hover) 100%);
    color: var(--about-white);
    box-shadow: 0 4px 16px rgba(213, 35, 48, 0.3);
}

.topline-about-page-widget .about-btn--primary:hover {
    background: linear-gradient(135deg, var(--about-red-hover) 0%, #9a1820 100%);
    color: var(--about-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(213, 35, 48, 0.4);
}

.topline-about-page-widget .about-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--about-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.topline-about-page-widget .about-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--about-white);
    transform: translateY(-2px);
}

.topline-about-page-widget .about-btn--teal {
    background: linear-gradient(135deg, var(--about-teal) 0%, var(--about-teal-dark) 100%);
    color: var(--about-white);
    box-shadow: 0 4px 16px rgba(90, 169, 172, 0.3);
}

.topline-about-page-widget .about-btn--teal:hover {
    background: linear-gradient(135deg, var(--about-teal-dark) 0%, #2d7a7d 100%);
    color: var(--about-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(90, 169, 172, 0.4);
}

.topline-about-page-widget .about-btn--ghost {
    background: transparent;
    color: var(--about-navy);
    border: 2px solid var(--about-gray-200);
}

.topline-about-page-widget .about-btn--ghost:hover {
    border-color: var(--about-navy);
    background: var(--about-gray-50);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .topline-about-page-widget .about-hero {
        padding: 72px 16px 64px;
    }
    
    .topline-about-page-widget .about-intro,
    .topline-about-page-widget .about-content-section,
    .topline-about-page-widget .about-cards,
    .topline-about-page-widget .about-values {
        padding: 64px 16px;
    }
    
    .topline-about-page-widget .about-cta {
        padding: 72px 16px;
    }
    
    .topline-about-page-widget .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .topline-about-page-widget .about-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
    }
    
    .topline-about-page-widget .about-intro-text p:first-child::first-letter {
        font-size: 2.5em;
    }
}
