*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root
{

    --primary:#023566;
    --primary-dark:#01294d;
    --primary-light:#0b4b8d;

    --white:#ffffff;

    --background:#ffffff;

    --text:#111827;

    --gray:#6b7280;

    --border:#e5e7eb;

    --shadow:0 20px 60px rgba(2,53,102,.08);

    --shadow-hover:0 30px 80px rgba(2,53,102,.18);

    --radius:18px;

    --transition:.35s ease;

}

html
{
    scroll-behavior:smooth;
}

img
{
    max-width:100%;
}

a
{
    text-decoration:none;
}

ul
{
    list-style:none;
}

.container
{
    width:min(1200px,90%);
    margin:auto;
}

section
{
    padding:120px 0;
}

h1
{
    font-size:68px;
    line-height:1.1;
    font-weight:800;
}

h2
{
    font-size:44px;
    line-height:1.2;
    font-weight:700;
}

h3
{
    font-size:24px;
}

p
{
    color:var(--gray);
    font-size:18px;
}

.header
{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,.78);
    border-bottom:1px solid rgba(229,231,235,.6);
}

.nav
{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:84px;
}

.logo
{
    font-size:30px;
    font-weight:800;
    color:var(--text);
}

.menu
{
    display:flex;
    gap:45px;
}

.menu a
{
    color:var(--gray);
    font-weight:500;
    transition:.3s;
}

.menu a:hover
{
    color:var(--primary);
}

.btn-nav
{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    transition:.35s;
    font-weight:600;
}

.btn-nav:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}


/*========================
HERO
=========================*/

.hero{

    padding-top:190px;

    padding-bottom:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.badge{

    display:inline-flex;

    background:#eef5fc;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:30px;

}

.hero h1{

    margin-bottom:25px;

}

.hero p{

    max-width:600px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:70px;

}


/*========================
BUTTONS
=========================*/

.btn-primary{

    background:var(--primary);

    color:white;

    padding:18px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(2,53,102,.20);

}

.btn-secondary{

    border:1px solid var(--border);

    color:var(--text);

    padding:18px 34px;

    border-radius:14px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#f8fafc;

}


/*========================
STATS
=========================*/

.hero-stats{

    display:flex;

    gap:60px;

}

.hero-stats h3{

    color:var(--primary);

    font-size:30px;

    margin-bottom:6px;

}

.hero-stats span{

    color:var(--gray);

}


/*========================
DASHBOARD
=========================*/

.hero-image{

    display:flex;

    justify-content:center;

}
/*==========================================================
COULEX DIGITAL CARD
==========================================================*/


.hero-image{

    position:relative;

    min-height:550px;

    display:flex;

    align-items:center;

    justify-content:center;

}



.coulex-card{

    width:480px;

    min-height:520px;

    background:

    linear-gradient(

        145deg,

        #ffffff,

        #f8fafc

    );

    border-radius:32px;

    padding:40px;

    border:1px solid #e5e7eb;

    box-shadow:

    0 40px 100px rgba(2,53,102,.15);

    position:relative;

    overflow:hidden;

    transform:

    perspective(1200px)

    rotateY(-12deg)

    rotateX(5deg);

    transition:.5s ease;
}

.coulex-card:hover
{
    transform:
    perspective(1200px)
    rotateY(0)
    rotateX(0)
    translateY(-10px);
}

.coulex-card::before
{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:#023566;
    opacity:.06;
    border-radius:50%;
    top:-120px;
    right:-80px;
}

.coulex-card::after
{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#023566;
    opacity:.04;
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.card-top
{
    display:flex;
    align-items:center;
    gap:18px;
    position:relative;
    z-index:2;
}

.brand-icon
{
    width:65px;
    height:65px;
    border-radius:20px;
    background:#023566;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:800;
}

.brand-text h3
{
    font-size:30px;
    line-height:1;
    color:#111827;
}

.brand-text span
{
    color:#023566;
    font-weight:600;
    font-size:16px;
}

.card-middle
{
    margin-top:60px;
    position:relative;
    z-index:2;
}

.small-title
{
    color:#023566;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.card-middle h2
{
    font-size:32px;
    line-height:1.2;
    margin:18px 0;
    color:#111827;
}

.card-middle p:last-child
{
    font-size:17px;
}

.services-tags
{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:40px;
    position:relative;
    z-index:2;
}

.services-tags span
{
    padding:10px 16px;
    background:#edf5fc;
    color:#023566;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

@media(max-width:850px)
{
    .hero-image
    {
        min-height:450px;
    }

    .coulex-card
    {
        width:100%;
        max-width:420px;
        transform:none;
        padding:30px;
    }

    .coulex-card:hover
    {
        transform:translateY(-5px);
    }


    .card-middle h2{

        font-size:26px;

    }


    .tech-one{

        right:0;

    }


    .tech-two{

        left:0;

    }


}


/*========================
CONTENT
=========================*/

.content{

    flex:1;

    padding:30px;

}

.card{

    background:#f8fafc;

    border-radius:18px;

    margin-bottom:20px;

}

.card.big{

    height:160px;

}

.row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.row .card{

    height:120px;

}

.table{

    height:140px;

}


/*========================
SECTION TITLE
=========================*/

.section-title{

    text-align:center;

    max-width:700px;

    margin:auto auto 80px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    display:block;

    margin-bottom:18px;

}

.section-title h2{

    margin-bottom:18px;

}


/*========================
ANIMATIONS
=========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

.dashboard{

    animation:float 6s ease-in-out infinite;

}


/*========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f4f4f4;

}

.services
{
    background:#fafcff;
}

.services-grid
{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card
{
    background:white;
    border:1px solid var(--border);
    padding:40px 35px;
    border-radius:var(--radius);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.service-card::before
{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(2,53,102,.05);
    border-radius:50%;
    top:-60px;
    right:-60px;
    transition:.4s;
}

.service-card:hover::before
{
    transform:scale(2);
}

.service-card:hover
{
    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
    border-color:transparent;
}

.service-card svg
{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5fc;
    padding: 5px;
    color:var(--primary);
    font-size: 25px;
    border-radius: 10px;
    margin-bottom:25px;
}

.service-card h3
{
    margin-bottom:15px;
    position:relative;
}

.service-card p
{
    font-size:16px;
    position:relative;
}

.about-grid
{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}

.section-mini
{
    color:var(--primary);
    font-weight:700;
    display:inline-block;
    margin-bottom:20px;
}

.about h2
{
    margin-bottom:25px;
}

.about p
{
    max-width:550px;
}

.numbers
{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.numbers div
{
    background:white;
    border:1px solid var(--border);
    padding:40px 30px;
    border-radius:20px;
    transition:.3s;
}

.numbers div:hover
{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.numbers h3
{
    font-size:48px;
    color:var(--primary);
    font-weight:800;
    margin-bottom:5px;
}

.numbers span
{
    color:var(--gray);
}

.process
{
    background:#fafcff;
}

.timeline
{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
}

.timeline::before
{
    content:"";
    position:absolute;
    top:45px;
    left:10%;
    right:10%;
    height:2px;
    background:#dbe7f3;
}

.step
{
    background:white;
    padding:45px 30px;
    border-radius:20px;
    border:1px solid var(--border);
    position:relative;
    z-index:2;
    transition:.35s;
}

.step:hover
{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.step span
{
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--primary);
    color:white;
    border-radius:50%;
    font-weight:700;
    margin-bottom:25px;
}

.step h3
{
    margin-bottom:15px;
}

.step p
{
    font-size:16px;
}

.feature-list
{
    margin-top:35px;
}

.feature-list li
{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    color:var(--text);
}

.feature-list li::before
{
    content:"✓";
    width:25px;
    height:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#edf5fc;
    color:var(--primary);
    border-radius:50%;
    font-weight:bold;
}

.services::after,
.process::after
{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(2,53,102,.03);
    filter:blur(100px);
    border-radius:50%;
}

.services,

.process
{
    position:relative;
    overflow:hidden;
}

/*==========================================================
DIGITAL SUPPORT SECTION
==========================================================*/


.digital-support{

    background:#fafcff;

}



.support-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}



.support-content h2{

    margin:20px 0;

}



.support-content p{

    margin-bottom:35px;

    max-width:560px;

}



/*========================
SUPPORT CARDS
=========================*/


.support-cards{

    display:flex;

    flex-direction:column;

    gap:20px;

}



.support-card{

    display:flex;

    align-items:center;

    gap:25px;

    background:white;

    padding:28px;

    border-radius:22px;

    border:1px solid var(--border);

    transition:.35s ease;

}



.support-card:hover{

    transform:translateX(10px);

    box-shadow:var(--shadow);

    border-color:transparent;

}



.support-icon{

    width:60px;

    height:60px;

    min-width:60px;

    background:#edf5fc;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:24px;

}



.support-card h3
{
    font-size:20px;
    margin-bottom:8px;
}

.support-card p
{
    font-size:15px;
    margin:0;
}

@media(max-width:900px)
{
    .support-grid
    {
        grid-template-columns:1fr;
        gap:50px;
    }

    .support-card:hover
    {
        transform:none;
    }

}

@media(max-width:1000px)
{
    h1
    {
        font-size:52px;
    }

    h2
    {
        font-size:36px;
    }

    .hero-grid,
    .about-grid
    {
        grid-template-columns:1fr;
        gap:60px;
    }

    .hero-image
    {
        order:-1;
    }

    .services-grid
    {
        grid-template-columns:repeat(2,1fr);
    }

    .timeline
    {
        grid-template-columns:repeat(2,1fr);
    }

    .timeline::before{

        display:none;
    }


}

.tech
{
    background:white;
}

.tech-grid
{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    max-width:900px;
    margin:auto;
}

.tech-grid span
{
    padding:16px 28px;
    border:1px solid var(--border);
    border-radius:50px;
    color:var(--text);
    font-weight:600;
    background:white;
    transition:.35s;
}

.tech-grid span:hover
{
    background:var(--primary);
    color:white;
    border-color:var(--primary);
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(2,53,102,.15);
}

.cta
{
    padding:80px 0;
}

.cta-box
{
    background:
    linear-gradient(
        135deg,
        #023566,
        #034987
    );
    padding:90px 80px;
    border-radius:35px;
    text-align:center;
    color:white;
    position:relative;
    overflow:hidden;
}

.cta-box::before
{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-250px;
    right:-200px;
}

.cta-box::after
{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
}



.cta-box h2{

    color:white;

    position:relative;

    z-index:2;

    margin-bottom:25px;

}



.cta-box p{

    color:rgba(255,255,255,.8);

    max-width:650px;

    margin:0 auto 40px;

    position:relative;

    z-index:2;

}



.btn-white{

    display:inline-block;

    background:white;

    color:var(--primary);

    padding:18px 35px;

    border-radius:14px;

    font-weight:700;

    position:relative;

    z-index:2;

    transition:.35s;

}



.btn-white:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}



/*========================
FOOTER
=========================*/


footer{

    border-top:1px solid var(--border);

    padding:70px 0;

    background:#fafcff;

}



.footer{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}



.footer h3{

    font-size:30px;

    margin-bottom:15px;

}



.footer h4{

    margin-bottom:20px;

}



.footer p{

    max-width:350px;

}



.footer a{

    display:block;

    color:var(--gray);

    margin-bottom:12px;

    transition:.3s;

}



.footer a:hover{

    color:var(--primary);

    transform:translateX(5px);

}



/*========================
MOBILE NAV
=========================*/


@media(max-width:850px){


    .header{

        position:absolute;

    }


    .nav{

        height:75px;

    }


    .menu{

        display:none;

    }


    .btn-nav{

        padding:12px 18px;

        font-size:14px;

    }



    section{

        padding:80px 0;

    }



    h1{

        font-size:40px;

    }



    h2{

        font-size:30px;

    }



    p{

        font-size:16px;

    }



    .hero{

        padding-top:130px;

    }



    .hero-buttons{

        flex-direction:column;

    }



    .btn-primary,

    .btn-secondary{

        text-align:center;

    }



    .hero-stats{

        flex-direction:column;

        gap:25px;

    }



    .dashboard{

        transform:none;

    }



    .dashboard:hover{

        transform:none;

    }



    .dashboard-body{

        height:350px;

    }



    .sidebar{

        width:55px;

    }



    .services-grid{

        grid-template-columns:1fr;

    }



    .numbers{

        grid-template-columns:1fr;

    }



    .timeline{

        grid-template-columns:1fr;

    }



    .cta-box{

        padding:55px 25px;

        border-radius:25px;

    }



    .cta-box h2{

        font-size:32px;

    }



    .footer{

        grid-template-columns:1fr;

        gap:35px;

    }


}



/*========================
SMALL MOBILE
=========================*/


@media(max-width:480px){


    .container{

        width:92%;

    }



    .logo{

        font-size:25px;

    }



    .btn-nav{

        display:none;

    }



    .dashboard-body{

        display:block;

    }



    .sidebar{

        display:none;

    }



    .content{

        padding:20px;

    }



    .row{

        grid-template-columns:1fr;

    }



    .tech-grid span{

        padding:12px 18px;

        font-size:14px;

    }


}



/*========================
REVEAL ANIMATION
=========================*/


.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}



.fade-up.show{

    opacity:1;

    transform:none;

}



/*========================
SELECTION COLOR
=========================*/


::selection{

    background:var(--primary);

    color:white;

}


.mobile-button{

    display:none;

    background:none;

    border:0;

    cursor:pointer;

}


.mobile-button span{

    display:block;

    width:28px;

    height:3px;

    background:#023566;

    margin:6px;

    border-radius:10px;

}



@media(max-width:850px){


.mobile-button{

    display:block;

}


.menu.active{

    display:flex;

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:white;

    padding:30px;

    flex-direction:column;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}


}