
    /* Process page specific styles */
    :root {
        --primary: #0a47aa;
        --secondary: #1a023c;
        --dark: #222;
        --light: #f8f9fa;
        --gray: #666;
        --white: #fff;
    }
    
    .process-section{
        margin-top: -80px;
    }
    
    /* Custom animations - Global */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
    @keyframes wave {
        0% { transform: rotate(0deg); }
        10% { transform: rotate(14deg); }
        20% { transform: rotate(-8deg); }
        30% { transform: rotate(14deg); }
        40% { transform: rotate(-4deg); }
        50% { transform: rotate(10deg); }
        60% { transform: rotate(0deg); }
        100% { transform: rotate(0deg); }
    }
    
    .animate-fade-in {
        animation: fadeIn 1s ease-out forwards;
    }
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    .animate-wave {
        display: inline-block;
        animation: wave 2s ease infinite;
        transform-origin: 70% 70%;
    }
    
    /* Unique Feature Animations */
    @keyframes swipeInLeft {
        from { opacity: 0; transform: translateX(-80px) scale(0.95) rotateY(-20deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotateY(0deg); }
    }
    @keyframes swipeInRight {
        from { opacity: 0; transform: translateX(80px) scale(0.95) rotateY(20deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotateY(0deg); }
    }
    @keyframes flipbook {
        0% { opacity: 0; transform: rotateY(-90deg) scale(0.9); }
        60% { opacity: 1; transform: rotateY(10deg) scale(1.05); }
        100% { opacity: 1; transform: rotateY(0deg) scale(1); }
    }
    .animate-swipe-left { opacity: 0; animation: swipeInLeft 1.2s cubic-bezier(.22,1,.36,1) forwards; }
    .animate-swipe-right { opacity: 0; animation: swipeInRight 1.2s cubic-bezier(.22,1,.36,1) forwards; }
    .animate-flipbook { opacity: 0; animation: flipbook 1.3s cubic-bezier(.22,1,.36,1) forwards; }
    .delay-1 { animation-delay: .2s; }
    .delay-2 { animation-delay: .4s; }
    .delay-3 { animation-delay: .6s; }
    .delay-4 { animation-delay: .8s; }
    
    .timeline__event__content {

        border-radius: 12px;
        padding: 18px 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 180px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        margin: 25px 0;
    }

    .timeline__event__content:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .timeline__event__title {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }

    .timeline__event__description {
        font-size: 11px;
        line-height: 1.4;
        color: #666;
        margin: 0;
    }

    /* Individual color themes - matching image sequence exactly */
    .timeline__event:nth-child(1) .timeline__event__icon::before {
        background: #66bb6a;
        border-color: #66bb6a;
    }
    .timeline__event:nth-child(1) .timeline__event__icon i {
        color: #66bb6a;
    }
    .timeline__event:nth-child(1) .timeline__event__title {
        color: #66bb6a;
    }
    .timeline__event:nth-child(1)::before {
        color: #66bb6a;
    }
    .timeline__event:nth-child(1) .timeline__event__content:hover {
        border-color: #66bb6a;
    }

    .timeline__event:nth-child(2) .timeline__event__icon::before {
        background: #4db6ac;
        border-color: #4db6ac;
    }
    .timeline__event:nth-child(2) .timeline__event__icon i {
        color: #4db6ac;
    }
    .timeline__event:nth-child(2) .timeline__event__title {
        color: #4db6ac;
    }
    .timeline__event:nth-child(2)::before {
        color: #4db6ac;
    }
    .timeline__event:nth-child(2) .timeline__event__content:hover {
        border-color: #4db6ac;
    }

    .timeline__event:nth-child(3) .timeline__event__icon::before {
        background: #42a5f5;
        border-color: #42a5f5;
    }
    .timeline__event:nth-child(3) .timeline__event__icon i {
        color: #42a5f5;
    }
    .timeline__event:nth-child(3) .timeline__event__title {
        color: #42a5f5;
    }
    .timeline__event:nth-child(3)::before {
        color: #42a5f5;
    }
    .timeline__event:nth-child(3) .timeline__event__content:hover {
        border-color: #42a5f5;
    }

    .timeline__event:nth-child(4) .timeline__event__icon::before {
        background: #42a5f5;
        border-color: #42a5f5;
    }
    .timeline__event:nth-child(4) .timeline__event__icon i {
        color: #42a5f5;
    }
    .timeline__event:nth-child(4) .timeline__event__title {
        color: #42a5f5;
    }
    .timeline__event:nth-child(4)::before {
        color: #42a5f5;
    }
    .timeline__event:nth-child(4) .timeline__event__content:hover {
        border-color: #42a5f5;
    }

    .timeline__event:nth-child(5) .timeline__event__icon::before {
        background: #ab47bc;
        border-color: #ab47bc;
    }
    .timeline__event:nth-child(5) .timeline__event__icon i {
        color: #ab47bc;
    }
    .timeline__event:nth-child(5) .timeline__event__title {
        color: #ab47bc;
    }
    .timeline__event:nth-child(5)::before {
        color: #ab47bc;
    }
    .timeline__event:nth-child(5) .timeline__event__content:hover {
        border-color: #ab47bc;
    }

    .timeline__event:nth-child(6) .timeline__event__icon::before {
        background: #5c6bc0;
        border-color: #5c6bc0;
    }
    .timeline__event:nth-child(6) .timeline__event__icon i {
        color: #5c6bc0;
    }
    .timeline__event:nth-child(6) .timeline__event__title {
        color: #5c6bc0;
    }
    .timeline__event:nth-child(6)::before {
        color: #5c6bc0;
    }
    .timeline__event:nth-child(6) .timeline__event__content:hover {
        border-color: #5c6bc0;
    }

    /* Animations */
    .timeline-animate {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .timeline-animate.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-delay-1 { transition-delay: 0.1s; }
    .timeline-delay-2 { transition-delay: 0.2s; }
    .timeline-delay-3 { transition-delay: 0.3s; }
    .timeline-delay-4 { transition-delay: 0.4s; }
    .timeline-delay-5 { transition-delay: 0.5s; }
    .timeline-delay-6 { transition-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .timeline {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .timeline::before {
            display: none;
        }
        
        .timeline__event::before {
            display: none;
        }
        
        .timeline__event:nth-child(odd),
        .timeline__event:nth-child(even) {
            padding: 0;
            flex-direction: column;
        }
    }

    @media (max-width: 768px) {
        .timeline {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .timeline__event__content {
            max-width: 180px;
        }
        
        .timeline__event__icon {
            width: 100px;
            height: 87px;
        }
        
        .timeline__event__icon::before {
            width: 100px;
            height: 87px;
        }
        
        .timeline__event__icon::after {
            top: 6px;
            left: 6px;
            width: 88px;
            height: 75px;
        }
    }

    @media (max-width: 480px) {
        .timeline {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        .timeline-container {
            padding: 60px 15px;
        }
        
        .timeline__event__content {
            max-width: 220px;
        }
        
        .timeline__event__title {
            font-size: 13px;
        }
        
        .timeline__event__description {
            font-size: 11px;
        }
    }
    
    /* Scroll direction animations for timeline */
    .scroll-up { animation: scrollUp 1.1s cubic-bezier(.22,1,.36,1) forwards !important; }
    .scroll-down { animation: scrollDown 1.1s cubic-bezier(.22,1,.36,1) forwards !important; }
    .scroll-left { animation: scrollLeft 1.1s cubic-bezier(.22,1,.36,1) forwards !important; }
    .scroll-right { animation: scrollRight 1.1s cubic-bezier(.22,1,.36,1) forwards !important; }
    @keyframes scrollUp {
        from { opacity: 0; transform: translateY(60px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes scrollDown {
        from { opacity: 0; transform: translateY(-60px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes scrollLeft {
        from { opacity: 0; transform: translateX(-60px) scale(0.95); }
        to { opacity: 1; transform: translateX(0) scale(1); }
    }
    @keyframes scrollRight {
        from { opacity: 0; transform: translateX(60px) scale(0.95); }
        to { opacity: 1; transform: translateX(0) scale(1); }
    }
    
    /* Process content specific styles */
    .process-content a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .process-content a:hover {
        color: var(--secondary);
    }
    
    .process-content .btn {
        background: var(--primary);
        color: var(--white);
        padding: 12px 24px;
        border-radius: var(--border-radius);
        transition: var(--transition);
        display: inline-block;
    }
    
    .process-content .btn:hover {
        background: var(--secondary);
        transform: translateY(-2px);
    }
    
    .aspect-ratio-box {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
    }
    .aspect-ratio-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* Parallax effect */
    .parallax-bg {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    /* Text gradient */
    .text-gradient {
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 40px;
        border: 2px solid rgba(255,255,255,0.7);
        border-radius: 12px;
    }
    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        width: 4px;
        height: 8px;
        margin-left: -2px;
        background-color: rgba(255,255,255,0.7);
        border-radius: 2px;
        animation: scrollAnimation 2s infinite;
    }
    @keyframes scrollAnimation {
        0% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(16px); }
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--light);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--secondary);
    }
    
    /* Glow effect */
    .glow-effect {
        box-shadow: 0 0 15px rgba(10, 71, 170, 0.5);
        transition: box-shadow 0.3s ease;
    }
    .glow-effect:hover {
        box-shadow: 0 0 25px rgba(10, 71, 170, 0.8);
    }
    
    /* Underline animation */
    .underline-animation {
        position: relative;
        display: inline-block;
    }
    .underline-animation::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--primary);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }
    .underline-animation:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
    
    /* Custom shape divider */
    .custom-shape-divider-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }
    .custom-shape-divider-bottom svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }
    .custom-shape-divider-bottom .shape-fill {
        fill: var(--white);
    }
    
    /* Mobile menu animation */
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }
    .mobile-menu.open {
        max-height: 500px;
    }
    
    /* Process page specific button and link styles */
    .process-content a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .process-content a:hover {
        color: var(--secondary);
    }
    
    .process-content .btn {
        background: var(--primary);
        color: var(--white);
        padding: 12px 24px;
        border-radius: var(--border-radius);
        transition: var(--transition);
        display: inline-block;
    }
    
    .process-content .btn:hover {
        background: var(--secondary);
        transform: translateY(-2px);
    }
