* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", sans-serif;
    background: url('background.png') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.7); 
    color: white;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #01a4db;
    padding: 15px 50px;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.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;
}
.slider-track {
    display: flex;
    animation: scrollLeft 2s linear infinite; /* Changed from 20s to 10s */
}


.slider-track img {
    width: 460px;
    height: 360px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;

}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.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: 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: 200px;
    text-align: center;
}

.card img {
    width: 150px;
    height: 120px;
    margin-bottom: 7px;
}

.btn-book {
    display: inline-block;
    border-style: solid;
    border-color: #78c4eb;
    color: rgb(248, 244, 244);
    padding: 8px 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;
}

