/*==========================================================
TECHNOLOGY BEFORE IT WAS TRENDY
Executive Blue Premium

PART 1

1. Section Foundation
2. Background Effects
3. Container
4. Section Header
5. Introduction
6. Timeline
7. Timeline Line
8. Timeline Nodes
==========================================================*/


/*==========================================================
1. SECTION FOUNDATION
==========================================================*/

.technology-journey{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:#ffffff;

}



/*==========================================================
2. BACKGROUND EFFECTS
==========================================================*/

.technology-journey::before{

    content:"";

    position:absolute;

    top:-260px;

    left:-220px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(14,73,124,.05),
        rgba(14,73,124,0)
    );

    pointer-events:none;

}



.technology-journey::after{

    content:"";

    position:absolute;

    bottom:-220px;

    right:-220px;

    width:620px;

    height:620px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(214,40,40,.04),
        rgba(214,40,40,0)
    );

    pointer-events:none;

}



/*==========================================================
3. CONTAINER
==========================================================*/

.technology-journey .container{

    position:relative;

    z-index:2;

}



/*==========================================================
4. SECTION HEADER
==========================================================*/

.technology-journey .section-header{

    text-align:center;

    margin-bottom:40px;

}



.technology-journey .section-tag{

    display:inline-block;

    position:relative;

    margin-bottom:18px;

    padding-bottom:14px;

    font-family:var(--font-heading);

    font-size:1rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--primary-red);

}



.technology-journey .section-tag::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;

    height:3px;

    border-radius:20px;

    background:var(--primary-red);

}



.technology-journey .section-title{

    margin:0 auto;

    max-width:900px;

    font-family:var(--font-heading);

    font-size:clamp(3rem,4vw,4.4rem);

    line-height:1.15;

    letter-spacing:-1px;

    color:var(--primary-blue);

    text-wrap:balance;

}



/*==========================================================
5. INTRODUCTION
==========================================================*/

.journey-intro{

    max-width:1100px;

    margin:0 auto 48px;

}



.journey-intro p{

    margin:0 0 16px;

    font-family:var(--font-body);

    font-size:1.12rem;

    line-height:1.75;

    color:#5F6B7A;

    text-align:left;

    text-wrap:pretty;

}



.journey-intro p:last-child{

    margin-bottom:0;

}



/*==========================================================
TECHNOLOGY TIMELINE
==========================================================*/

.tech-timeline{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:28px;

    margin:56px 0 56px;

}



/*==========================================================
START / END
==========================================================*/

.tech-timeline-start{

    flex:0 0 auto;

    display:flex;

    align-items:center;

    justify-content:center;

}



.tech-timeline-year{

    width:112px;

    height:112px;

    border-radius:50%;

    background:#0E497C;

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-family:var(--font-heading);

    font-size:1.65rem;

    font-weight:700;

    box-shadow:
        0 18px 45px rgba(14,73,124,.20);

}



.tech-timeline-end{

    flex:0 0 auto;

    padding-top:34px;

    text-align:center;

    font-family:var(--font-heading);

    font-size:1.1rem;

    font-weight:700;

    color:#0E497C;

    line-height:1.5;

}



/*==========================================================
TRACK
==========================================================*/

.tech-timeline-track{

    flex:1;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-top:16px;

}



/*==========================================================
ITEM
==========================================================*/

.tech-timeline-item{

    position:relative;

    flex:1;

    display:flex;

    flex-direction:column;

    align-items:center;

}



/*==========================================================
CONNECTORS
==========================================================*/

.tech-connector{

    position:absolute;

    top:41px;

    height:4px;

    background:#DCE6EF;

    z-index:1;

}



.tech-connector-left{

    left:0;

    right:50%;

}



.tech-connector-right{

    left:50%;

    right:0;

}



.tech-timeline-item:first-child .tech-connector-left{

    display:none;

}



.tech-timeline-item:last-child .tech-connector-right{

    display:none;

}



/*==========================================================
ICON
==========================================================*/

.tech-timeline-icon{

    position:relative;

    z-index:5;

    width:72px;

    height:72px;

    border-radius:50%;

    background:#ffffff;

    border:4px solid #E7EDF5;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
        0 12px 35px rgba(14,73,124,.08);

    transition:.35s;

}



.tech-timeline-icon img{

    width:32px;

    height:32px;

    object-fit:contain;

}



/*==========================================================
LABEL
==========================================================*/

.tech-timeline-label{

    margin-top:12px;

    font-family:var(--font-body);

    font-size:1rem;

    font-weight:600;

    color:#4F5F73;

    text-align:center;

}



/*==========================================================
COLOURS
==========================================================*/

.tech-timeline-item.executive .tech-timeline-icon{

    border-color:#0E497C;

}

.tech-timeline-item.executive .tech-connector-right{

    background:#0E497C;

}



.tech-timeline-item.blue .tech-timeline-icon{

    border-color:#2F73D9;

}

.tech-timeline-item.blue .tech-connector-left,
.tech-timeline-item.blue .tech-connector-right{

    background:#2F73D9;

}



.tech-timeline-item.green .tech-timeline-icon{

    border-color:#57C84D;

}

.tech-timeline-item.green .tech-connector-left,
.tech-timeline-item.green .tech-connector-right{

    background:#57C84D;

}



.tech-timeline-item.purple .tech-timeline-icon{

    border-color:#8B5CF6;

}

.tech-timeline-item.purple .tech-connector-left,
.tech-timeline-item.purple .tech-connector-right{

    background:#8B5CF6;

}



.tech-timeline-item.orange .tech-timeline-icon{

    border-color:#F39C12;

}

.tech-timeline-item.orange .tech-connector-left{

    background:#F39C12;

}



/*==========================================================
HOVER
==========================================================*/

.tech-timeline-item:hover .tech-timeline-icon{

    transform:translateY(-6px);

    box-shadow:
        0 18px 45px rgba(14,73,124,.16);

}


/*==========================================================
PART 2

13. Innovation Grid
14. Innovation Cards
15. Card Icon
16. Card Content
17. Divider
18. Card Image
19. Hover Effects
==========================================================*/


/*==========================================================
13. INNOVATION GRID
==========================================================*/

.innovation-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    margin-bottom:56px;

}



/*==========================================================
14. INNOVATION CARD
==========================================================*/

.innovation-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border-radius:26px;

    overflow:hidden;

    border:1px solid #E6ECF2;

    box-shadow:

        0 18px 45px rgba(245, 243, 243, 0.08);

    transition:

        transform .4s ease,

        box-shadow .4s ease,

        border-color .4s ease;

}



.innovation-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .4s ease;

}



/*==========================================================
15. CARD COLOURS
==========================================================*/

.innovation-card.executive::before{

    background:#0E497C;

}

.innovation-card.blue::before{

    background:#2F73D9;

}



.innovation-card.green::before{

    background:#57C84D;

}



.innovation-card.purple::before{

    background:#8B5CF6;

}



.innovation-card.orange::before{

    background:#F39C12;

}



/*==========================================================
16. CARD ICON
==========================================================*/

.innovation-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:72px;

    height:72px;

    margin:24px auto 18px;

    border-radius:50%;

    background:#E7EEF5;

    border:5px solid #E7EEF5;

}



.innovation-icon img{

    width:48px;

    height:48px;

    object-fit:contain;

}



/*==========================================================
17. CARD CONTENT
==========================================================*/

.innovation-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:0 22px;

}



.innovation-content h3{

    margin:0;

    min-height:54px;

    font-family:var(--font-heading);

    font-size:1.2rem;

    line-height:1.3;

    text-align:center;

    color:var(--primary-blue);

}



.innovation-divider{

    width:52px;

    height:3px;

    margin:14px auto 18px;

    border-radius:30px;

    background:#D62828;

}



.innovation-content p{

    margin:0;

    flex:1;

    font-family:var(--font-body);

    font-size:.96rem;

    line-height:1.65;

    text-align:center;

    color:#647181;

}



/*==========================================================
18. CARD IMAGE
==========================================================*/

.innovation-image{

    margin-top:20px;

    overflow:hidden;

}



.innovation-image img{

    display:block;

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:

        transform .7s ease;

}



/*==========================================================
19. HOVER EFFECTS
==========================================================*/

.innovation-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 28px 60px rgba(14,73,124,.15);

}



.innovation-card:hover::before{

    transform:scaleX(1);

}



.innovation-card:hover .innovation-image img{

    transform:scale(1.06);

}



.innovation-card:hover .innovation-icon{

    transform:scale(1.08);

}



/*==========================================================
20. COLOURED ICON RINGS
==========================================================*/

.innovation-card.executive .innovation-icon{

    border-color:#0E497C;

}

.innovation-card.blue .innovation-icon{

    border-color:#2F73D9;

}



.innovation-card.green .innovation-icon{

    border-color:#57C84D;

}



.innovation-card.purple .innovation-icon{

    border-color:#8B5CF6;

}



.innovation-card.orange .innovation-icon{

    border-color:#F39C12;

}



/*==========================================================
21. SUBTLE GRADIENT BACKGROUNDS
==========================================================*/

.innovation-card.executive{

    background:

        linear-gradient(
            180deg,
            rgba(14,73,124,.04),
            #ffffff 32%
        );

}

.innovation-card.blue{

    background:

        linear-gradient(
            180deg,
            rgba(47,115,217,.04),
            #ffffff 32%
        );

}



.innovation-card.green{

    background:

        linear-gradient(
            180deg,
            rgba(87,200,77,.04),
            #ffffff 32%
        );

}



.innovation-card.purple{

    background:

        linear-gradient(
            180deg,
            rgba(139,92,246,.04),
            #ffffff 32%
        );

}



.innovation-card.orange{

    background:

        linear-gradient(
            180deg,
            rgba(243,156,18,.04),
            #ffffff 32%
        );

}

/*==========================================================
PART 3

22. Technology With Purpose
23. Large Desktop
24. Laptop
25. Tablet
26. Mobile
27. Accessibility
28. Reduced Motion
==========================================================*/


/*==========================================================
22. TECHNOLOGY WITH PURPOSE
==========================================================*/

.technology-purpose{

    position:relative;

    display:flex;

    align-items:center;

    gap:26px;

    max-width:1100px;

    margin:0 auto;

    padding:38px 42px;

    background:#ffffff;

    border:1px solid #E6ECF2;

    border-radius:28px;

    box-shadow:

        0 20px 50px rgba(14,73,124,.08);

}



.technology-purpose::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:

        linear-gradient(
            135deg,
            rgba(14,73,124,.03),
            rgba(214,40,40,.03)
        );

    pointer-events:none;

}



.purpose-icon{

    position:relative;

    z-index:2;

    flex-shrink:0;

    width:110px;

    height:110px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#F7FAFD;

    border:3px solid var(--primary-blue);

    box-shadow:

        0 12px 30px rgba(14,73,124,.10);

}



.purpose-icon img{

    width:54px;

    height:54px;

    object-fit:contain;

}



.purpose-content{

    position:relative;

    z-index:2;

    flex:1;

}



.purpose-content h3{

    margin:0;

    font-family:var(--font-heading);

    font-size:2rem;

    color:var(--primary-blue);

}



.purpose-divider{

    width:75px;

    height:4px;

    margin:18px 0 24px;

    border-radius:20px;

    background:var(--primary-red);

}



.purpose-content p{

    margin:0;

    font-family:var(--font-body);

    font-size:1.08rem;

    line-height:1.9;

    color:#5F6B7A;

}



/*==========================================================
23. LARGE DESKTOP
==========================================================*/

@media (max-width:1500px){

    .innovation-grid{

        gap:22px;

    }

}



/*==========================================================
24. LAPTOP
==========================================================*/

@media (max-width:1200px){

    .tech-timeline{

        gap:20px;

        margin:44px 0 44px;

    }

    .tech-timeline-year{

        width:96px;

        height:96px;

        font-size:1.4rem;

    }

    .tech-timeline-track{

        margin-top:12px;

    }

    .tech-timeline-icon{

        width:64px;

        height:64px;

    }

    .tech-timeline-icon img{

        width:28px;

        height:28px;

    }

    .tech-timeline-label{

        margin-top:10px;

        font-size:.92rem;

    }

    .innovation-grid{

        grid-template-columns:

            repeat(2,1fr);

        gap:18px;

    }

    .technology-purpose{

        padding:34px 36px;

    }

}



/*==========================================================
25. TABLET
==========================================================*/

@media (max-width:992px){

    .technology-journey{

        padding:86px 0;

    }

    .journey-intro{

        margin-bottom:40px;

    }

    .tech-timeline{

        display:none;

    }

    .innovation-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .innovation-card{

        max-width:660px;

        margin:auto;

    }

    .technology-purpose{

        flex-direction:column;

        text-align:center;

        gap:20px;

        padding:32px 28px;

    }

    .purpose-divider{

        margin:20px auto 28px;

    }

}



/*==========================================================
26. MOBILE
==========================================================*/

@media (max-width:768px){

    .technology-journey{

        padding:72px 0;

    }

    .technology-journey .section-title{

        font-size:2.4rem;

    }

    .journey-intro{

        margin-bottom:32px;

    }

    .journey-intro p{

        font-size:1rem;

        line-height:1.8;

    }

    .innovation-card{

        border-radius:22px;

    }

    .innovation-icon{

        width:66px;

        height:66px;

        margin:20px auto 14px;

    }

    .innovation-icon img{

        width:42px;

        height:42px;

    }

    .innovation-content{

        padding:0 20px;

    }

    .innovation-content h3{

        min-height:auto;

        font-size:1.15rem;

    }

    .innovation-divider{

        margin:12px auto 16px;

    }

    .innovation-content p{

        font-size:.95rem;

        line-height:1.6;

    }

    .innovation-image{

        margin-top:16px;

    }

    .technology-purpose{

        padding:28px 22px;

        gap:18px;

    }

    .purpose-icon{

        width:90px;

        height:90px;

    }

    .purpose-icon img{

        width:46px;

        height:46px;

    }

    .purpose-content h3{

        font-size:1.7rem;

    }

}



/*==========================================================
27. ACCESSIBILITY
==========================================================*/

.innovation-card:focus-within{

    outline:3px solid rgba(14,73,124,.25);

    outline-offset:6px;

}

.tech-timeline-icon:focus-visible{

    outline:3px solid rgba(14,73,124,.25);

    outline-offset:5px;

}



/*==========================================================
28. REDUCED MOTION
==========================================================*/

@media (prefers-reduced-motion:reduce){

    .innovation-card,

    .innovation-card *,

    .tech-timeline-icon{

        transition:none !important;

        animation:none !important;

    }

}