.c-item {
  height: 600px;
}

.c-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}



/* Card container hover effect */
.bike-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.bike-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Image zoom on hover */
.bike-card img {
  transition: transform 0.5s;
}

.bike-card:hover img {
  transform: scale(1.1);
}

/* Overlay on hover */
.bike-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-card:hover .bike-overlay {
  opacity: 1;
}

/* Overlay button */
.bike-overlay a {
  padding: 10px 20px;
  background: #ffc107;
  color: #000;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.bike-overlay a:hover {
  background: #e0a800;
}

/* Card body styling */
.bike-card .card-body {
  text-align: center;
  padding: 1.5rem;
}

.bike-card .card-body h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bike-card .card-body p {
  font-size: 0.95rem;
  color: #555;
}

/* Section heading */
#bikes h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

#bikes h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #ffc107;
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

#bikes p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
}


/* Container styling */
#why {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Heading style */
#why h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

#why h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ffc107;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Icon box styling */
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffc107;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 15px;
  transition: transform 0.3s, background 0.3s;
}

/* Hover effect */
.why-card:hover .icon-box {
  transform: rotate(15deg) scale(1.1);
  background: #e0a800;
}

/* Card styling */
.why-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Card heading */
.why-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Card text */
.why-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Row spacing */
#why .row {
  justify-content: center;
  gap: 30px;
}



#contact {
  background: #f8f9fa;
  padding: 80px 0;
}

#contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

#contact h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ffc107;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

#contact p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info a.btn {
  margin-top: 10px;
  transition: background 0.3s, transform 0.3s;
}

.contact-info a.btn:hover {
  background: #e0a800;
  transform: translateY(-3px);
}

/* Contact form */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  margin-bottom: 15px;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255,193,7,0.3);
  outline: none;
}

.contact-form button {
  background: #ffc107;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background: #e0a800;
  transform: translateY(-3px);
}

/* Map styling */
.contact-map iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}




#about {
  padding: 80px 0;
  background: #fff;
}

#about h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

#about h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ffc107;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

#about p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.about-points {
  margin-top: 20px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.about-point i {
  font-size: 28px;
  color: #ffc107;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.about-point:hover i {
  transform: rotate(20deg) scale(1.2);
}

.about-point h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.about-point p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Right side image */
#about .about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

#about .about-img:hover {
  transform: scale(1.05);
}


#testimonials {
  background: #f8f9fa;
  padding: 80px 0;
}

#testimonials h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#testimonials h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ffc107;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Testimonial cards container */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 10px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Individual Testimonial Card */
.testimonial-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Optional navigation buttons */
.testimonial-nav {
  text-align: center;
  margin-top: 20px;
}

.testimonial-nav button {
  background: #ffc107;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.testimonial-nav button.active,
.testimonial-nav button:hover {
  transform: scale(1.5);
}


#faq {
  background: #fff;
  padding: 80px 0;
}

#faq h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#faq h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ffc107;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.accordion-button {
  background: #f8f9fa;
  color: #333;
  font-weight: 600;
  border-radius: 10px;
  padding: 15px 20px;
  transition: background 0.3s, transform 0.3s;
}

.accordion-button:hover {
  background: #fff3cd;
  transform: translateX(5px);
}

.accordion-button:after {
  font-size: 1.2rem;
  color: #ffc107;
  font-weight: bold;
}

.accordion-body {
  background: #fff;
  color: #555;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}
#footer {
  background: #212529;
  color: #fff;
  padding: 60px 0 30px 0;
}

#footer a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s;
}

#footer a:hover {
  color: #fff;
}

#footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 15px;
}

#footer p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

#footer .footer-links h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

#footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.3rem;
  color: #ffc107;
  transition: transform 0.3s, color 0.3s;
}

#footer .social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
}

#footer .bottom-bar {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}


/* Responsive spacing */
@media(max-width: 767px) {
  .contact-info {
    margin-bottom: 30px;
  }
}


