*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fa;
overflow-x:hidden;
}

/* ================= NAVBAR ================= */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
background:linear-gradient(135deg,#004aad,#00b4ff);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
position:sticky;
top:0;
z-index:1000;
animation:slideDown 1s ease;
}

/* ================= LOGO ================= */
.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:70px;
height:70px;
border-radius:50%;
background:#fff;
padding:5px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
animation:none;
}

.logo-text h2{
font-size:22px;
line-height:1.2;
color:#fff;
font-weight:700;
}

.logo-text span{
font-size:13px;
color:#ffe082;
font-style:italic;
}

/* ================= NAV LINKS ================= */
.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links li a{
text-decoration:none;
color:#fff;
font-size:18px;
font-weight:600;
position:relative;
transition:0.3s;
}

.nav-links li a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:3px;
background:#ffe082;
transition:0.4s;
border-radius:10px;
}

.nav-links li a:hover::after{
width:100%;
}

.nav-links li a:hover{
color:#ffe082;
}

/* ================= CALL BUTTON ================= */
.call-btn{
background:#fff;
color:#004aad;
padding:12px 20px;
border-radius:10px;
text-decoration:none;
font-weight:700;
line-height:1.4;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
transition:0.4s;
animation:pulse 2s infinite;
}

.call-btn:hover{
background:#ffe082;
color:#000;
transform:translateY(-5px);
}

/* ================= PAGE CONTENT ================= */
section{
padding:70px 50px;
animation:fadeUp 1s ease;
}

/* ================= SOCIAL ICONS ================= */
.social-icons{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.social-icons a{
width:58px;
height:58px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:white;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:0.4s;
animation:bounce 2s infinite;
}

.social-icons a:hover{
transform:scale(1.15);
}

/* Individual Colors */
.whatsapp{
background:#25D366;
}

.instagram{
background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.youtube{
background:#FF0000;
}

/* ================= ANIMATIONS ================= */
@keyframes slideDown{
from{
opacity:0;
transform:translateY(-100%);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes rotateLogo{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

@keyframes bounce{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-8px);}
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:900px){

.navbar{
flex-direction:column;
padding:20px;
text-align:center;
}

.logo{
flex-direction:column;
}

.nav-links{
flex-direction:column;
gap:15px;
margin:20px 0;
}

.call-btn{
width:100%;
}

.logo img{
width:60px;
height:60px;
}

.logo-text h2{
font-size:18px;
}

section{
padding:40px 20px;
}

.social-icons{
right:15px;
bottom:15px;
}

.social-icons a{
width:52px;
height:52px;
font-size:24px;
}

}





/*    body    */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f8f9fa;
overflow-x:hidden;
}

/* HERO SECTION */
.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 60px;
background:linear-gradient(135deg,#0d6efd,#00c6ff);
color:white;
flex-wrap:wrap;
}

.hero-text{
max-width:550px;
animation:slideLeft 1.5s ease;
}

.hero-text h1{
font-size:65px;
letter-spacing:3px;
}

.hero-text h2{
font-size:38px;
margin:10px 0;
}

.hero-text p{
font-size:20px;
line-height:1.6;
margin:20px 0;
}

.hero-buttons{
margin-top:25px;
}

.btn{
padding:14px 28px;
text-decoration:none;
border-radius:8px;
font-weight:bold;
margin-right:12px;
transition:0.4s;
display:inline-block;
}

.btn-primary{
background:white;
color:#0d6efd;
}

.btn-outline{
border:2px solid white;
color:white;
}

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

/* HERO IMAGE */
.hero-image{
animation:slideRight 1.5s ease;
}

.hero-image img{
width:420px;
animation:floatTruck 3s infinite ease-in-out;
}

@keyframes floatTruck{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

/* FEATURES */
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:70px 60px;
background:#fff;
}

.feature-card{
background:white;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.4s;
animation:fadeUp 1s ease;
}

.feature-card h3{
margin-bottom:12px;
color:#0d6efd;
font-size:24px;
}

.feature-card p{
color:#555;
}

.feature-card:hover{
transform:translateY(-12px);
}

/* WHY CHOOSE US */
.why-us{
padding:70px 60px;
background:#eef5ff;
text-align:center;
}

.why-us h2{
font-size:42px;
color:#0d6efd;
margin-bottom:45px;
animation:fadeIn 1.5s ease;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.why-box{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.4s;
animation:fadeUp 1.5s ease;
}

.why-box h3{
margin-bottom:15px;
color:#0d6efd;
}

.why-box:hover{
transform:scale(1.05);
}

/* ANIMATIONS */
@keyframes slideLeft{
from{
opacity:0;
transform:translateX(-80px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes slideRight{
from{
opacity:0;
transform:translateX(80px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

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

.hero{
flex-direction:column;
text-align:center;
padding:50px 20px;
}

.hero-text h1{
font-size:45px;
}

.hero-text h2{
font-size:28px;
}

.hero-image img{
width:280px;
margin-top:30px;
}

.features,
.why-us{
padding:40px 20px;
}

.btn{
margin-bottom:10px;
}

}





/* service */


/* Hero Section */
.services-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #1b263b, #415a77);
    color: white;
}

/* Services Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

/* Card Design */
.service-card {
    background: #f1f1f1;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #e0e1dd;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 50px;
    background: #0d1b2a;
    color: white;
}

.cta-section button {
    background: orange;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
}




/*  about us */

/* About Hero */
.about-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #1b263b, #415a77);
    color: white;
}

/* About Section */
.about-container {
    padding: 40px;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: auto;
}

/* Mission Vision */
.mission-vision {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: center;
}

.box {
    background: #e0e1dd;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
}

/* Why Us */
.why-us {
    text-align: center;
    padding: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: #0d1b2a;
    color: white;
}

.stat-box {
    text-align: center;
}

/* CTA */
.about-cta {
    text-align: center;
    padding: 50px;
}

.about-cta button {
    background: orange;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
}



/*  reviews system */


body{
font-family: Arial;
background:#f4f4f4;
margin:0;
padding:0;
}

.container{
width:80%;
margin:auto;
padding:30px;
}

h1{
text-align:center;
color:#333;
}

.card{
background:white;
padding:20px;
margin:20px 0;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.card h3{
color:#ff6600;
}




/*  booking system */


input, select, button{
width:100%;
padding:12px;
margin:8px 0;
border:1px solid #ccc;
border-radius:8px;
}

button{
background:#ff6600;
color:white;
border:none;
cursor:pointer;
}

button:hover{
background:#e65c00;
}

.container{
width:50%;
margin:auto;
padding:30px;
}




/*      footer     */


.footer{
background:linear-gradient(135deg,#0d1b2a,#1b263b,#415a77);
color:white;
padding:60px 30px 20px;
margin-top:60px;
position:relative;
overflow:hidden;
}

/* Animated background glow */
.footer::before{
content:"";
position:absolute;
top:-80px;
left:-80px;
width:220px;
height:220px;
background:rgba(255,255,255,0.06);
border-radius:50%;
animation:floatGlow 6s infinite ease-in-out;
}

.footer::after{
content:"";
position:absolute;
bottom:-90px;
right:-90px;
width:260px;
height:260px;
background:rgba(255,255,255,0.05);
border-radius:50%;
animation:floatGlow 8s infinite ease-in-out;
}

/* Main Grid */
.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:35px;
position:relative;
z-index:2;
}

/* Boxes */
.footer-box{
animation:fadeUp 1s ease;
}

.footer-box h2,
.footer-box h3{
margin-bottom:18px;
font-size:24px;
color:#ffd166;
}

.footer-box p{
line-height:1.8;
font-size:16px;
color:#f1f1f1;
margin-bottom:10px;
}

/* Links */
.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin-bottom:12px;
}

.footer-box ul li a{
text-decoration:none;
color:#ffffff;
transition:0.3s;
display:inline-block;
}

.footer-box ul li a:hover{
color:#ffd166;
transform:translateX(8px);
}

/* Social Buttons */
.footer-social{
display:flex;
flex-direction:column;
gap:12px;
}

.footer-social a{
text-decoration:none;
padding:12px 15px;
border-radius:10px;
font-weight:bold;
color:white;
transition:0.4s;
box-shadow:0 5px 12px rgba(0,0,0,0.2);
animation:pulse 2s infinite;
}

.footer-social a:nth-child(1){
background:#25D366;
}

.footer-social a:nth-child(2){
background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.footer-social a:nth-child(3){
background:#FF0000;
}

.footer-social a:hover{
transform:translateY(-5px);
opacity:0.9;
}

/* Bottom */
.footer-bottom{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
font-size:15px;
color:#ddd;
position:relative;
z-index:2;
}

/* Animations */
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.03);}
100%{transform:scale(1);}
}

@keyframes floatGlow{
0%{transform:translateY(0);}
50%{transform:translateY(25px);}
100%{transform:translateY(0);}
}

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

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

.footer-box h2,
.footer-box h3{
font-size:22px;
}

.footer-social{
align-items:center;
}

.footer-social a{
width:220px;
}

}





/* =======   contact us =========*/


.contact-hero{
height:320px;
background:url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1200') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
animation:zoomBg 8s infinite alternate;
}

.contact-overlay{
background:rgba(0,0,0,0.55);
padding:40px;
border-radius:15px;
text-align:center;
color:#fff;
animation:fadeUp 1.2s ease;
}

.contact-overlay h1{
font-size:48px;
margin-bottom:10px;
}

.contact-overlay p{
font-size:20px;
}

/* SECTION */
.contact-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
padding:70px 60px;
background:#f8f9fa;
}

.contact-info,
.contact-form{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
animation:fadeUp 1s ease;
}

.contact-info h2,
.contact-form h2{
margin-bottom:25px;
color:#0d6efd;
}

.info-box{
margin-bottom:20px;
padding-bottom:15px;
border-bottom:1px solid #eee;
}

.info-box h3{
margin-bottom:8px;
}

/* FORM */
.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
outline:none;
transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#0d6efd;
transform:scale(1.02);
}

.contact-form button{
padding:14px;
border:none;
background:linear-gradient(135deg,#0d6efd,#00bcd4);
color:#fff;
font-size:18px;
font-weight:bold;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
transform:translateY(-4px);
box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

/* GALLERY */
.contact-gallery{
padding:70px 60px;
text-align:center;
background:#fff;
}

.contact-gallery h2{
font-size:38px;
margin-bottom:35px;
color:#0d6efd;
}

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

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
transition:0.4s;
animation:fadeUp 1.3s ease;
}

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

/* ANIMATION */
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes zoomBg{
from{background-size:100%;}
to{background-size:110%;}
}

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

.contact-section{
grid-template-columns:1fr;
padding:40px 20px;
}

.contact-gallery{
padding:40px 20px;
}

.contact-overlay h1{
font-size:34px;
}

}





/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media screen and (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* Navbar */
    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    nav a {
        display: block;
        margin: 10px 0;
        font-size: 16px;
    }

    /* Hero Section */
    .hero,
    .banner,
    .home {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .hero h1,
    .banner h1,
    .home h1 {
        font-size: 30px;
    }

    .hero p,
    .banner p,
    .home p {
        font-size: 16px;
    }

    /* Containers */
    .container,
    .row,
    .content,
    .services-container {
        width: 100%;
        flex-direction: column;
        padding: 10px;
    }

    /* Service Cards */
    .card,
    .service-box,
    .service-card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Forms */
    form {
        width: 100%;
    }

    input,
    textarea,
    select,
    button {
        width: 100%;
        padding: 12px;
        margin-bottom: 12px;
        box-sizing: border-box;
    }

    /* About Section */
    .about {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
}



/* ==================
    images service 
   =================== */


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



/* ===================
     RESPONSIVE NAVBAR 
   =====================*/


.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

@media(max-width:768px){

    .navbar{
        flex-wrap:wrap;
        padding:15px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:#111;
        position:absolute;
        top:90px;
        left:0;
        padding:20px 0;
        text-align:center;
        z-index:999;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:15px 0;
    }

    .call-btn{
        display:none;
    }

    .logo img{
        width:60px;
    }

    .logo-text h2{
        font-size:16px;
    }

    .logo-text span{
        font-size:12px;
    }

}