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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

/* TOP BAR */
.top-bar{
    background:linear-gradient(90deg,#0d47a1,#1565c0);
    color:white;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    font-size:14px;
}

/* HEADER */
.header{
    background:white;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

/* LOGO */
.logo{
    height:60px;
    transition:0.3s;
}

.logo:hover{
    transform:scale(1.05);
}

/* MENU */
.menu{
    display:flex;
    gap:20px;
}

.menu a{
    text-decoration:none;
    color:#0d47a1;
    font-weight:600;
    position:relative;
}

.menu a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#ff3d00;
    bottom:-5px;
    left:0;
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:25px;
    cursor:pointer;
}

/* HERO / SLIDER */
.slider{
    padding:20px;
}

.slider img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:15px;
    background:#0d47a1;
}

/* ABOUT */
.about{
    display:flex;
    gap:30px;
    padding:40px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:15px;
}

.about p{
    line-height:1.8;
}

/* SECTION TITLE */
.section-title{
    font-size:26px;
    padding:20px 40px;
    color:#0d47a1;
    font-weight:bold;
    position:relative;
}

.section-title::after{
    content:'';
    position:absolute;
    width:120px;
    height:3px;
    background:linear-gradient(90deg,#0d47a1,#ff3d00);
    bottom:10px;
    left:40px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:25px;
    padding:20px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.card{
    background:white;
    padding:15px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* GLOW EFFECT */
.card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:15px;
    padding:2px;
    background:linear-gradient(45deg,#0d47a1,#ff3d00,#00c853);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:destination-out;
    mask-composite:exclude;
    opacity:0;
    transition:0.3s;
}

.card:hover::before{
    opacity:1;
}

/* IMAGE FIX */
.img-box{
    width:100%;
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
}

/* TEXT */
.card h3{
    font-size:16px;
    margin:10px 0;
}

.card p{
    font-size:14px;
    color:#555;
}

/* FOOTER */
.footer{
    background:linear-gradient(90deg,#0d47a1,#1565c0);
    color:white;
    padding:40px 20px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.footer-col h2,
.footer-col h3{
    margin-bottom:10px;
}

.footer-col p,
.footer-col li,
.footer-col a{
    font-size:14px;
    color:#ddd;
    text-decoration:none;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    margin-top:20px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:10px;
    font-size:13px;
}

/* FLOAT BUTTON */
.float-btn{
    position:fixed;
    right:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:white;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:999;
    transition:0.3s;
}

.float-btn.whatsapp{
    bottom:80px;
    background:#25D366;
}

.float-btn.call{
    bottom:20px;
    background:#0d47a1;
}

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

/* PULSE */
.float-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:inherit;
    animation:pulse 2s infinite;
    z-index:-1;
}

@keyframes pulse{
    0%{transform:scale(1); opacity:0.6;}
    70%{transform:scale(1.5); opacity:0;}
    100%{opacity:0;}
}

/* BUTTON */
button, .btn{
    background:#0d47a1;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

button:hover, .btn:hover{
    background:#1565c0;
}

/* MOBILE */
@media(max-width:768px){

    .about{
        flex-direction:column;
        text-align:center;
    }

    .about img{
        max-width:220px;
        margin:auto;
    }

    .about p{
        font-size:14px;
        padding:0 10px;
    }

    .slider img{
        height:220px;
    }

    .menu{
        display:none;
        flex-direction:column;
        position:absolute;
        top:70px;
        right:10px;
        background:white;
        width:200px;
        padding:10px;
        border-radius:10px;
    }

    .menu.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .logo{
        height:40px;
    }
}
.section{
padding:40px 15px;
max-width:1200px;
margin:auto;
width:100%;
}
@media(max-width:768px){

.hero{
padding:40px 15px;
}

.hero h1{
font-size:20px;
line-height:1.4;
}

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

}
.about{
display:flex;
gap:20px;
align-items:center;
}

.about img{
width:100%;
max-width:280px;
border-radius:12px;
}

.about div{
flex:1;
}

@media(max-width:768px){

.about{
flex-direction:column;
text-align:center;
}

.about img{
max-width:180px;
}

.about p{
font-size:14px;
line-height:1.6;
}
}
.logo{
height:45px;
}

@media(max-width:768px){
.about{
padding:20px 10px;
}

.about p{
font-size:14px;
line-height:1.6;
max-height:80px;
overflow:hidden;
}
}
/* ANIMATION BASE */
.fade-up{
opacity:0;
transform:translateY(30px);
transition:all 0.6s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* BUTTON HOVER */
.btn{
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* CARD HOVER */
.card{
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
/* ===== MENU HOVER STYLE ===== */

.menu a{
font-size:15px;
padding:5px 8px;
border-radius:5px;
}

.menu a:hover{
background:#0d47a1;
color:#fff;
}
/* ===== HEADER LAYOUT ===== */

.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 15px;
backdrop-filter:blur(10px);
}

/* LOGO FIX */
.logo-box{
display:flex;
align-items:center;
justify-content:center;
flex:1;
}

.logo{
height:38px;
width:auto;
object-fit:contain;
transition:0.3s;
}

.logo:hover{
transform:scale(1.05);
}

/* MENU ICON FIX */
.menu-toggle{
font-size:24px;
margin-left:auto;
}

/* MOBILE PERFECT ALIGN */
@media(max-width:768px){

.header{
padding:8px 12px;
}

.logo{
height:32px;
}

.menu{
top:60px;
right:10px;
width:180px;
}

}
.review-slider{
display:flex;
gap:15px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

.review-card{
min-width:250px;
background:#fff;
padding:15px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

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

.stars{
color:orange;
font-size:14px;
}