/* ==========================
   DILIGENT ENTERPRISES
   STYLE SHEET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
}

/* HEADER */

header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:#0B2545;

    box-shadow:0 3px 15px rgba(0,0,0,.15);
}

.logo h2{
    color:white;
    font-size:30px;
    font-weight:700;
}

.logo p{
    color:#FFC857;
    font-size:14px;
}

nav a{

    text-decoration:none;
    color:white;
    margin-left:30px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{

    color:#FFC857;

}

/* HERO */

.hero{

    height:92vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(135deg,#0B2545,#1D4ED8);

    color:white;

    padding:30px;

}

.hero h1{

    font-size:70px;

    margin-bottom:20px;

}

.hero p{

    width:60%;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.btn{

    background:#FFC857;

    color:#0B2545;

    padding:18px 45px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:white;

    transform:translateY(-4px);

}

/* GENERAL */

section{

    padding:80px 10%;

}

section h2{

    text-align:center;

    margin-bottom:50px;

    font-size:40px;

    color:#0B2545;

}

/* SERVICES */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.card{

background:white;

padding:40px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.card i{

font-size:50px;

color:#1D4ED8;

margin-bottom:20px;

}

.card h3{

margin-bottom:20px;

color:#0B2545;

}

.card p{

line-height:2;

}

/* WHY CHOOSE US */

.why{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.why div{

background:white;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.3s;

}

.why div:hover{

background:#1D4ED8;

color:white;

}

.why div:hover h3{

color:white;

}

.why i{

font-size:45px;

margin-bottom:20px;

color:#FFC857;

}

.why h3{

margin-bottom:15px;

color:#0B2545;

}

/* STATS */

.stats{

display:grid;

grid-template-columns:repeat(3,1fr);

background:#0B2545;

color:white;

text-align:center;

}

.stats div{

padding:60px 20px;

}

.stats h2{

color:#FFC857;

font-size:55px;

margin-bottom:10px;

}

/* CONTACT */

#contact{

background:#EEF4FF;

text-align:center;

}

#contact p{

font-size:20px;

margin:15px;

}

#contact i{

color:#1D4ED8;

margin-right:10px;

}

/* FOOTER */

footer{

background:#081B33;

color:white;

text-align:center;

padding:40px;

}

footer h3{

margin-bottom:15px;

color:#FFC857;

}

footer p{

margin:10px;

}

/* FLOATING WHATSAPP */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:38px;

color:white;

box-shadow:0 8px 20px rgba(0,0,0,.3);

transition:.3s;

z-index:9999;

animation:bounce 2s infinite;

}

.whatsapp:hover{

transform:scale(1.15);

background:#1ebe5d;

}

@keyframes bounce{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

/* RESPONSIVE */

@media(max-width:900px){

header{

flex-direction:column;

}

nav{

margin-top:20px;

}

nav a{

display:block;

margin:10px 0;

}

.hero h1{

font-size:45px;

}

.hero p{

width:100%;

font-size:17px;

}

.stats{

grid-template-columns:1fr;

}

}