/* ---------- RESET ---------- */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f8fb;
    color:#222;
    line-height:1.6;
}

/* ---------- NAVIGATION ---------- */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#0b3c6f;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#69c7ff;
}

.quote-btn{
    background:#29b6f6;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#039be5;
}

/* ---------- HERO ---------- */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:70% center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:62px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    margin-bottom:35px;
}

.main-btn{
    display:inline-block;
    background:#29b6f6;
    color:white;
    padding:18px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.main-btn:hover{
    background:#039be5;
    transform:translateY(-3px);
}

/* ---------- SECTIONS ---------- */

section{
    padding:90px 10%;
}

section h2{
    text-align:center;
    font-size:42px;
    color:#0b3c6f;
    margin-bottom:20px;
}

.section-text{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
    color:#555;
}

/* ---------- INTRO ---------- */

.intro{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.intro p{
    font-size:18px;
    margin-top:20px;
}
/* ---------- SERVICES ---------- */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

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

.service:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.service h3{
    color:#0b3c6f;
    margin-bottom:15px;
    font-size:24px;
}

.service p{
    color:#555;
}

/* ---------- GALLERY ---------- */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

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

.caption{
    padding:18px;
    text-align:center;
    font-weight:600;
    color:#0b3c6f;
}

/* ---------- REVIEWS ---------- */

.review-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    font-size:20px;
}

.review-card p{
    margin:20px 0;
    color:#555;
}

/* ---------- CTA ---------- */

.cta{
    background:#0b3c6f;
    color:#fff;
    text-align:center;
    border-radius:25px;
    margin:80px 10%;
    padding:70px 30px;
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    font-size:18px;
}

/* ---------- CONTACT ---------- */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#0b3c6f;
    margin-bottom:15px;
}

.contact-card a{
    color:#29b6f6;
    text-decoration:none;
    font-weight:600;
}

/* ---------- FOOTER ---------- */

footer{
    background:#082948;
    color:#fff;
    margin-top:80px;
}

.footer{
    text-align:center;
    padding:60px 20px;
}

.footer h2{
    color:#fff;
    margin-bottom:15px;
}

.footer p{
    color:#ddd;
    margin:8px 0;
}

/* ---------- MOBILE ---------- */

@media(max-width:900px){

nav{
    padding:12px 20px;
}

.logo{
    font-size:22px;
}

nav ul{
    gap:15px;
}

.quote-btn{
    padding:10px 20px;
}

}

}

@media(max-width:600px){

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

.hero p{
    font-size:18px;
}

.logo{
    font-size:22px;
}

.quote-btn{
    width:100%;
    text-align:center;
}

.main-btn{
    width:100%;
}

.gallery-item img{
    height:220px;
}

}