/* ===========================================
   LESUDO CONSULTING PVT. LTD.
   Bootstrap 5 Custom Theme
=========================================== */

:root{
    --primary:#2563eb;
    --secondary:#0f172a;
    --light:#f8fafc;
    --text:#64748b;
    --success:#10b981;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--secondary);
    overflow-x:hidden;

}

/* ===========================
NAVBAR
=========================== */

.navbar{

    padding:18px 0;
    transition:.4s;

}

.navbar-brand{

    font-size:28px;
    font-weight:700;

}

.nav-link{

    font-weight:500;
    margin-left:20px;
    color:#1e293b !important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:8px;
    padding:12px 28px;

}

.btn-primary:hover{

    background:#1d4ed8;

}

.btn-outline-primary{

    border-radius:8px;
    padding:12px 28px;

}

/* ===========================
HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(135deg,#eff6ff,#ffffff);

    padding-top:120px;

}

.hero h1{

    line-height:1.2;

}

.hero p{

    color:var(--text);

}

.hero-image{

    max-width:420px;

    animation:float 5s ease-in-out infinite;

}

/* Floating animation */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

/* ===========================
ABOUT
=========================== */

#about{

    padding:100px 0;

}

.counter-card{

    background:white;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.3s;

}

.counter-card:hover{

    transform:translateY(-8px);

}

.counter-card h2{

    color:var(--primary);

    font-size:40px;

    font-weight:700;

}

.counter-card p{

    margin-top:10px;

    color:var(--text);

}

/* ===========================
CTA
=========================== */

.cta{

    padding:100px 0;

    background:

    linear-gradient(135deg,#2563eb,#0f172a);

    color:white;

}

.cta h2{

    font-size:48px;

    font-weight:700;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-top:20px;

    margin-bottom:35px;

    color:#dbeafe;

}

.cta .btn{

    color:#2563eb;

    font-weight:600;

}

/* ===========================
SECTION
=========================== */

section{

    overflow:hidden;

}

h2{

    font-weight:700;

}

.text-primary{

    color:#2563eb!important;

}

/* ===========================
BADGE
=========================== */

.badge{

    border-radius:30px;

}

/* ===========================
BUTTONS
=========================== */

.btn{

    transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

.hero{

text-align:center;

padding-top:140px;

}

.hero-image{

margin-top:60px;

max-width:280px;

}

.display-3{

font-size:42px;

}

.navbar-brand{

font-size:24px;

}

}

@media(max-width:768px){

.display-3{

font-size:34px;

}

.counter-card{

margin-bottom:20px;

}

.cta h2{

font-size:34px;

}

.hero{

padding-top:130px;

}

}

/* ===========================
SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#2563eb;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#f1f5f9;

}
/* Technology Cards */

.tech-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(37,99,235,.18);
}

.tech-card i{
    font-size:48px;
    color:#2563eb;
    margin-bottom:15px;
    display:block;
}

.tech-card h5{
    margin:0;
    font-weight:600;
}