* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: "Segoe UI", sans-serif;
    background: url('../images/bg.png') no-repeat center center/cover;
    color: white;
    scrollbar-width: none; 
    -ms-overflow-style: none;  


}

body::-webkit-scrollbar {
    display: none; 
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 77, 77, 0.4);
    z-index: -1;
}

a {
    text-decoration: none;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #01a4db;
  padding: 20px 40px; /* Increased padding for a spacious look */
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: adds subtle depth */
}
.logo img {
  height: 50px;
  margin-right: 30px; /* Space between logo and nav links */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px; /* Slightly increased gap between links */
}


.nav-links li a {
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.auth-buttons .btn-auth {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.auth-buttons .btn-auth:hover {
    background: white;
    color: #01a4db;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    min-height: 80vh;
}

.hero-image-slider {
    max-width: 40%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 840px;
    overflow: hidden;
    margin: auto;
    border: 2px solid #ccc;
}

.slider-frame {
    width: 460px;
    height: 360px;
    overflow: hidden;
    margin: auto;
    position: relative;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slider-track {
    display: flex;
    width: calc((490px + 10px) * 8); /* Adjust for all images */
    animation: scrollLeft 10s linear infinite;
}


.slider-track {
    display: flex;
    animation: scrollLeft 5 linear infinite;
}


.slider-track img {
    width: 490px;
    height: 360px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;
}
.light-green {
    color: #77d577; 
    font-weight: bold;
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1810px);
    }
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text .highlight {
    color: #01a4db;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-yellow {
    background: #ffd700;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    margin-right: 10px;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
}

.hero-image {
    text-align: center;
    max-width: 40%;
}

.hero-image img {
    max-width: 100%;
}

.bike-caption {
    margin-top: 10px;
    background: #1bb672;
    padding: 20px;
    border-radius: 15px;
}

.services {
    padding: 30px 40px 60px 40px;
    text-align: center;
}
.services h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    color: black;
    padding: 15px;
    border-radius: 15px;
    width:300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.card img {
    width: 150px;
    height: 150px;
    margin-bottom: 7px;
}

.btn-book {
    display: inline-block;
    border-style: solid;
    border-color: #78c4eb;
    color: rgb(248, 244, 244);
    padding: 10px  15px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.emoji-3d {
    font-size: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-right: 10px;
    vertical-align: middle;
}

.footer {
    background: linear-gradient(135deg, #1d9fb3 25%, #0393dc 25%);
    color: white;
    padding: 40px 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-column h4 {
    color: #c3cb02;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-column p {
    line-height: 1.6;
}

.footer hr {
    border: none;
    height: 1px;
    background-color: white;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

.social-text {
    font-size: 14px;
}

.social-icons a {
    font-size: 15px;
    margin-left: 20px;
    background-color: white;
    color: #37c50c;
    padding: 8px;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #f2f5f0;
    color: #000;
} 
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .auth-buttons {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .btn-track {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .btn-track {
    padding: 6px 12px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text, .slider-frame {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .slider-track img {
        width: 90vw;
        height: auto;
    }
}
