*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7fbff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
}

.logo h2{
    color:#0b5ed7;
    font-size:28px;
}

.logo span{
    font-size:14px;
    color:#666;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#0b5ed7;
}

.call{
    background:#0b5ed7;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

/* Hero */

.hero{
    padding:80px 0;
    background:linear-gradient(135deg,#eef8ff,#fff);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
}

.hero h1 span{
    display:block;
    color:#0b5ed7;
}

.hero p{
    margin:25px 0;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.btn,
.btn2{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin-right:15px;
    margin-top:10px;
}

.btn{
    background:#0b5ed7;
    color:#fff;
}

.btn2{
    border:2px solid #0b5ed7;
    color:#0b5ed7;
}

.hero img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* About */

.about{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about h4{
    color:#0b5ed7;
    margin-bottom:10px;
}

.about h2{
    font-size:42px;
    margin-bottom:20px;
}

.about p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.about ul{
    list-style:none;
    margin-bottom:30px;
}

.about li{
    margin:12px 0;
    font-size:17px;
}

/* Mobile */

@media (max-width:900px){

    header .container{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-grid,
    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .about h2{
        font-size:34px;
    }

    .btn,
    .btn2{
        display:block;
        margin:10px auto;
        width:220px;
        text-align:center;
    }
}
/* SERVICES */

.services{
    padding:100px 0;
    background:#f7fbff;
    text-align:center;
}

.services h4{
    color:#0b5ed7;
    margin-bottom:10px;
}

.services h2{
    font-size:42px;
    margin-bottom:60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#0b5ed7;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:900px){

.service-grid{
    grid-template-columns:1fr;
}

.services h2{
    font-size:34px;
}

}
/* GALLERY */

.gallery{
    padding:100px 0;
    background:#fff;
    text-align:center;
}

.gallery h4{
    color:#0b5ed7;
    margin-bottom:10px;
}

.gallery h2{
    font-size:42px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

@media(max-width:900px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery h2{
    font-size:34px;
}

}
/* REVIEWS */

.reviews{
    padding:100px 0;
    background:#f7fbff;
    text-align:center;
}

.reviews h4{
    color:#0b5ed7;
    margin-bottom:10px;
}

.reviews h2{
    font-size:42px;
    margin-bottom:60px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.review-card h3{
    margin-bottom:10px;
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:900px){

.review-grid{
    grid-template-columns:1fr;
}

.reviews h2{
    font-size:34px;
}

}
/* CONTACT */

.contact{
    padding:100px 0;
    background:#fff;
}

.contact h4{
    color:#0b5ed7;
    text-align:center;
    margin-bottom:10px;
}

.contact h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-info h3{
    margin-bottom:25px;
    font-size:30px;
}

.contact-info p{
    margin:20px 0;
    font-size:18px;
    color:#555;
}

.contact-info i{
    color:#0b5ed7;
    margin-right:12px;
}

.contact .btn,
.contact .btn2{
    margin-top:25px;
}

.contact iframe{
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

@media(max-width:900px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact h2{
    font-size:34px;
}

}
/* FOOTER */

footer{
    background:#0b5ed7;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
}

footer h3{
    margin-bottom:20px;
    font-size:24px;
}

footer p{
    line-height:1.8;
    color:#ddd;
}

footer a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
}

footer a:hover{
    color:#ffd54f;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.2);
    text-align:center;
    padding:20px;
    color:#ddd;
}

@media(max-width:900px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

}
/* ================= FOOTER ================= */

footer{
    background:#0b5ed7;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
}

footer h3{
    margin-bottom:20px;
    font-size:24px;
}

footer p{
    line-height:1.8;
    color:#ddd;
}

footer a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
    transition:.3s;
}

footer a:hover{
    color:#ffd54f;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.2);
    text-align:center;
    padding:20px;
    color:#ddd;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}
/* FLOATING WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}