html{

    scroll-behavior:smooth;

}

/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins', sans-serif;
    color:#333;
    background:#ffffff;

}

/* ===== CONTAINER ===== */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

/* ===== HEADER ===== */

.header{

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

/* ===== LOGO ===== */

.logo img{

    height:70px;

    display:block;

}

/* ===== MENU ===== */

.navbar{

    display:flex;

    gap:35px;

}

.navbar a{

    text-decoration:none;

    color:#333;

    font-weight:600;

}

.navbar a:hover{

    color:#0F4C81;

}

/* ===== BOTON ===== */

.call-btn{

    background:#FFC107;

    color:#000;

    padding:12px 25px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.call-btn:hover{

    transform:translateY(-2px);

}
/* ===== HERO ===== */

.hero{

    padding:90px 0;

    background:linear-gradient(135deg,#f8f9fa 0%, #ffffff 100%);

}

.hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:52px;

    color:#0F4C81;

    margin-bottom:25px;

    line-height:1.2;

}

.hero-text p{

    font-size:19px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.secondary-btn{

    padding:12px 25px;

    border:2px solid #0F4C81;

    border-radius:8px;

    text-decoration:none;

    color:#0F4C81;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#0F4C81;

    color:white;

}

.hero-image{

    flex:1;

}

.hero-image img{

    width:100%;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* ===== TRUST BAR ===== */

.trust-bar{

    background:#0F4C81;

    color:white;

    padding:25px 0;

}

.trust-items{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.trust-item{

    flex:1;

    text-align:center;

    font-size:18px;

    font-weight:600;

}
/* ===== SERVICES ===== */

.services{

    padding:90px 0;

    background:#f8f9fa;

}

.services h2{

    text-align:center;

    font-size:40px;

    color:#0F4C81;

}

.section-description{

    text-align:center;

    margin:20px auto 60px;

    max-width:650px;

    color:#666;

    font-size:18px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-icon{

    font-size:48px;

    color:#0F4C81;

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

    color:#0F4C81;

}

.service-card p{

    color:#666;

    line-height:1.7;

}
/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 992px){

    .hero-content{

        flex-direction:column;

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .trust-items{

        justify-content:center;

    }
    .why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

    .header .container{

        flex-direction:column;

        height:auto;

        padding:20px 0;

        gap:20px;

    }

    .navbar{

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        padding:60px 0;

    }

    .hero-text h1{

        font-size:38px;

    }

    .hero-text p{

        font-size:17px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .trust-items{

        flex-direction:column;

        gap:15px;

    }
    .why-grid{

    grid-template-columns:1fr;

}

}

@media (max-width:480px){

    .hero-text h1{

        font-size:30px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .call-btn,
    .secondary-btn{

        width:100%;

        text-align:center;

    }
    .gallery-grid{

    grid-template-columns:1fr;

}

}
/* =========================================================
   WHY US
========================================================= */

.why-us{

    padding:90px 0;

    background:white;

}

.why-us h2{

    text-align:center;

    color:#0F4C81;

    font-size:40px;

}

.why-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    text-align:center;

    padding:35px 25px;

    border-radius:15px;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.why-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0F4C81;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    color:#0F4C81;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/* =========================================================
   GALLERY
========================================================= */

.gallery{

    padding:90px 0;

    background:#f8f9fa;

}

.gallery-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.gallery-grid img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:0 15px 30px rgba(0,0,0,.12);

    transition:.35s;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

/* =========================================================
   CONTACT
========================================================= */

.contact{

    padding:90px 0;

    background:white;

}

.contact h2{

    text-align:center;

    font-size:40px;

    color:#0F4C81;

}

.contact-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    text-align:center;

    padding:35px;

    border-radius:15px;

    background:#f8f9fa;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:40px;

    color:#0F4C81;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card a{

    color:#333;

    text-decoration:none;

    font-weight:600;

}

.social-links{

    margin-top:60px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.social-links a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#0F4C81;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:22px;

    transition:.3s;

}

.social-links a:hover{

    background:#FFC107;

    color:#000;

}
/* =========================================================
   FOOTER
========================================================= */

.footer{

    background:#0F4C81;

    color:white;

    text-align:center;

    padding:40px 20px;

}

.footer img{

    height:60px;

    margin-bottom:20px;

}

.footer p{

    font-size:15px;

    opacity:.9;

}
section{

    scroll-margin-top:100px;

}
.hero-highlight{

    color:#0F4C81;

    font-weight:600;

    margin-bottom:25px;

}

.hero-highlight i{

    color:#28a745;

    margin-right:8px;

}