/*==================================================
NEXT STEP FINANCE
STYLE.CSS
PART 1
==================================================*/

:root{

    --primary:#0B63F6;
    --primary-dark:#084FC7;

    --secondary:#F5F9FF;

    --white:#FFFFFF;

    --text:#182433;

    --text-light:#6F7B91;

    --border:#E8EEF8;

    --success:#19C37D;

    --radius:22px;

    --shadow:0 15px 45px rgba(0,0,0,.08);

    --shadow-hover:0 25px 60px rgba(0,0,0,.14);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

}

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

}

.container{

    width:min(1280px,92%);

    margin:auto;

}

/*==============================
LANGUAGE
==============================*/

.en{

    display:none;

}

body.english .tr{

    display:none;

}

body.english .en{

    display:inline;

}

/*==============================
HEADER
==============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);

}

.header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    color:var(--text);

}

.logo-icon{

    width:54px;

    height:54px;

    border-radius:16px;

    background:linear-gradient(135deg,var(--primary),#57A2FF);

    display:flex;

    justify-content:center;

    align-items:center;

}

.logo-icon i{

    color:#fff;

    font-size:22px;

}

.logo-text h2{

    font-size:24px;

    font-weight:800;

}

.logo-text span{

    color:var(--text-light);

    font-size:13px;

}

.menu{

    display:flex;

    gap:40px;

    list-style:none;

}

.menu a{

    color:var(--text);

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:var(--primary);

}

.header-right{

    display:flex;

    align-items:center;

    gap:15px;

}

#languageButton{

    width:56px;

    height:44px;

    border-radius:12px;

    border:1px solid var(--border);

    background:#fff;

    font-weight:700;

    color:var(--primary);

    transition:.3s;

}

#languageButton:hover{

    background:var(--primary);

    color:#fff;

}

.header-button{

    padding:15px 24px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.header-button:hover{

    background:var(--primary-dark);

}

/*==============================
HERO
==============================*/

.hero{

    padding-top:170px;

    padding-bottom:120px;

    background:

    radial-gradient(circle at top right,#DDEBFF 0%,transparent 35%),

    linear-gradient(#F8FBFF,#ffffff);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#EAF3FF;

    color:var(--primary);

    padding:12px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.08;

    margin-bottom:28px;

}

.hero p{

    font-size:18px;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.btn-primary{

    display:flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:#fff;

    padding:18px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:18px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}
/*==========================================
HERO RIGHT
==========================================*/

.hero-right{

    position:relative;

}

.dashboard{

    background:#ffffff;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    padding:35px;

    min-height:560px;
height:560px;
overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid var(--border);

}

.dashboard-image{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

.dashboard-placeholder{

    width:100%;

    height:100%;

    border-radius:18px;

    background:linear-gradient(135deg,#F7FAFF,#EDF4FF);

    border:2px dashed #C7D9F8;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.dashboard-placeholder i{

    font-size:70px;

    color:var(--primary);

    margin-bottom:25px;

}

.dashboard-placeholder h3{

    font-size:32px;

    margin-bottom:10px;

}

.dashboard-placeholder p{

    color:var(--text-light);

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:22px;

    width:210px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    border:1px solid var(--border);

}

.floating-card h4{

    color:var(--text-light);

    font-size:14px;

    margin-bottom:8px;

}

.floating-card strong{

    display:block;

    font-size:30px;

    margin-bottom:8px;

    font-weight:800;

}

.floating-card span{

    color:var(--success);

    font-weight:700;

}

.card-one{

    top:40px;

    right:-50px;

}

.card-two{

    top:240px;

    right:-70px;

}

.card-three{

    bottom:30px;

    right:-40px;

}

/*==========================================
FEATURES
==========================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text-light);

    font-size:15px;

}

.hero-features i{

    color:var(--primary);

    font-size:18px;

}

/*==========================================
GENERAL SECTION
==========================================*/

section{

    padding:120px 0;

}

.section-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    background:#EAF3FF;

    color:var(--primary);

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:22px;

}

.section-header h2{

    font-size:48px;

    line-height:1.25;

    margin-bottom:22px;

}

.section-header p{

    color:var(--text-light);

    line-height:1.9;

    font-size:17px;

}

/*==========================================
SERVICES
==========================================*/

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.service-icon{

    width:78px;

    height:78px;

    border-radius:20px;

    background:#EDF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

}

.service-icon i{

    font-size:34px;

    color:var(--primary);

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.service-card p{

    color:var(--text-light);

    line-height:1.9;

}
/*==========================================
WHO WE SERVE
==========================================*/

.clients{

    background:#F8FBFF;

}

.clients-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.client-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:45px 38px;

    text-align:center;

    transition:.35s;

}

.client-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.client-icon{

    width:82px;

    height:82px;

    margin:0 auto 30px;

    border-radius:20px;

    background:#EDF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

}

.client-icon i{

    color:var(--primary);

    font-size:34px;

}

.client-card h3{

    font-size:26px;

    margin-bottom:18px;

}

.client-card p{

    color:var(--text-light);

    line-height:1.9;

}

/*==========================================
STATISTICS
==========================================*/

.statistics{

    background:#0B63F6;

    color:#fff;

}

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:30px 20px;

}

.stat-box h2{

    font-size:58px;

    font-weight:800;

    margin-bottom:15px;

}

.stat-box p{

    font-size:17px;

    line-height:1.8;

    opacity:.92;

}

/*==========================================
CONTACT
==========================================*/

.contact{

    background:#ffffff;

}

.contact-grid{
    display:grid;
    grid-template-columns:420px minmax(0,1fr);
    gap:60px;
    align-items:stretch;
}

.contact-left{

    background:linear-gradient(135deg,#0B63F6,#0850D5);

    color:#fff;

    padding:55px;

    border-radius:28px;

}

.contact-left .section-tag{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.contact-left h2{

    font-size:44px;

    line-height:1.2;

    margin:25px 0;

}

.contact-left p{

    line-height:1.9;

    margin-bottom:35px;

    opacity:.95;

}

.contact-information{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-information div{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.contact-information i{

    width:50px;

    height:50px;

    border-radius:14px;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

.contact-information strong{

    display:block;

    margin-bottom:5px;

}

.contact-right{
    display:flex;
    align-items:stretch;
    justify-content:center;
    width:100%;
}

.contact-image{
    width:100%;
    height:auto;
    border-radius:28px;
    display:block;
    object-fit:cover;
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.input-group{

    display:flex;

    flex-direction:column;

}

.input-group label{

    margin-bottom:10px;

    font-weight:600;

}

.input-group input,
.input-group textarea{

    border:1px solid var(--border);

    border-radius:14px;

    padding:18px;

    font-family:inherit;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:var(--primary);

}

.input-group textarea{

    resize:none;

}
/*==========================================
FOOTER
==========================================*/

.footer{

    background:#071A3D;

    color:#fff;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:25px;

}

.footer-logo .logo-icon{

    width:60px;

    height:60px;

}

.footer-logo h3{

    font-size:28px;

    font-weight:800;

}

.footer-logo span{

    font-size:13px;

    color:rgba(255,255,255,.7);

}

.footer p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

.footer h4{

    margin-bottom:24px;

    font-size:20px;

}

.footer a{

    display:block;

    margin-bottom:14px;

    color:rgba(255,255,255,.72);

    transition:.3s;

}

.footer a:hover{

    color:#fff;

}

.footer-social{

    display:flex;

    gap:14px;

    margin-top:25px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

}

.footer-social i{

    color:#fff;

    font-size:18px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 0;

    text-align:center;

    color:rgba(255,255,255,.65);

    font-size:15px;

}

/*==========================================
ANIMATIONS
==========================================*/

.service-card,
.client-card,
.stat-box,
.contact-left,
.contact-right,
.floating-card{

    transition:all .35s ease;

}

.service-card:hover,
.client-card:hover{

    transform:translateY(-10px);

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-secondary:hover{

    box-shadow:0 15px 35px rgba(11,99,246,.18);

}

.header-button:hover{

    box-shadow:0 12px 28px rgba(11,99,246,.25);

}

/*==========================================
SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF3FD;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==========================================
SELECTION
==========================================*/

::selection{

    background:var(--primary);

    color:#fff;

}
/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px){

    .hero-grid{

        grid-template-columns:1fr;

        gap:70px;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .clients-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .statistics-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .floating-card{

        right:0;

    }

}

@media(max-width:992px){

    .header .container{

        height:auto;

        padding:18px 0;

        flex-wrap:wrap;

        gap:20px;

    }

    .menu{

        width:100%;

        justify-content:center;

        flex-wrap:wrap;

        gap:25px;

    }

    .hero{

        padding-top:190px;

    }

    .hero h1{

        font-size:52px;

    }

    .section-header h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .hero{

        padding-top:180px;

    }

    .hero-grid{

        gap:50px;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-features{

        flex-direction:column;

        gap:18px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .clients-grid{

        grid-template-columns:1fr;

    }

    .statistics-grid{

        grid-template-columns:1fr;

        gap:15px;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .dashboard{

        min-height:420px;

    }

    .floating-card{

        position:relative;

        top:auto;

        bottom:auto;

        right:auto;

        width:100%;

        margin-top:20px;

    }

    .contact-left,
    .contact-right{

        padding:20px;

    }

}

@media(max-width:576px){

    .container{

        width:94%;

    }

    .logo{

        width:100%;

        justify-content:center;

    }

    .header-right{

        width:100%;

        justify-content:center;

    }

    .menu{

        gap:18px;

    }

    .menu a{

        font-size:14px;

    }

    .hero h1{

        font-size:34px;

    }

    .section-header h2{

        font-size:32px;

    }

    .section-header p{

        font-size:15px;

    }

    .contact-left h2{

        font-size:34px;

    }

    .stat-box h2{

        font-size:42px;

    }

}

/*==========================================
UTILITY
==========================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.hidden{

    display:none;

}

.visible{

    display:block;

}
.contact-image{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}