/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;

color:#1F2937;

background:#fff;

}

/* CONTAINER */

.container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;
}
/* HEADER */

/* ================= HEADER ================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    background:#fff;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    z-index:9999;

}

body.admin-bar header{

    top:32px;

}

.header-content{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:60px;

}

nav{

    display:flex;

    align-items:center;

}

nav ul{

    display:flex;

    align-items:center;

    gap:40px;

    margin:0;

    padding:0;

    list-style:none;

}

nav a{

    color:#4B5563;

    font-weight:600;

    font-size:16px;

    text-decoration:none;

    transition:.3s;

}
}nav a:hover{

    color:#0A4FA3;

}
nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#F4B400;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

.btn{

    transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

}
/*
.hero{
...
}
*/
.header-content{

display:flex;

justify-content:space-between;

align-items:center;

height:100px;
overflow:hidden;
position:relative;

}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

nav ul{

display:flex;

list-style:none;

gap:40px;

}

nav a{

text-decoration:none;

font-weight:600;

color:#1F2937;

transition:.3s;

}

nav a:hover{

color:#0A4FA3;

}

.btn{

background:#F4B400;

padding:14px 28px;

border-radius:8px;

font-weight:bold;

text-decoration:none;

color:black;

transition:.3s;

}

.btn:hover{

background:#dca000;

}

/* HERO */

.hero{

min-height:760px;

background:linear-gradient(rgba(6,38,89,.80),rgba(6,38,89,.80)),
url("../images/hero.jpg");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

color:white;

}

.hero::before{

    content:"";

    position:absolute;

    right:-180px;

    top:-120px;

    width:650px;

    height:650px;

    background:radial-gradient(circle,
    rgba(255,255,255,.12),
    transparent 70%);

}

.hero h1{

font-size:78px;

margin-bottom:30px;

max-width:800px;

}

.hero p{

font-size:22px;

max-width:700px;

margin-bottom:40px;

line-height:1.6;

}

/* ================= HERO ================= */

.hero{

height:100vh;

display:flex;

align-items:center;

background:
linear-gradient(rgba(9,48,97,.92),rgba(9,48,97,.92)),
radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 35%),
url("../images/hero.jpg");
}

.hero-grid{

display:grid;

grid-template-columns:1.2fr 1fr;

align-items:center;

gap:80px;

}

.hero-tag{

display:inline-block;

background:#ffffff20;

padding:8px 18px;

border-radius:30px;

color:white;

margin-bottom:30px;

font-size:14px;

letter-spacing:2px;

}

.hero h1{

font-size:72px;

line-height:1.1;

color:white;

margin-bottom:35px;

}

.hero p{

font-size:22px;

line-height:1.8;

color:#dbe7ff;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn-outline{

padding:14px 30px;

border:2px solid white;

border-radius:8px;

text-decoration:none;

color:white;

font-weight:bold;

transition:.3s;

}

.btn-outline:hover{

background:white;

color:#0A4FA3;

}


.hero-right{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    position:relative;
    top:-40px;
}
.hero-right img{
    width:380px;
    display:block;
    margin:auto;
    filter:
drop-shadow(0 45px 55px rgba(0,0,0,.45))
drop-shadow(0 0 25px rgba(255,255,255,.15));
    transition:.3s;
}

.hero-right img:hover{
    transform:translateY(-8px);
}
.hero-card{

    width:320px;

    padding:28px;

    border-radius:18px;

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.20);

    color:white;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    transition:.35s;

}

.hero-card:hover{

transform:translateY(-8px);

box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.hero-card h3{

    color:white;

}

.hero-card p{

    color:rgba(255,255,255,.80);

}

/* ==========================
   STATISTICHE
========================== */

.stats{

    margin-top:-0px;

    position:relative;

    z-index:50;

}
.stat-number{

    font-size:58px;

    font-weight:800;

    color:#0A4FA3;

}

.stats-box{

    background:white;

    border-radius:20px;

    padding:15px;

    display:grid;

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

    gap:10px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}
.stat-icon{

    width:70px;
    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#EDF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0A4FA3;

    font-size:30px;

}
.stat{

    text-align:center;

}

.stat h2{

    font-size:54px;

    color:#0A4FA3;

    margin-bottom:10px;

    font-weight:700;

}

.stat p{

    color:#666;

    font-size:17px;

}

/* ==========================
   SERVIZI
========================== */

/*==========================
SERVIZI
==========================*/

.services{

    padding:100px 0;
    background:#f8fafc;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#0A4FA3;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;

}

.section-title h2{

    font-size:46px;
    margin:15px 0;
    color:#12315E;

}

.section-title p{

    color:#6b7280;
    font-size:18px;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:35px 28px;

    border:1px solid #e8edf5;

    text-align:center;

    transition:.35s;

    box-shadow:0 6px 18px rgba(0,0,0,.04);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    border-color:#0A4FA3;

}

.service-card i{

    font-size:48px;

    color:#0A4FA3;

    margin-bottom:20px;

}

.service-card h3{

    font-size:24px;

    color:#12315E;

    margin-bottom:12px;

}

.service-card p{

    color:#6b7280;

    line-height:1.7;

    font-size:15px;

}

.service-card::after{

    content:"";

    display:block;

    width:55px;

    height:4px;

    margin:22px auto 0;

    background:#F4B400;

    border-radius:20px;

}
/* ==========================
   WHY US
========================== */

.why-us{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.why-content span{

    color:#0A4FA3;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.why-content h2{

    font-size:46px;

    margin:20px 0;

    color:#1F2937;

}

.why-content p{

    font-size:18px;

    line-height:1.8;

    color:#64748b;

}

.why-list{

    margin-top:40px;

    display:grid;

    gap:25px;

}

.why-item{

    padding:25px;

    background:#f8fafc;

    border-radius:15px;

    transition:.3s;

}

.why-item:hover{

    transform:translateX(8px);

    background:#eef5ff;

}

.why-item h3{

    color:#0A4FA3;

    margin-bottom:10px;

}

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:360px;

    position:relative;

    z-index:5;

}

.floating{

    position:absolute;

    padding:14px 22px;

    border-radius:14px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    color:white;

    border:1px solid rgba(255,255,255,.18);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    font-weight:600;

    transition:.35s;

}

.floating:hover{

    transform:translateY(-8px);

}

.badge-top{

    top:-20px;

    right:40px;

}

.badge-left{

    left:-30px;

    bottom:160px;

}

.badge-right{

    right:-20px;

    bottom:60px;

}
/* ===== FORZA MENU BIANCO ===== */

nav a{

    color:#4B5563;

    font-weight:600;

    font-size:16px;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#0A4FA3;

}

.current-menu-item>a,
.current_page_item>a{

    color:#0A4FA3;

    font-weight:700;

}