/* ===========================
   TOP BAR
=========================== */

.top-bar{
    background:#0a6ebd;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 40px;
    font-size:14px;
}

.top-bar a{
    color:white;
    text-decoration:none;
}

.top-bar a:hover{
    text-decoration:underline;
}

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Poppins',sans-serif;background:#f4f8fc;color:#222;}

/* NAVBAR */
/* ===========================
   NAVBAR
=========================== */

.navbar{

    position:sticky;
    top:0;

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 50px;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:999;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    height:60px;
}

.logo h3{

    color:#0a6ebd;

    margin:0;
}

.logo small{

    color:#777;
}

.nav-links{

    display:flex;

    align-items:center;

    gap:25px;
}

.nav-links a{

    text-decoration:none;

    color:#333;

    font-weight:600;

    transition:.3s;
}

.nav-links a:hover{

    color:#0a6ebd;
}

.call-btn{

    background:#0a6ebd;

    color:white !important;

    padding:10px 22px;

    border-radius:30px;

    transition:.3s;
}

.call-btn:hover{

    background:#084f8a;

    transform:translateY(-2px);
}

.logo{display:flex;align-items:center;gap:10px;}
.logo img{height:45px;}
.nav-links a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}
.nav-links a:hover{color:#0a6ebd;}

/* HERO SLIDER */
/* ===========================
HERO
===========================*/

.hero{

    position:relative;

    min-height:92vh;

    background:url("../img/img3.jpeg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    color:white;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);
}

.hero-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;
}

.hero-tag{

    background:#0a6ebd;

    padding:8px 18px;

    border-radius:30px;

    display:inline-block;

    margin-bottom:20px;

    font-size:14px;
}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:20px;
}

.hero p{

    font-size:19px;

    color:#f1f1f1;

    line-height:1.8;

    max-width:650px;
}

.hero-list{

    list-style:none;

    margin:30px 0;
}

.hero-list li{

    margin-bottom:15px;

    font-size:18px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;
}

.btn-primary{

    background:#0a6ebd;

    color:white;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;
}

.btn-secondary{

    background:white;

    color:#0a6ebd;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;
}

.hero-card{

    background:white;

    color:#333;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.hero-card h3{

    color:#0a6ebd;

    margin-bottom:20px;
}

.hero-card p{

    color:#555;

    line-height:2;
}

.hero-call{

    display:inline-block;

    margin-top:25px;

    background:#0a6ebd;

    color:white;

    padding:12px 30px;

    border-radius:30px;

    text-decoration:none;
}



/*====================================================
QUICK SERVICES
=====================================================*/

.quick-services{

    width:90%;

    max-width:1350px;

    margin:-50px auto 50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

    z-index:99;

}

.quick-card{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

    text-align:center;

    border-top:5px solid transparent;

}

.quick-card:hover{

    transform:translateY(-12px);

    border-color:#0a6ebd;

}

.quick-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#eaf5ff;

    color:#0a6ebd;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.quick-card:hover .quick-icon{

    background:#0a6ebd;

    color:white;

    transform:rotate(360deg);

}

.quick-card h3{

    color:#0a6ebd;

    margin-bottom:18px;

    font-size:24px;

}

.quick-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}


/*==================================================
ABOUT HOME
===================================================*/

.about-home{

    width:90%;

    max-width:1300px;

    margin:50px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:-25px;

    right:-25px;

    background:#0a6ebd;

    color:#fff;

    padding:25px 35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.experience-box h2{

    font-size:40px;

    margin-bottom:5px;

}

.section-subtitle{

    color:#0a6ebd;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;

    margin:20px 0;

    line-height:1.3;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

}

.feature i{

    color:#0a6ebd;

    font-size:18px;

}

.about-btn{

    display:inline-block;

    background:#0a6ebd;

    color:#fff;

    padding:14px 32px;

    border-radius:35px;

    text-decoration:none;

    transition:.3s;

}

.about-btn:hover{

    background:#084f8a;

}



/* ===========================
   SERVICES
=========================== */

.services-section{

    padding:90px 5%;

    background:#f7fbff;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    color:#0a6ebd;

    font-weight:bold;

    letter-spacing:2px;
}

.section-title h2{

    font-size:40px;

    margin:15px 0;
}

.section-title p{

    color:#666;

    max-width:650px;

    margin:auto;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;
}

.service-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.service-card:hover{

    transform:translateY(-12px);
}

.service-card img{

    width:100%;

    height:220px;

    object-fit:cover;
}

.service-content{

    padding:25px;
}

.service-content h3{

    color:#0a6ebd;

    margin-bottom:15px;
}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

.service-btn{

    display:inline-block;

    background:#0a6ebd;

    color:white;

    padding:10px 25px;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;
}

.service-btn:hover{

    background:#084b82;
}


/* TRUST */
.trust{
display:flex;
justify-content:center;
gap:40px;
margin-top:-40px;
flex-wrap:wrap;
}
.trust-box{
background:#fff;
padding:20px 30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
}
.trust-box h3{color:#0a6ebd;}

/* SECTION */
section{padding:60px 20px;max-width:1100px;margin:auto;}
h2{text-align:center;color:#0a6ebd;margin-bottom:30px;}

/* CARDS */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}
.card:hover{transform:translateY(-8px);}
.card h3{color:#0a6ebd;margin-bottom:10px;}
.card p{font-size:14px;color:#555;}

/* LIST SECTION */
.list-box{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
line-height:1.8;
}

/* CTA */
.cta{
background:linear-gradient(135deg,#0a6ebd,#0f9bd7);
color:#fff;
text-align:center;
padding:50px 20px;
border-radius:15px;
}

/* GALLERY */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}
.gallery img{
width:100%;
height:180px;
object-fit:cover;
border-radius:10px;
transition:0.3s;
}
.gallery img:hover{transform:scale(1.05);}

/* CONTACT */
.contact{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}
.contact input{
padding:10px;
border-radius:6px;
border:1px solid #ccc;
}
.contact button{
background:#0a6ebd;
color:#fff;
padding:12px;
border:none;
border-radius:25px;
}

/* FOOTER */
footer{
background:#0a6ebd;
color:#fff;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.contact{grid-template-columns:1fr;}


.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:36px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-card{
    margin-top:20px;
}


.quick-services{

    grid-template-columns:1fr 1fr;

    margin-top:20px;

}

@media(max-width:650px){

.quick-services{

    grid-template-columns:1fr;

}

}


.about-home{

    grid-template-columns:1fr;

}

.about-content{

    text-align:center;

}

.about-features{

    grid-template-columns:1fr;

}

.experience-box{

    position:static;

    margin:20px auto 0;

    width:220px;

}

}