/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
:root { --primary-color: #ff6f61; --secondary-color: #333; --background-color: #f9f9f9; --text-color: green; --white-color: #fff; }
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--background-color); color: var(--text-color); line-height: 1.6; }

/* Header & Navbar */
.header { background-color: var(--white-color); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; max-width: 1400px; margin: 0 auto; }
/* .nav-logo { font-size: 1.4rem; font-weight: 900; color: var(--primary-color); text-decoration: none; } */
.nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
    color:#ff9800;
}

.nav-logo img{
    width:250px;
    height:60px;
    
    object-fit:fill;
}

.nav-menu { display: flex; list-style: none; gap: 1.5rem; }
.nav-link { text-decoration: none; color: var(--primary-color); font-weight: 600; transition: color 0.3s; padding: 5px; }
.hamburger { display: none; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--secondary-color); transition: all 0.3s ease-in-out; }

/* Hero Section */
/* Hero Section */ .hero-section{ position:relative; width:100%; height:55vh; min-height:300px; overflow:hidden; display:flex; justify-content:center; align-items:center; text-align:center; color:#fff; background:#fff; }
/* Slides */ .slide{ position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition:opacity 1.5s ease-in-out; margin-top: 50px; }
.slide.active{ opacity:1; }
/* Image Full Ratio */ .slide img{ width:100%; height:100%; object-fit:contain; object-position:center center; display:block; background:#fff; }
/* Remove Overlay */ .hero-overlay{ display:none; }
/* Hero Content */ .hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto 30px auto;
}

.hero-content h1{
    color: #ff6f61;
    text-shadow: none;
}

.hero-content p{
    color: #333;
    text-shadow: none;
}
.btn-primary{ background:#ff6f61; color:#fff; padding:12px 25px; border:none; border-radius:6px; cursor:pointer; }
/* Slider Dots */ .slider-dots{ position:absolute; bottom:10px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:3; }
.dot{ width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,.5); }
.dot.active{ background:#fff; }

/* Modal & Booking Form */
.modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); justify-content: center; align-items: center; }
.modal-content { background-color: var(--white-color); margin: auto; padding: 30px; border-radius: 10px; width: 90%; max-width: 500px; animation: slide-down 0.5s ease-out; }
@keyframes slide-down { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-button { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.form-group { margin-bottom: 15px; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; margin-top: 5px;}
.btn-submit { width: 100%; padding: 12px; background-color: var(--primary-color); color: var(--white-color); border: none; border-radius: 5px; font-size: 1rem; cursor: pointer; }

/* Generic Sections Styling */
.services-section, .about-section, .drivers-section, .gallery-section, .vehicles-section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; color: var(--secondary-color); }

/* Generic Card Styling for Services & Vehicles */
.services-container, .vehicles-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background-color: var(--white-color); border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; overflow: hidden; text-align: left; }
.card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.card img { width: 100%; height: 250px; object-fit: fill; }
.card-content { padding: 20px; }
.card h3 { color: var(--primary-color); margin-bottom: 10px; }

/* Drivers Section */
.drivers-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.driver-card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); text-align: center; }
.driver-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; border: 3px solid var(--primary-color); }
.driver-card h3 { color: var(--primary-color); margin-bottom: 5px; }

/* Gallery Section */
.gallery-slider-container { width: 100%; overflow: hidden; position: relative; }
.gallery-slider-container::before, .gallery-slider-container::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.gallery-slider-container::before { left: 0; background: linear-gradient(to left, rgba(249, 249, 249, 0), var(--background-color)); }
.gallery-slider-container::after { right: 0; background: linear-gradient(to right, rgba(249, 249, 249, 0), var(--background-color)); }
.gallery-slider { display: flex; width: calc(260px * 10); animation: scroll 30s linear infinite; }
.gallery-slider img { width: 240px; height: 160px; object-fit: cover; margin: 0 10px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-260px * 5)); } }

/* Footer */
.footer { background-color: var(--secondary-color); color: var(--white-color); text-align: center; padding: 20px 0; }
.footer p { margin: 5px 0; font-size: 0.9rem;}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: block; cursor: pointer; }
    .nav-menu { position: fixed; left: -100%; top: 65px; flex-direction: column; background-color: var(--white-color); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid #f0f0f0;}
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-content h1 { font-size: 2rem; }
    .section-title {font-size: 2rem;}
}


.location-section{
    padding:60px 5%;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.location-box{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    font-size:18px;
}