body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #caf0f8;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
  
  .image {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .your-section {
      flex-direction: column;
    }
  }
  
  /* Styles for mobile devices */
@media (max-width: 768px) {
    body {
      font-size: 14px;
    }
    .container {
      flex-direction: column;
    }
    .nav {
      display: block;
    }
  }

  .container {
    display: flex;
    flex-wrap: wrap; /* Items will move to the next line on small screens */
    gap: 10px;
  }
  .box {
    flex: 1 1 300px; /* Flexible boxes */
  }

  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  
header {
    text-align: center;
    padding: 10px 0;
    background-color: #03045e;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-logo {
    width: 60px;
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 0;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6600;
}

.hero-section {
    background: url('bgframe.jpg') no-repeat center center/cover;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    color: white;
    position: relative;
}

.hero-content {
    /* Optional: Dark overlay */
    padding: 20px 30px;
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 48px;
    margin: 0;
}

.hero-section p {
    font-size: 20px;
    margin: 10px 0;
}

.hero-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-button:hover {
    background-color: #0056b3;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    background-color: #90e0ef;
    padding: 20px 0;
    color: #03045e;
    animation: fadeInUp 1.5s ease-in-out;
}

.stat {
    text-align: center;
}

.section-title {
    text-align: center;
    color: #0077b6;
    animation: fadeIn 1s ease-in-out;
}


.benefits-section {
    display: flex;
    justify-content: space-around;
    background-color: #00b4d8;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1.5s ease-in-out;
}

.benefit {
    flex: 1;
    margin: 0 10px;
    animation: zoomIn 1.5s ease-in-out;
}


/* Bike Section Styling */
.bikes-section {
    background: white;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bikes-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.bikes-slider-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.bikes-slider {
    display: flex;
    animation: slideRightLoop 15s linear infinite;
}

.bike-item {
    text-align: center;
    min-width: 200px;
    max-width: 100%;
    margin: 0 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bike-item img {
    width: 150px;
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.bike-item p {
    margin-top: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Optional: Hover effect */
.bike-item:hover {
    transform: scale(1.05);
}

/* Sliding to Right Animation */
@keyframes slideRightLoop {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.cars-section {
    background-color: #caf0f8;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cars-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.cars-slider-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.cars-slider {
    display: flex;
    animation: slideLoop 15s linear infinite;
}

.car-item {
    text-align: center;
    min-width: 200px;
    margin: 0 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.car-item img {
    width: 150px;
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.car-item p {
    margin-top: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Optional: Hover effect */
.car-item:hover {
    transform: scale(1.05);
}

/* Sliding Animation */
@keyframes slideLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.how-it-works {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease forwards;
}

.step img {
    width: 90px;
    max-width: 100%;
    height: 90px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.step p {
    font-size: 16px;
    color: #555;
}

/* Hover effect for slight bounce on icons */
.step img:hover {
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays for each step */
.step:nth-child(1) {
    animation-delay: 0.2s;
}
.step:nth-child(2) {
    animation-delay: 0.4s;
}
.step:nth-child(3) {
    animation-delay: 0.6s;
}
.step:nth-child(4) {
    animation-delay: 0.8s;
}


.review-section {
    background-color: #00b4d8;
}
.reviews-section .review-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-in-out;
   
}

.review-card {
    background-color: white;
    color: #03045e;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.review-card:hover {
    transform: scale(1.1);
    background-color: #f0f8ff;
}
.why-choose-us img {
    width: 70px; /* Adjust this as per your need */
    height: 70px; /* Maintain aspect ratio if square icons */
    margin-bottom: 10px; /* Space between icon and text */
}
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: black;
}

.about-content, .about-logo {
    flex: 1 1 100%; /* Full width on mobile */
    max-width: 600px; /* Limit the width on large screens */
}

.about-logo img {
    max-width: 150px;
    height: auto;
    margin-top: 10px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content li {
    margin: 5px 0;
}

/* Media Query for Desktop */
@media (min-width: 768px) {
    .about-section {
        flex-wrap: nowrap;
        text-align: left;
    }

    .about-content {
        flex: 2;
        padding-right: 20px;
    }

    .about-logo {
        flex: 1;
        text-align: right;
    }
}

.contact-section {
    text-align: center;
    padding: 20px;
    background-color: #03045e;
    border-radius: 10px;
    margin: 20px;
    animation: fadeIn 1.5s ease-in-out;
    color: white;
}
/* Why Choose Us Section */
.why-choose-us-section {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.why-choose-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: black;
}

.why-choose-us-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
    max-width: 100%;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-item img {
    width: 80px;
    max-width: 100%;
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us-features {
        flex-direction: column;
        align-items: center;
    }
    .feature-item {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section a {
    color: white;
    text-decoration: none;
}

.contact-section iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border: 0;
    margin-top: 10px;
}

.floating-call, .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.floating-whatsapp {
    bottom: 80px;
}

.floating-call img, .floating-whatsapp img {
    width: 50px;
    max-width: 100%;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 70%; /* Or any custom width */
    max-width: 100%;
    height: 200px; /* Adjust height */
    max-width: 600px; /* Optional */
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
