html, body{
    overflow-x:hidden;
    width:100%;
}
html{
    scroll-behavior:smooth;
}
nav{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#111;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 60px;
    box-sizing:border-box;
    z-index:1000;
    background: rgba(0,0,0,0.85);
    box-shadow:0 2px 15px rgba(0,0,0,0.3);
}

.logo:hover{
    color:#ffc107;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
} 

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ffc107;
}
    
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f4f4f4;
}

header{
    min-height:100vh;
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;
    text-align:center;
    padding:120px 20px;
}

h1{
    font-size:60px;
    line-height:1.2;
}
@media (max-width:768px){

    header{
        padding:80px 15px;
    }

    h1{
        font-size:36px;
        line-height:1.2;
    }

    header p{
        font-size:18px;
    }

}

header p{
    font-size:22px;
    max-width:900px;
    margin:20px auto;
    line-height:1.5;
}
header a{
    display:inline-block;
    margin-top:20px;
    background:#ffc107;
    color:black;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    border:2px solid #d4edda;
    font-weight:bold;
     transition:0.3s;
}

header a:hover{
    background:#ffca2c;
   transform:scale(1.05);  
}
#services{
    padding:80px 10%;
    background:
    linear-gradient(
        rgba(255,255,255,0.92),
        rgba(255,255,255,0.92)
    ),
    url("beach.jpg");

    background-size:cover;
    background-position:center;
    text-align:center;
}

#services h2{
    font-size:40px;
    margin-bottom:40px;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    padding:20px;
    align-items:stretch;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    min-height:220px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}
@media(max-width:768px){

    .service-box{
        grid-template-columns:1fr;
    }
.card{
    background:rgba(255,255,255,0.95);
    padding:30px;
    border-radius:20px;
    text-align:center;
    min-height:220px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.3s;
}
.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

.card h3{
    color:#198754;
}

.card p{
    font-size:18px;
}
#fleet{
    padding:80px 10%;
    background:#f8f9fa;
    text-align:center;
}
#fleet h2{
    font-size:40px;
    color:#0b5d3b;
    margin-bottom:40px;   
}

.fleet-card{
    max-width:600px;
    margin:30px auto;
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:0.3s;
}

.fleet-card:hover{
    transform:translateY(-8px);
}

.fleet-card h3{
    color:#0d6efd;
    font-size:28px;
}

.fleet-card p{
    font-size:18px;
    line-height:1.6;
}

.fleet-card ul{
    text-align:left;
    line-height:2;
}
.whatsapp{
    position:fixed;
    bottom:15px;
    right:15px;
    width:60px;
    height:60px;
     box-sizing:border-box;
    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,.3);
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}
.call-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    background:#0A3D62;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.call-btn:hover{
    transform:scale(1.1);
}
#booking{
    padding:120px 10% 80px;
    background:
    linear-gradient(
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.9)
    ),
    url("beach.jpg");

    background-size:cover;
    background-position:center;
    text-align:center;
}

#booking h2{
    font-size:40px;
    margin-bottom:40px;
}

form{
    max-width:600px;
    margin:auto;
    background:#f0fff4;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

form button{
    width:100%;
    padding:15px;
    background:#198754;
    color:white;
    border:none;
    border-radius:30px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

form textarea{
    height:120px;
    resize:none;
}

form button{
    width:100%;
    padding:15px;
    background:#0A3D62;
    color:white;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

form button:hover{
    background:#F39C12;
}
#reviews{
    padding:80px 10%;
    background:#f8f9fa;
    text-align:center;
}

.review-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.review-card{
    width:300px;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.review-card p{
    font-size:18px;
    line-height:1.6;
}

.review-card h4{
    color:#0A3D62;
}

#contact{
    padding:80px 10%;
    background:#0A3D62;
    color:white;
    text-align:center;
}

#contact h2{
    font-size:40px;
    margin-bottom:25px;
}

#contact p{
    font-size:20px;
    margin:12px 0;
}
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    font-size:32px;
    margin-bottom:10px;
}

footer p{
    font-size:18px;
    margin:10px 0;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:#ffc107;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
}

.footer-links a:hover{
    color:white;
}

footer hr{
    margin:30px auto;
    width:80%;
    border:1px solid #444;
}
.social-links a{
    color:#ffffff;
    text-decoration:none;
    margin:0 8px;
}

.social-links a:hover{
    color:#25D366;
}
nav ul li a:hover{
    color:#ffc107;
    transition:0.3s;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 60px;
    background:#111;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    color:white;
    font-size:24px;
    font-weight:bold;
    white-space:nowrap;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    border-radius:50%;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
}

/* Booking Form */

#booking{
    background:#f8f8f8;
    padding:60px 20px;
    text-align:center;
}

#booking h2{
    font-size:36px;
    margin-bottom:30px;
}

#booking form{
    max-width:600px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

#booking input,
#booking select,
#booking textarea{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

#booking textarea{
    height:120px;
}

#booking button{
    background:#ffc107;
    color:black;
    border:none;
    padding:15px 40px;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

#booking button:hover{
    background:#e0a800;
}
/* Fleet Section */

#fleet{
    padding:60px 20px;
    text-align:center;
}

#fleet h2{
    font-size:36px;
    margin-bottom:30px;
}

.fleet-card{
    max-width:600px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.fleet-card h3{
    font-size:28px;
}

.fleet-card ul{
    list-style:none;
    padding:0;
}

.fleet-card li{
    margin:12px 0;
    font-size:18px;
}

.fleet-card a{
    display:inline-block;
    background:#ffc107;
    color:black;
    padding:12px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}
@media(max-width:768px){

    nav{
        flex-direction:column;
        padding:10px;
    }

    .logo{
        margin-bottom:10px;
        font-size:22px;
    }

    nav ul{
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
        padding:0;
    }

    nav ul li a{
        font-size:16px;
    }

    header h1{
        font-size:36px;
        text-align:center;
    }

    header p{
        font-size:18px;
        text-align:center;
    }

}

    header h1{
        font-size:36px;
    }

    header p{
        font-size:18px;
        padding:0 10px;
    }

     .service-box{
        grid-template-columns:1fr;
        width:100%;
        padding:10px;
    }

    .card{
        width:100%;
        box-sizing:border-box;
    }

}

}

#about{
    padding:80px 10%;
    min-height:500px;
    text-align:center;
    color:white;

    background-image:url("aboutbg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

#about h2{
    font-size:40px;
    color:#ffc107;
    margin-bottom:30px;
    text-shadow:2px 2px 5px black;
}

#about p{
    max-width:900px;
    margin:20px auto;
    font-size:20px;
    line-height:1.8;
    color:white;
    text-shadow:1px 1px 3px black;
}
@media(max-width:768px){

    #about{
        padding:50px 20px;
    }

    #about h2{
        font-size:32px;
        text-align:center;
    }

    #about p{
        font-size:17px;
        line-height:1.6;
        text-align:center;
    }
    @media(max-width:768px){

    .service-box{
        grid-template-columns:1fr;
        padding:10px;
        width:100%;
    }

    .card{
        width:100%;
        box-sizing:border-box;
        overflow-wrap:break-word;
    }
    .card h3{
        font-size:18px;
        line-height:1.4;
    }

}

    .card p{
        font-size:16px;
    }

}

.fleet-placeholder{
    height:250px;
    background:#f1f1f1;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
#about{
    background-image:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url("aboutbg.jpg") !important;

    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;
}
@media(max-width:768px){

    #services{
        width:100%;
        padding:50px 15px;
        overflow:hidden;
    }

    .service-box{
        display:block;
        width:100%;
        padding:0;
        margin:0;
    }

    .card{
        width:100%;
        padding:25px 10px;
        margin-bottom:25px;
        box-sizing:border-box;
    }

.card p{
    font-size:15px;
    line-height:1.6;
    padding:0 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}
.card h3{
    font-size:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    text-align:center;
}