
    /* Define the primary gradient */
    :root {
        --primary-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(2, 5, 90, 0.85) 100%);
        --main-color: #02055a;
    }
    
    /* Enhanced Hero Section */
    .page-header-modern {
        position: relative;
        overflow: hidden;
        z-index: 10;
        background-color: #02055a;
    }
    
    .page-header-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 98, 244, 0.1) 0%, transparent 50%);
        animation: pulse 8s ease-in-out infinite;
    }
    
    /* Tech Circuit Background */
    .circuit-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 1px, transparent 1px),
            radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: circuitMove 20s linear infinite;
    }
    
    /* Section Headers */
    .section-header {
        position: relative;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-header h2 {
        display: inline-block;
        font-weight: 800;
        background: linear-gradient(135deg, #02055a, #3573D4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 20px;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3573D4, #02055a);
        border-radius: 2px;
    }
    
    /* Creative About Section - Split Screen Design */
    .split-about {
        display: flex;
        min-height: 600px;
        margin: 50px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(2, 5, 90, 0.08);
        position: relative;
        z-index: 5;
    }
    
    .split-about-left {
        flex: 1;
        background: linear-gradient(135deg, #02055a, #3573D4);
        padding: 60px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .split-about-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    }
    
    .split-about-right {
        flex: 1;
        background: white;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Enhanced Story Section - Interactive Cards */
    .story-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 40px 0;
    }
    
    .story-card {
        flex: 1;
        min-width: 300px;
        max-width: 350px;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.1);
        transition: all 0.4s ease;
        position: relative;
    }
    
    .story-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(2, 5, 90, 0.2);
    }
    
    .story-card-header {
        height: 120px;
        background: linear-gradient(135deg, #02055a, #3573D4);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .story-card-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        height: 60px;
        background: white;
        border-radius: 50% 50% 0 0;
    }
    
    .story-icon {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        font-size: 30px;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .story-card-body {
        padding: 40px 30px 30px;
        text-align: center;
    }
    
    .story-card-title {
        font-size: 24px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 20px;
    }
    
    .story-card-text {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }
    
    /* Mission/Vision - Enhanced Card Design */
    .mission-vision-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 60px 0;
        flex-wrap: wrap;
    }
    
    .mission-vision-card {
        width: 350px;
        height: 450px;
        perspective: 1000px;
    }
    
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }
    
    .mission-vision-card:hover .card-inner {
        transform: rotateY(180deg);
    }
    
    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.15);
    }
    
    .card-front {
        background: linear-gradient(135deg, #02055a, #3573D4);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    
    .card-back {
        background: white;
        color: #333;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    
    .card-icon {
        width: 100px;
        height: 100px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        font-size: 40px;
        margin-bottom: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .card-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .card-text {
        font-size: 18px;
        line-height: 1.6;
    }
    
    /* Values - Animated Cards with Motion */
    .values-container {
        position: relative;
        margin: 80px 0;
        overflow: hidden;
    }
    
    .values-orbit {
        position: relative;
        width: 600px;
        height: 600px;
        margin: 0 auto;
    }
    
    .values-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #02055a, #3573D4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.3);
        z-index: 10;
    }
    
    .value-orbit-item {
        position: absolute;
        width: 160px;
        height: 160px;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        transition: all 0.5s ease;
        animation: orbit 60s linear infinite;
    }
    
    .value-orbit-item:nth-child(2) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: 0s;
    }
    
    .value-orbit-item:nth-child(3) {
        top: 25%;
        right: 0;
        animation-delay: 10s;
    }
    
    .value-orbit-item:nth-child(4) {
        bottom: 0;
        right: 25%;
        animation-delay: 20s;
    }
    
    .value-orbit-item:nth-child(5) {
        bottom: 0;
        left: 25%;
        animation-delay: 30s;
    }
    
    .value-orbit-item:nth-child(6) {
        top: 25%;
        left: 0;
        animation-delay: 40s;
    }
    
    .value-orbit-item:nth-child(7) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: 50s;
    }
    
    .value-orbit-item:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.2);
        z-index: 20;
        animation-play-state: paused;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3573D4, #02055a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .value-title {
        font-size: 16px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 5px;
    }
    
    .value-text {
        font-size: 12px;
        color: #555;
    }

    /* ==========================================================================
    Timeline Component - Responsive Design
    ========================================================================== */

    /* --- Base Horizontal Timeline Styles --- */
    .horizontal-timeline {
        position: relative;
        margin: 60px 0; /* Reduced margin */
        overflow-x: auto;
        overflow-y: hidden;
        padding: 80px 0; /* Reduced vertical padding */
        -webkit-overflow-scrolling: touch;
    }

    .timeline-track {
        position: absolute;
        height: 4px;
        background: linear-gradient(90deg, #3573D4, #02055a);
        width: 100%; /* Fluid width */
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .timeline-items-container {
        position: relative;
        display: flex;
        /* Fluid container, no min-width */
        padding: 0 40px; /* Use padding for edge spacing instead of justify-content */
        height: 280px; /* Reduced height */
        align-items: center;
    }

    .timeline-item {
        position: relative;
        /* Flex item: can grow, shrink, and has a base width */
        flex: 1 1 180px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.6s ease;
        /* Add a small margin between items */
        margin: 0 10px;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid #3573D4;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        flex-shrink: 0;
    }

    .timeline-content {
        background: white;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        border: 1px solid rgba(0, 98, 244, 0.1);
        position: absolute;
        width: 100%; /* Takes full width of the flex item */
        transition: all 0.3s ease;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 15px;
    }

    .timeline-content:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.2);
    }

    .timeline-year {
        background: #02055a;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(2, 5, 90, 0.3);
        z-index: 3;
        position: absolute;
    }

    /* --- Positioning for Horizontal Layout --- */

    /* Items BELOW the line */
    .timeline-item-bottom .timeline-year {
        top: calc(50% + 25px);
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item-bottom .timeline-content {
        top: calc(50% + 60px);
    }

    /* Items ABOVE the line */
    .timeline-item-top .timeline-year {
        bottom: calc(50% + 25px);
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item-top .timeline-content {
        bottom: calc(50% + 60px);
    }


    /* ==========================================================================
    Media Queries for Responsiveness
    ========================================================================== */

    /* Large Tablets and Small Desktops */
    @media (max-width: 992px) {
        .timeline-item {
            flex-basis: 160px; /* Items can be a bit smaller */
        }
        .timeline-content {
            font-size: 14px;
            padding: 15px;
        }
    }

    /* Switch to Vertical Timeline for Tablets and Below */
    @media (max-width: 768px) {
        .horizontal-timeline {
            padding: 40px 0;
            overflow: visible; /* No more horizontal scroll */
        }
        
        .timeline-track {
            width: 4px;
            height: 100%;
            top: 0;
            left: 30px; /* Position line to the left */
            transform: none;
            background: linear-gradient(180deg, #3573D4, #02055a);
        }
        
        .timeline-items-container {
            flex-direction: column;
            padding: 0 20px 0 50px; /* Padding to accommodate the line */
            height: auto;
            align-items: flex-start;
        }
        
        .timeline-item {
            width: 100%;
            max-width: 500px; /* Optional: max width for content on large tablets */
            margin-bottom: 40px; /* Space between vertical items */
            align-items: flex-start; /* All items align to the line */
        }

        .timeline-dot {
            position: absolute;
            top: 5px;
            left: -40px; /* Position dot relative to the new line */
            transform: none;
        }
        
        .timeline-year {
            position: relative;
            top: 0;
            left: 0;
            margin-bottom: 10px;
        }
        
        .timeline-content {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            transform: none !important; /* Disable hover transform */
        }
        
        .timeline-content:hover {
            transform: none !important;
            box-shadow: 0 10px 30px rgba(2, 5, 90, 0.15);
        }

        /* The alternating classes are no longer needed for positioning */
        .timeline-item-top .timeline-content,
        .timeline-item-bottom .timeline-content,
        .timeline-item-top .timeline-year,
        .timeline-item-bottom .timeline-year {
            position: relative;
            top: auto;
            bottom: auto;
            left: auto;
            right: auto;
            transform: none;
        }
    }

    /* Small Mobile Devices */
    @media (max-width: 480px) {
        .horizontal-timeline {
            padding: 20px 0;
            margin: 30px 0;
        }

        .timeline-track {
            left: 20px;
        }

        .timeline-items-container {
            padding-left: 40px;
        }
        
        .timeline-item {
            margin-bottom: 30px;
        }
        
        .timeline-dot {
            left: -30px;
        }
        
        .timeline-content {
            padding: 12px;
            font-size: 14px;
            min-height: auto;
        }
        
        .timeline-year {
            font-size: 13px;
            padding: 4px 12px;
        }
    }
    
    /* Why YanaCorp Exists - Creative Split Design */
    .why-exists {
        display: flex;
        margin: 60px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(2, 5, 90, 0.08);
    }
    
    .why-challenges {
        flex: 1;
        background: #f8f9fa;
        padding: 50px;
        position: relative;
    }
    
    .why-solutions {
        flex: 1;
        background: linear-gradient(135deg, #02055a, #3573D4);
        padding: 50px;
        color: white;
        position: relative;
    }
    
    .why-header {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .why-challenges .why-header {
        color: #02055a;
    }
    
    .why-solutions .why-header {
        color: white;
    }
    
    .why-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #3573D4;
    }
    
    .why-solutions .why-header::after {
        background: white;
    }
    
    /* Founder Section - Creative Profile Card */
    .founder-profile {
        background: linear-gradient(135deg, #02055a, #3573D4);
        border-radius: 20px;
        padding: 0;
        margin: 60px 0;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(2, 5, 90, 0.15);
        display: flex;
    }
    
    .founder-image {
        flex: 1;
        position: relative;
        overflow: hidden;
    }
    
    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .founder-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(2, 5, 90, 0.8), rgba(0, 98, 244, 0.4));
    }
    
    .founder-info {
        flex: 1;
        padding: 60px;
        color: white;
        position: relative;
        z-index: 1;
    }
    
    .founder-name {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }
    
    .founder-title {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
        font-weight: 500;
    }
    
    /* Team Section - Creative Grid */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }
    
    .team-member {
        position: relative;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        transition: all 0.3s ease;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(2, 5, 90, 0.15);
    }
    
    .team-photo {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .team-member:hover .team-photo img {
        transform: scale(1.1);
    }
    
    .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(2, 5, 90, 0.1), rgba(2, 5, 90, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .team-member:hover .team-overlay {
        opacity: 1;
    }
    
    .team-social {
        display: flex;
        gap: 15px;
    }
    
    .team-social a {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        transition: all 0.3s ease;
    }
    
    .team-social a:hover {
        background: #3573D4;
        color: white;
        transform: scale(1.1);
    }
    
    .team-info {
        padding: 20px;
        text-align: center;
    }
    
    .team-name {
        font-size: 18px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 5px;
    }
    
    .team-position {
        font-size: 14px;
        color: #3573D4;
    }
    
    /* Tech Tags */
    .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 30px 0;
    }
    
    .tech-tag {
        padding: 8px 20px;
        background: rgba(0, 98, 244, 0.1);
        color: #3573D4;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid rgba(0, 98, 244, 0.2);
        transition: all 0.3s ease;
    }
    
    .tech-tag:hover {
        background: #3573D4;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 98, 244, 0.3);
    }
    
    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, rgba(0, 98, 244, 0.1), rgba(2, 5, 90, 0.1));
        border-left: 4px solid #1F1A56;
        padding: 30px;
        margin: 30px 0;
        border-radius: 0 15px 15px 0;
        position: relative;
    }
    
    .highlight-box::before {
        content: '💡';
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        background: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Feature List */
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .feature-list li {
        padding: 15px 0 15px 50px;
        position: relative;
        margin-bottom: 10px;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 15px;
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #3573D4, #02055a);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    
    .feature-list li:hover {
        transform: translateX(10px);
        color: #3573D4;
    }
    
    /* Content Card */
    .content-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin: 40px 0;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.08);
    }
    
    /* Animations */
    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    @keyframes circuitMove {
        0% { background-position: 0 0; }
        100% { background-position: 50px 50px; }
    }
    
    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(300px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
    
    @media (max-width: 992px) {
      
        .split-about {
            flex-direction: column;
        }
        
        .mission-vision-container {
            flex-direction: column;
            align-items: center;
        }
        
        .values-orbit {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .values-center {
            position: static;
            transform: none;
            margin: 0 auto 20px;
        }
        
        .value-orbit-item {
            position: static;
            animation: none;
            margin: 0;
        }
        
        .why-exists {
            flex-direction: column;
        }
        
        .founder-profile {
            flex-direction: column;
        }
    }
    
    @media (max-width: 768px) {
        .values-orbit {
            grid-template-columns: 1fr;
        }
        
        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
        
        .story-container {
            flex-direction: column;
            align-items: center;
        }
   
    }

    
    /* Define the primary gradient */
    :root {
        --primary-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(2, 5, 90, 0.85) 100%);
        --main-color: #02055a;
    }
    
    /* Enhanced Hero Section */
    .page-header-modern {
        position: relative;
        overflow: hidden;
        z-index: 10;
        background-color: #02055a;
    }
    
    .page-header-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 98, 244, 0.1) 0%, transparent 50%);
        animation: pulse 8s ease-in-out infinite;
    }
    
    /* Tech Circuit Background */
    .circuit-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 1px, transparent 1px),
            radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: circuitMove 20s linear infinite;
    }
    
    /* Section Headers */
    .section-header {
        position: relative;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-header h2 {
        display: inline-block;
        font-weight: 800;
        background: linear-gradient(135deg, #02055a, #3573D4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 20px;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3573D4, #02055a);
        border-radius: 2px;
    }
    
    /* Creative About Section - Split Screen Design */
    .split-about {
        display: flex;
        min-height: 600px;
        margin: 50px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(2, 5, 90, 0.08);
        position: relative;
        z-index: 5;
    }
    
    .split-about-left {
        flex: 1;
        background: linear-gradient(135deg, #02055a, #3573D4);
        padding: 60px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .split-about-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    }
    
    .split-about-right {
        flex: 1;
        background: white;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Enhanced Story Section - Interactive Cards */
    .story-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 40px 0;
    }
    
    .story-card {
        flex: 1;
        min-width: 300px;
        max-width: 350px;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.1);
        transition: all 0.4s ease;
        position: relative;
    }
    
    .story-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(2, 5, 90, 0.2);
    }
    
    .story-card-header {
        height: 120px;
        background: linear-gradient(135deg, #02055a, #3573D4);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .story-card-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        height: 60px;
        background: white;
        border-radius: 50% 50% 0 0;
    }
    
    .story-icon {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        font-size: 30px;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .story-card-body {
        padding: 40px 30px 30px;
        text-align: center;
    }
    
    .story-card-title {
        font-size: 24px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 20px;
    }
    
    .story-card-text {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }
    
    /* Mission/Vision - Enhanced Card Design */
    .mission-vision-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 60px 0;
        flex-wrap: wrap;
    }
    
    .mission-vision-card {
        width: 350px;
        height: 450px;
        perspective: 1000px;
    }
    
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }
    
    .mission-vision-card:hover .card-inner {
        transform: rotateY(180deg);
    }
    
    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.15);
    }
    
    .card-front {
        background: linear-gradient(135deg, #02055a, #3573D4);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    
    .card-back {
        background: white;
        color: #333;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    
    .card-icon {
        width: 100px;
        height: 100px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        font-size: 40px;
        margin-bottom: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .card-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .card-text {
        font-size: 18px;
        line-height: 1.6;
    }
    
    /* Values - Animated Cards with Motion */
    .values-container {
        position: relative;
        margin: 80px 0;
        overflow: hidden;
    }
    
    .values-orbit {
        position: relative;
        width: 600px;
        height: 600px;
        margin: 0 auto;
    }
    
    .values-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #02055a, #3573D4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.3);
        z-index: 10;
    }
    
    .value-orbit-item {
        position: absolute;
        width: 160px;
        height: 160px;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        transition: all 0.5s ease;
        animation: orbit 60s linear infinite;
    }
    
    .value-orbit-item:nth-child(2) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: 0s;
    }
    
    .value-orbit-item:nth-child(3) {
        top: 25%;
        right: 0;
        animation-delay: 10s;
    }
    
    .value-orbit-item:nth-child(4) {
        bottom: 0;
        right: 25%;
        animation-delay: 20s;
    }
    
    .value-orbit-item:nth-child(5) {
        bottom: 0;
        left: 25%;
        animation-delay: 30s;
    }
    
    .value-orbit-item:nth-child(6) {
        top: 25%;
        left: 0;
        animation-delay: 40s;
    }
    
    .value-orbit-item:nth-child(7) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: 50s;
    }
    
    .value-orbit-item:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.2);
        z-index: 20;
        animation-play-state: paused;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3573D4, #02055a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .value-title {
        font-size: 16px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 5px;
    }
    
    .value-text {
        font-size: 12px;
        color: #555;
    }

    /* ==========================================================================
    Timeline Component - Responsive Design
    ========================================================================== */

    /* --- Base Horizontal Timeline Styles --- */
    .horizontal-timeline {
        position: relative;
        margin: 60px 0; /* Reduced margin */
        overflow-x: auto;
        overflow-y: hidden;
        padding: 80px 0; /* Reduced vertical padding */
        -webkit-overflow-scrolling: touch;
    }

    .timeline-track {
        position: absolute;
        height: 4px;
        background: linear-gradient(90deg, #3573D4, #02055a);
        width: 100%; /* Fluid width */
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .timeline-items-container {
        position: relative;
        display: flex;
        /* Fluid container, no min-width */
        padding: 0 40px; /* Use padding for edge spacing instead of justify-content */
        height: 280px; /* Reduced height */
        align-items: center;
    }

    .timeline-item {
        position: relative;
        /* Flex item: can grow, shrink, and has a base width */
        flex: 1 1 180px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.6s ease;
        /* Add a small margin between items */
        margin: 0 10px;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid #3573D4;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        flex-shrink: 0;
    }

    .timeline-content {
        background: white;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        border: 1px solid rgba(0, 98, 244, 0.1);
        position: absolute;
        width: 100%; /* Takes full width of the flex item */
        transition: all 0.3s ease;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 15px;
    }

    .timeline-content:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.2);
    }

    .timeline-year {
        background: #02055a;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(2, 5, 90, 0.3);
        z-index: 3;
        position: absolute;
    }

    /* --- Positioning for Horizontal Layout --- */

    /* Items BELOW the line */
    .timeline-item-bottom .timeline-year {
        top: calc(50% + 25px);
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item-bottom .timeline-content {
        top: calc(50% + 60px);
    }

    /* Items ABOVE the line */
    .timeline-item-top .timeline-year {
        bottom: calc(50% + 25px);
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item-top .timeline-content {
        bottom: calc(50% + 60px);
    }


    /* ==========================================================================
    Media Queries for Responsiveness
    ========================================================================== */

    /* Large Tablets and Small Desktops */
    @media (max-width: 992px) {
        .timeline-item {
            flex-basis: 160px; /* Items can be a bit smaller */
        }
        .timeline-content {
            font-size: 14px;
            padding: 15px;
        }
    }

    /* Switch to Vertical Timeline for Tablets and Below */
    @media (max-width: 768px) {
        .horizontal-timeline {
            padding: 40px 0;
            overflow: visible; /* No more horizontal scroll */
        }
        
        .timeline-track {
            width: 4px;
            height: 100%;
            top: 0;
            left: 30px; /* Position line to the left */
            transform: none;
            background: linear-gradient(180deg, #3573D4, #02055a);
        }
        
        .timeline-items-container {
            flex-direction: column;
            padding: 0 20px 0 50px; /* Padding to accommodate the line */
            height: auto;
            align-items: flex-start;
        }
        
        .timeline-item {
            width: 100%;
            max-width: 500px; /* Optional: max width for content on large tablets */
            margin-bottom: 40px; /* Space between vertical items */
            align-items: flex-start; /* All items align to the line */
        }

        .timeline-dot {
            position: absolute;
            top: 5px;
            left: -40px; /* Position dot relative to the new line */
            transform: none;
        }
        
        .timeline-year {
            position: relative;
            top: 0;
            left: 0;
            margin-bottom: 10px;
        }
        
        .timeline-content {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            transform: none !important; /* Disable hover transform */
        }
        
        .timeline-content:hover {
            transform: none !important;
            box-shadow: 0 10px 30px rgba(2, 5, 90, 0.15);
        }

        /* The alternating classes are no longer needed for positioning */
        .timeline-item-top .timeline-content,
        .timeline-item-bottom .timeline-content,
        .timeline-item-top .timeline-year,
        .timeline-item-bottom .timeline-year {
            position: relative;
            top: auto;
            bottom: auto;
            left: auto;
            right: auto;
            transform: none;
        }
    }

    /* Small Mobile Devices */
    @media (max-width: 480px) {
        .horizontal-timeline {
            padding: 20px 0;
            margin: 30px 0;
        }

        .timeline-track {
            left: 20px;
        }

        .timeline-items-container {
            padding-left: 40px;
        }
        
        .timeline-item {
            margin-bottom: 30px;
        }
        
        .timeline-dot {
            left: -30px;
        }
        
        .timeline-content {
            padding: 12px;
            font-size: 14px;
            min-height: auto;
        }
        
        .timeline-year {
            font-size: 13px;
            padding: 4px 12px;
        }
    }
    
    /* Why YanaCorp Exists - Creative Split Design */
    .why-exists {
        display: flex;
        margin: 60px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(2, 5, 90, 0.08);
    }
    
    .why-challenges {
        flex: 1;
        background: #f8f9fa;
        padding: 50px;
        position: relative;
    }
    
    .why-solutions {
        flex: 1;
        background: linear-gradient(135deg, #02055a, #3573D4);
        padding: 50px;
        color: white;
        position: relative;
    }
    
    .why-header {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .why-challenges .why-header {
        color: #02055a;
    }
    
    .why-solutions .why-header {
        color: white;
    }
    
    .why-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #3573D4;
    }
    
    .why-solutions .why-header::after {
        background: white;
    }
    
    /* Founder Section - Creative Profile Card */
    .founder-profile {
        background: linear-gradient(135deg, #02055a, #3573D4);
        border-radius: 20px;
        padding: 0;
        margin: 60px 0;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(2, 5, 90, 0.15);
        display: flex;
    }
    
    .founder-image {
        flex: 1;
        position: relative;
        overflow: hidden;
    }
    
    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .founder-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(2, 5, 90, 0.8), rgba(0, 98, 244, 0.4));
    }
    
    .founder-info {
        flex: 1;
        padding: 60px;
        color: white;
        position: relative;
        z-index: 1;
    }
    
    .founder-name {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }
    
    .founder-title {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
        font-weight: 500;
    }
    
    /* Team Section - Creative Grid */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }
    
    .team-member {
        position: relative;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(2, 5, 90, 0.1);
        transition: all 0.3s ease;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(2, 5, 90, 0.15);
    }
    
    .team-photo {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .team-member:hover .team-photo img {
        transform: scale(1.1);
    }
    
    .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(2, 5, 90, 0.1), rgba(2, 5, 90, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .team-member:hover .team-overlay {
        opacity: 1;
    }
    
    .team-social {
        display: flex;
        gap: 15px;
    }
    
    .team-social a {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #02055a;
        transition: all 0.3s ease;
    }
    
    .team-social a:hover {
        background: #3573D4;
        color: white;
        transform: scale(1.1);
    }
    
    .team-info {
        padding: 20px;
        text-align: center;
    }
    
    .team-name {
        font-size: 18px;
        font-weight: 700;
        color: #02055a;
        margin-bottom: 5px;
    }
    
    .team-position {
        font-size: 14px;
        color: #3573D4;
    }
    
    /* Tech Tags */
    .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 30px 0;
    }
    
    .tech-tag {
        padding: 8px 20px;
        background: rgba(0, 98, 244, 0.1);
        color: #3573D4;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid rgba(0, 98, 244, 0.2);
        transition: all 0.3s ease;
    }
    
    .tech-tag:hover {
        background: #3573D4;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 98, 244, 0.3);
    }
    
    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, rgba(0, 98, 244, 0.1), rgba(2, 5, 90, 0.1));
        border-left: 4px solid #1F1A56;
        padding: 30px;
        margin: 30px 0;
        border-radius: 0 15px 15px 0;
        position: relative;
    }
    
    .highlight-box::before {
        content: '💡';
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        background: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Feature List */
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .feature-list li {
        padding: 15px 0 15px 50px;
        position: relative;
        margin-bottom: 10px;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 15px;
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #3573D4, #02055a);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    
    .feature-list li:hover {
        transform: translateX(10px);
        color: #3573D4;
    }
    
    /* Content Card */
    .content-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin: 40px 0;
        box-shadow: 0 15px 40px rgba(2, 5, 90, 0.08);
    }
    
    /* Animations */
    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    @keyframes circuitMove {
        0% { background-position: 0 0; }
        100% { background-position: 50px 50px; }
    }
    
    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(300px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
    
    @media (max-width: 992px) {
      
        .split-about {
            flex-direction: column;
        }
        
        .mission-vision-container {
            flex-direction: column;
            align-items: center;
        }
        
        .values-orbit {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .values-center {
            position: static;
            transform: none;
            margin: 0 auto 20px;
        }
        
        .value-orbit-item {
            position: static;
            animation: none;
            margin: 0;
        }
        
        .why-exists {
            flex-direction: column;
        }
        
        .founder-profile {
            flex-direction: column;
        }
    }
    
    @media (max-width: 768px) {
        .values-orbit {
            grid-template-columns: 1fr;
        }
        
        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
        
        .story-container {
            flex-direction: column;
            align-items: center;
        }

        /* Ensure you have Font Awesome linked in your <head> for the icons to appear */
        /* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> */

        .myValuesSwiper {
            width: 300px;
            height: 420px;
            padding: 20px 0;
        }

        .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            font-size: 22px;
            font-weight: bold;
            color: #fff;
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .swiper-slide .card-content {
            padding: 20px;
        }

        .swiper-slide i {
            font-size: 3rem;
            opacity: 0.9;
        }

        .swiper-slide h4 {
            font-size: 1.5rem;
            margin: 10px 0;
        }

        .swiper-slide p {
            font-size: 0.9rem;
            font-weight: normal;
            opacity: 0.9;
            color: white;
        }

        /* Background colors for each slide */
        .swiper-slide:nth-child(1n) { background-color: #EC008C ; } 
        .swiper-slide:nth-child(2n) { background-color: #38A4DD; } 
        .swiper-slide:nth-child(3n) { background-color: #ffc107; } 
        .swiper-slide:nth-child(4n) { background-color: #A44255; } 
        .swiper-slide:nth-child(5n) { background-color: #65499E; } 

    }
    

    
