*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f7fa;
    color:#333;
    line-height:1.6;
}

/* ======================================
   HEADER
====================================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:#003366;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 8%;

    box-shadow:0 5px 20px rgba(0,0,0,.20);

}

header img{

    height:75px;

    transition:.3s;

}

header img:hover{

    transform:scale(1.05);

}

nav{

    display:flex;

    align-items:center;

    gap:25px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:#ff9800;

    transition:.3s;

}

nav a:hover{

    color:#ff9800;

}

nav a:hover::after{

    width:100%;

}

/* Hero */

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(rgba(0,51,102,.8),rgba(0,51,102,.8)), url("../images/logo.jfif");
    background-size:cover;
    background-position:center;
    color:white;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:#ff9800;
    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.btn:hover{

    background:#e68900;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.35);

}

/* About */

.about{
    padding:80px 10%;
    text-align:center;
}

.about h2{
    color:#003366;
    margin-bottom:20px;
    font-size:36px;
}

/* Services */

.services{
    padding:80px 10%;
    background:white;
}

.services h2{
    text-align:center;
    color:#003366;
    margin-bottom:40px;
    font-size:36px;
}

.service-box{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:40px;

}

.card{

    background:#ffffff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    border-top:5px solid #003366;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:all .35s ease;

    cursor:pointer;

}

.card h3{

    color:#003366;

    margin-bottom:15px;

    font-size:24px;

}

.card p{

    color:#555;

    line-height:1.7;

}

.card:hover{

    transform:translateY(-12px);

    border-top:5px solid #ff9800;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.card h3{
    color:#003366;
    margin-bottom:15px;
}

.card p{
    color:#555;
}

/* ===== GALLERY ===== */

.gallery{
    padding:80px 10%;
    background:#f4f7fa;
    text-align:center;
}

.gallery h2{
    color:#003366;
    font-size:36px;
    margin-bottom:15px;
}

.gallery p{
    margin-bottom:30px;
    color:#555;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===== CONTACT ===== */

.contact{
    padding:80px 10%;
    text-align:center;
    background:#003366;
    color:white;
}

.contact h2{
    font-size:36px;
    margin-bottom:20px;
}

.contact p{
    margin:10px 0;
}

.contact-info{
    margin:30px 0;
}

.contact-buttons{
    margin-top:30px;
}

.contact-buttons .btn{
    margin:10px;
    display:inline-block;
}

footer{
    background:#001f3f;
    color:white;
    text-align:center;
    padding:20px;
}

/* ===== WHY CHOOSE US ===== */

.why-us{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.why-us h2{
    font-size:36px;
    color:#003366;
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#f4f7fa;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    color:#003366;
    margin-bottom:15px;
}

/* ===== FLOATING WHATSAPP ===== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
    z-index:999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}

/* ===== QUOTE FORM ===== */

.quote{
    padding:80px 10%;
    background:#f4f7fa;
    text-align:center;
}

.quote h2{
    color:#003366;
    font-size:36px;
    margin-bottom:15px;
}

.quote p{
    margin-bottom:30px;
}

.quote form{
    max-width:700px;
    margin:auto;
}

.quote input,
.quote select,
.quote textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.quote button{
    border:none;
    cursor:pointer;
    width:100%;
    font-size:18px;
}
/* WHY CHOOSE US */

.why{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.why h2{
    color:#003366;
    font-size:36px;
    margin-bottom:40px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-box{
    background:#f7f7f7;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box h3{
    color:#003366;
    margin-bottom:15px;
}

/* ===== STATS ===== */

.stats{
    background:#003366;
    color:white;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    text-align:center;
    padding:60px 10%;
    gap:20px;
}

.stat-box h2{
    font-size:42px;
    color:#00c8ff;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}


/* ===== TESTIMONIALS ===== */

.testimonials{
    padding:80px 10%;
    background:#f4f7fa;
    text-align:center;
}

.testimonials h2{
    color:#003366;
    font-size:36px;
    margin-bottom:40px;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.testimonial h4{
    margin-top:20px;
    color:#003366;
}

/* ===== GALLERY ===== */

.gallery{
    padding:80px 10%;
    text-align:center;
    background:#ffffff;
}

.gallery h2{
    font-size:36px;
    color:#003366;
    margin-bottom:20px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:0.4s;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin: 3% auto;
    border-radius: 10px;
}

.lightbox:target {
    display: block;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* =========================================
   GALLERY HOME PAGE
========================================= */

.page-banner{
    background:#0d3b66;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
    color:#ddd;
}

.gallery-menu{
    padding:50px 20px;
    background:#f5f5f5;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.gallery-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-info{
    padding:25px;
    text-align:center;
}

.gallery-info h2{
    color:#0d3b66;
    margin-bottom:10px;
    font-size:24px;
}

.gallery-info p{
    color:#666;
    margin-bottom:20px;
    font-size:17px;
}

.gallery-btn{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.gallery-btn:hover{
    background:#e68900;
}

@media(max-width:768px){

.page-banner h1{
    font-size:32px;
}

.gallery-card img{
    height:220px;
}

}

/* =====================================
   FLOATING WHATSAPP BUTTON
===================================== */

.whatsapp-float{

    position:fixed;

    width:65px;

    height:65px;

    bottom:25px;

    right:25px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.3);

    z-index:9999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

    background:#20ba5a;

}

.card h3 i{

    color:#ff9800;

    margin-right:10px;

    font-size:28px;

}

/* ==========================
   GOOGLE MAP
========================== */

.map-container{

    margin-top:50px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.map-container iframe{

    display:block;

    width:100%;

}