/* ==========================
   GOOGLE FONT & RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F5F9FF;
    color:#1d2939;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#0A4DFF;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.logo h2{
    color:#071A52;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#071A52;
    font-weight:600;
}

nav a:hover{
    color:#0A4DFF;
}

/* ==========================
BUTTONS
========================== */

.btn{

    background:linear-gradient(135deg,#0A4DFF,#0099FF);

    color:white;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    display:inline-block;

    box-shadow:0 15px 40px rgba(10,77,255,.25);

}

.btn:hover{

transform:translateY(-4px);

}

.btn-outline{

padding:14px 28px;

border:2px solid #0A4DFF;

border-radius:50px;

text-decoration:none;

color:#0A4DFF;

font-weight:600;

margin-left:15px;

transition:.3s;

}

.btn-outline:hover{

background:#0A4DFF;

color:#fff;

}

/* ==========================
HERO
========================== */

.hero{

padding:170px 0 120px;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.badge{

background:#EAF2FF;

padding:10px 20px;

border-radius:30px;

display:inline-block;

margin-bottom:20px;

font-weight:600;

color:#0A4DFF;

}

.hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

color:#071A52;

}

.hero p{

font-size:19px;

color:#667085;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

align-items:center;

margin-bottom:50px;

}

.hero-stats{

display:flex;

gap:60px;

}

.hero-stats h3{

font-size:34px;

color:#0A4DFF;

}

.hero-image{

display:flex;

justify-content:center;

position:relative;

}

.circle{

width:420px;

height:420px;

border-radius:50%;

background:linear-gradient(135deg,#0A4DFF,#00C2FF);

filter:blur(0px);

}

.card{

position:absolute;

top:80px;

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 30px 80px rgba(0,0,0,.08);

width:320px;

}

/* ==========================
SECTIONS
========================== */

section{

padding:100px 0;

}

.section-title{

text-align:center;

font-size:42px;

margin-bottom:20px;

color:#071A52;

}

.section-text{

text-align:center;

margin-bottom:60px;

color:#667085;

}

/* ==========================
CARDS
========================== */

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.service-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.05);

transition:.35s;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 80px rgba(10,77,255,.15);

}

.service-card h3{

margin-bottom:15px;

color:#071A52;

}

/* ==========================
ABOUT
========================== */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about ul{

margin-top:25px;

padding-left:20px;

}

.about li{

margin-bottom:12px;

}

.about-box{

background:linear-gradient(135deg,#0A4DFF,#0099FF);

padding:45px;

color:white;

border-radius:25px;

box-shadow:0 30px 80px rgba(10,77,255,.25);

}

/* ==========================
CONTACT
========================== */

form{

display:grid;

gap:20px;

margin-top:40px;

}

input,textarea{

padding:18px;

border-radius:12px;

border:1px solid #d0d5dd;

font-size:16px;

}

textarea{

height:180px;

resize:none;

}

button{

background:#0A4DFF;

color:white;

padding:18px;

border:none;

border-radius:12px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#071A52;

}

.contact-info{

margin-top:50px;

line-height:2;

}

/* ==========================
FOOTER
========================== */

footer{

background:#071A52;

color:white;

padding:50px 0;

text-align:center;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.hero-grid,
.about-grid,
.cards{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

nav ul{

display:none;

}

.hero h1{

font-size:42px;

}

.circle{

width:320px;

height:320px;

}

.card{

position:relative;

top:-60px;

}

}

@media(max-width:600px){

.hero h1{

font-size:34px;

}

.section-title{

font-size:30px;

}

.btn{

padding:12px 22px;

}

.btn-outline{

display:none;

}

.hero-stats{

gap:25px;

}

}