/* 
    Foundora.io About Page Styles 
    Premium, Responsive, and Modern Design
*/

/* Hide Default WordPress Page Title */
.wp-block-post-title,
.entry-title,
.page-title {
    display: none !important;
}

/* Remove Top Spacing from WordPress Containers */
#wp--skip-link--target,
.entry-content,
.wp-block-post-content,
.wp-block-group,
main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.foundoraio-profile-hero {
    margin-top: 0 !important;
}

:root {
    --foundoraio-primary: #1e3a8a;
    /* Deep Blue */
    --foundoraio-accent: #3b82f6;
    /* Bright Blue */
    --foundoraio-linkedin: #0077b5;
    --foundoraio-text: #334155;
    --foundoraio-text-light: #64748b;
    --foundoraio-bg: #f8fafc;
    --foundoraio-white: #ffffff;
    --foundoraio-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --foundoraio-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.foundoraio-profile-hero {
    padding: 100px 0 0 0;
    background-color: var(--foundoraio-bg);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    /* Reset WordPress Global Styles */
    max-width: none !important;
    margin: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.foundoraio-profile-hero * {
    margin-block-start: 0;
    margin-block-end: 0;
    box-sizing: border-box;
}

.foundoraio-profile-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.foundoraio-profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Content Column */
.foundoraio-profile-badge {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    width: fit-content;
}

.foundoraio-profile-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--foundoraio-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.foundoraio-profile-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #0f172a !important;
    line-height: 1.4;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.foundoraio-profile-title span {
    color: var(--foundoraio-accent);
    display: inline-block;
}

.foundoraio-profile-description {
    font-size: 18px;
    line-height: 1.4;
    color: var(--foundoraio-text-light);
    margin-bottom: 30px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.foundoraio-profile-actions {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    display: flex;
    gap: 16px;
}

.foundoraio-btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background-color: var(--foundoraio-linkedin);
    color: white !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    transition: var(--foundoraio-transition);
    box-shadow: 0 4px 14px 0 rgba(0, 119, 181, 0.3);
}

.foundoraio-btn-linkedin:hover {
    background-color: #006399;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px 0 rgba(0, 119, 181, 0.4);
}

.foundoraio-btn-linkedin svg {
    transition: transform 0.3s;
}

.foundoraio-btn-linkedin:hover svg {
    transform: rotate(-12deg) scale(1.1);
}

.foundoraio-profile-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
    max-width: 480px;
    margin-left: auto;
}

.foundoraio-image-card {
    border-radius: 20px;
    transition: var(--foundoraio-transition);
    position: relative;
}

.foundoraio-image-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
}

.foundoraio-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Background Decor */
.foundoraio-profile-hero::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}



/* Download Button */
.foundoraio-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.2);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.foundoraio-btn-download:hover {
    border-color: #2563eb;
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.foundoraio-btn-download svg {
    transition: transform 0.3s;
}

.foundoraio-btn-download:hover svg {
    transform: translateY(2px);
}

/* Floating Badge */
.foundoraio-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    z-index: 10;
    animation: floatingBadge 3s ease-in-out infinite alternate;
}

@keyframes floatingBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.foundoraio-fb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
}

.foundoraio-fb-text {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.foundoraio-fb-text strong {
    font-weight: 700;
    font-size: 16px;
}

/* Mission Section */
.foundoraio-mission-section {
    margin-top: 120px;
    text-align: center;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 100%);
    padding: 100px 60px;
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
}

.foundoraio-mission-section::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 240px;
    font-family: 'Outfit', serif;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}

.foundoraio-mission-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--foundoraio-accent);
    display: inline-block;
    position: relative;
}

.foundoraio-mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--foundoraio-accent);
}

.foundoraio-mission-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    color: #f8fafc;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.foundoraio-cta-wrapper {
    margin-top: clamp(30px, 12vw, 140px);
    padding-bottom: clamp(30px, 12vw, 140px);
}

.foundoraio-cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(30, 58, 138, 0.04) 100%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 35px;
    padding: clamp(50px, 8vw, 80px) clamp(30px, 5vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.foundoraio-cta-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

.foundoraio-cta-content {
    position: relative;
    z-index: 1;
}

.foundoraio-cta-heading {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--foundoraio-primary);
    margin-bottom: 20px;
    letter-spacing: normal;
}

.foundoraio-cta-subtext {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--foundoraio-text-light);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.foundoraio-cta-subtext span {
    color: var(--foundoraio-accent);
    font-weight: 700;
}

.foundoraio-btn-primary-alt {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--foundoraio-linkedin);
    color: white !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    border-radius: 100px;
    transition: var(--foundoraio-transition);
    box-shadow: 0 12px 24px -6px rgba(0, 119, 181, 0.4);
}

.foundoraio-btn-primary-alt:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0, 119, 181, 0.6);
    background: #006399;
}

.foundoraio-btn-primary-alt svg {
    transition: transform 0.3s;
}

.foundoraio-btn-primary-alt:hover svg {
    transform: translateX(4px) rotate(10deg);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- FULL RESPONSIVE FIXES --- */

@media (max-width: 1200px) {
    .foundoraio-profile-container {
        padding: 0 40px;
    }

    .foundoraio-profile-grid {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .foundoraio-profile-hero {
        padding: 80px 0 0 0;
    }

    .foundoraio-profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .foundoraio-profile-title {
        font-size: 42px;
    }

    .foundoraio-stats-bar {
        margin-top: 60px;
        padding: 40px 20px;
        border-radius: 30px;
    }

    .foundoraio-stat-item {
        padding: 0 15px;
    }

    .foundoraio-stat-value {
        font-size: 28px;
    }

    .foundoraio-stat-icon {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .foundoraio-profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .foundoraio-profile-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .foundoraio-profile-description {
        margin-left: auto;
        margin-right: auto;
    }

    .foundoraio-profile-actions {
        justify-content: center;
    }

    .foundoraio-profile-badge {
        margin: 0 auto 20px auto;
    }

    .foundoraio-stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 30px;
    }

    .foundoraio-stat-divider {
        display: none;
    }

    .foundoraio-stat-item {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .foundoraio-profile-hero {
        padding: 60px 0 0 0;
        width: 100vw !important;
        left: 50% !important;
        transform: translateX(-50%);
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .foundoraio-profile-container {
        padding: 0 24px;
    }

    .foundoraio-profile-title {
        font-size: 36px;
    }

    .foundoraio-profile-title br {
        display: none;
    }

    .foundoraio-mission-section {
        margin-top: 50px;
        padding: 40px 30px;
        border-radius: 30px;
    }

    .foundoraio-mission-text {
        font-size: 24px;
    }

    .foundoraio-cta-card {
        padding: 60px 30px;
    }

    .foundoraio-stats-bar {
        margin-top: 30px;

    }
}

@media (max-width: 576px) {
    .foundoraio-stats-bar {
        grid-template-columns: 1fr;
        gap: 30px;
        border-radius: 25px;
    }

    .foundoraio-stat-item {
        position: relative;
    }

    .foundoraio-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 20%;
        right: 20%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.1), transparent);
    }

    .foundoraio-profile-title {
        font-size: 32px;
    }

    .foundoraio-mission-section::before {
        font-size: 140px;
        top: -10px;
        left: 20px;
    }

    .foundoraio-profile-actions {
        flex-direction: column;
        align-items: center;
    }

    .foundoraio-btn-linkedin,
    .foundoraio-btn-primary-alt {
        width: 100%;
        justify-content: center;
    }

    .foundoraio-profile-grid {
        gap: 30px;
    }

    .foundoraio-profile-hero {
        padding: 30px 0 0 0;
    }

    .foundoraio-profile-badge {
        margin-bottom: 15px;
    }

    .foundoraio-profile-title {
        margin-bottom: 5px;
    }

    .foundoraio-profile-description {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .foundoraio-btn-linkedin {
        padding: 13px 36px;
        font-size: 16px;
    }

    .foundoraio-stat-icon {
        margin-bottom: 5px;
    }

    .foundoraio-stat-value {
        font-size: 26px;
        margin-bottom: 0;
    }

    .foundoraio-stats-bar {
        padding: 30px;
    }

    .foundoraio-cta-heading {
        margin-bottom: 13px;
    }

    .foundoraio-cta-subtext {
        margin-bottom: 20px;
    }

    .foundoraio-cta-card {
        padding: 30px;
    }

    .foundoraio-image-card {
        padding: 17px;
    }

    .foundoraio-profile-badge span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 480px) {
    .foundoraio-profile-title {
        font-size: 28px;
    }

    .foundoraio-mission-text {
        font-size: 20px;
    }

    .foundoraio-mission-section {
        padding: 40px 20px;
    }

    .foundoraio-btn-primary-alt {
        padding: 9px 20px;
        font-size: 16px;
    }

    .foundoraio-btn-primary-alt svg {
        width: 15px;
        height: 15px;
    }
}

/* ==========================================================================
   Expertise Section Styles
   ========================================================================== */

.foundoraio-expertise-section {
    padding: 80px 24px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

/* Beautiful Glowing Orbs Background */
.foundoraio-expertise-section::before {
    content: '';
    position: absolute;
    top: -5%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.12);
    /* Soft Indigo */
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.foundoraio-expertise-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: rgba(59, 130, 246, 0.15);
    /* Vibrant Blue */
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.foundoraio-expertise-badge {
    color: var(--foundoraio-accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 8px 24px;
    display: inline-block;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.foundoraio-expertise-title {
    font-size: clamp(34px, 5vw, 46px);
    font-weight: 900;
    margin: 0 auto 10px auto;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
    max-width: 100%;
}

.foundoraio-expertise-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.foundoraio-expertise-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Glassmorphism Cards */
.foundoraio-expertise-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 25px;
    width: calc(33.333% - 17px);
    min-width: 280px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 4px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    /* To allow glow to spill over */

    /* Staggered entry animation */
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.foundoraio-expertise-card:nth-child(1) {
    animation-delay: 0.1s;
}

.foundoraio-expertise-card:nth-child(2) {
    animation-delay: 0.2s;
}

.foundoraio-expertise-card:nth-child(3) {
    animation-delay: 0.3s;
}

.foundoraio-expertise-card:nth-child(4) {
    animation-delay: 0.4s;
}

.foundoraio-expertise-card:nth-child(5) {
    animation-delay: 0.5s;
}

.foundoraio-expertise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 1);
    border-top: 4px solid var(--foundoraio-accent);
    background: rgba(255, 255, 255, 0.9);
}

.foundoraio-expertise-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foundoraio-accent);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

/* 3D Glowing effect behind the icon */
.foundoraio-expertise-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.foundoraio-expertise-card:hover .foundoraio-expertise-icon {
    background: linear-gradient(135deg, var(--foundoraio-accent) 0%, #1d4ed8 100%);
    color: #ffffff;
}

.foundoraio-expertise-card:hover .foundoraio-expertise-icon::after {
    opacity: 0.45;
    transform: translate(-50%, -40%) scale(1.1);
}

.foundoraio-expertise-card h4 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.foundoraio-expertise-card:hover h4 {
    color: var(--foundoraio-accent);
}

.foundoraio-expertise-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .foundoraio-expertise-card {
        width: calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .foundoraio-expertise-card {
        width: calc(50% - 13px);
    }

    .foundoraio-expertise-title {
        font-size: 32px;
    }

    .foundoraio-expertise-section {
        padding: 60px 20px;
    }

    .foundoraio-expertise-section::before,
    .foundoraio-expertise-section::after {
        display: none;
        /* Hide heavy blur on mobile for performance */
    }
}

@media (max-width: 480px) {
    .foundoraio-expertise-card {
        width: 100%;
    }
}

/* Fix for horizontal overflow on some themes */
html,
body {
    overflow-x: hidden;
}

/* ==========================================================================
   Story Section Styles
   ========================================================================== */

.foundoraio-story-section {
    font-family: 'Outfit', sans-serif;
    max-width: 1350px;
    margin: 40px auto 80px;
    background: #f1f5f9;
    border-radius: 24px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.foundoraio-story-title {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.foundoraio-story-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    width: 40px;
    background: #2563eb;
    border-radius: 2px;
}

.foundoraio-story-left {
    display: flex;
    flex-direction: column;
}

.foundoraio-story-text {
    font-size: 17px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 400;
}

.foundoraio-story-quote {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.foundoraio-quote-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.foundoraio-quote-author {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
}

.foundoraio-drive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.foundoraio-drive-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.foundoraio-drive-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.08);
}

.foundoraio-drive-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0 0 4px 0;
}

.foundoraio-drive-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 991px) {
    .foundoraio-story-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 20px;
        margin: 50px auto 50px;
    }
}

/* ==========================================================================
   Experience Timeline Styles
   ========================================================================== */

.foundoraio-timeline-section {
    padding: 100px 24px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.foundoraio-timeline-container {
    position: relative;
    margin-top: 80px;
    padding-bottom: 40px;
}

/* Horizontal line on Desktop */
.foundoraio-timeline-line {
    position: absolute;
    top: 50px;
    /* 18px year + 20px margin + 12px half-point */
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--foundoraio-accent);
    z-index: 1;
}

.foundoraio-timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.foundoraio-timeline-node-wrapper {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.foundoraio-timeline-year {
    font-size: 18px;
    font-weight: 800;
    color: var(--foundoraio-accent);
    margin: 0 0 20px 0;
    line-height: 1;
}

.foundoraio-timeline-point {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 3px solid var(--foundoraio-accent);
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #f8fafc;
    /* Matches page background to cut out the line */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 3;
}

.foundoraio-timeline-point-inner {
    width: 10px;
    height: 10px;
    background: var(--foundoraio-accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.foundoraio-timeline-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 200px;
}

/* Hover Effects */
.foundoraio-timeline-node-wrapper:hover .foundoraio-timeline-point {
    transform: scale(1.25);
    box-shadow: 0 0 0 6px #f8fafc, 0 10px 20px rgba(59, 130, 246, 0.3);
    background: #eff6ff;
}

.foundoraio-timeline-node-wrapper:hover .foundoraio-timeline-point-inner {
    transform: scale(1.2);
}

.foundoraio-timeline-node-wrapper:hover .foundoraio-timeline-year {
    color: #1e3a8a;
}

/* Mobile Responsive Timeline */
@media (max-width: 900px) {
    .foundoraio-timeline-line {
        top: 0;
        bottom: 0;
        left: 20px;
        margin-left: 0;
        width: 3px;
        height: auto;
    }

    .foundoraio-timeline-nodes {
        flex-direction: column;
        align-items: stretch;
        padding-left: 52px;
    }

    .foundoraio-timeline-node-wrapper {
        margin-bottom: 25px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        position: relative;
    }

    .foundoraio-timeline-year {
        margin: 0 0 10px 0;
    }

    .foundoraio-timeline-point {
        position: absolute;
        left: -42px;
        /* 50px padding - half of 24px point - 20px line offset = around -42px. Wait: line is at 20px. node is at 50px. 50-20=30px offset. Point is 24px width. center is 12px. 30 - 12 = 18px. */
        margin: 0;
        top: -3px;
    }

    .foundoraio-timeline-desc {
        max-width: 100%;
        margin: 0;
    }

    .foundoraio-timeline-container {
        margin-top: 40px;
        padding-bottom: 0px;
    }
}

@media (max-width: 480px) {
    .foundoraio-story-section {
        padding: 30px 15px;
        gap: 30px;
    }

    .foundoraio-drive-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .foundoraio-story-title {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .foundoraio-quote-text {
        font-size: 16px;
    }

    .foundoraio-timeline-section {
        padding: 70px 0px;

    }

    .foundoraio-expertise-card {
        border-radius: 17px;
        padding: 20px;
    }

    .foundoraio-floating-badge {
        right: 40px;
    }
}