@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Outfit", sans-serif;
  
}
.navbar{
    padding: 20px 0;
}
.navbar img{
    width: 120px;
}
.book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f41b35, #ff7b00);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: zoomUp 0.4s ease-out forwards;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.logo-area {
    padding: 15px 0;
}

.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  z-index: 0;
}

.book-btn:hover::before {
  left: 0;
}

.book-btn:hover {
  color: #fff;
  transform: scale(1.05);
}
.owl-carousel .item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.action-icon {
  width: 22px;
  height: auto;
  vertical-align: middle;
  color: white;
}

.action-bar span {
  color: #cfcfcf;
  font-size: 0.95rem;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .action-bar .border-end {
    border-right: none !important;
  }
}
.our-range-of-bike .product-title{
    margin:30px 0;
}
.our-range-of-bike .product-title h2{
    text-transform: uppercase;
    font-size: 35px;
    color: black;
    font-weight: 600;

}
.bike-card {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  overflow: hidden;
  margin-bottom: 20px;
}

.bike-card .card-img-top {
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.rating-circle {
  width: 45px;
  height: 45px;
  background: conic-gradient(#00c853 78%, #444 0%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.card-footer a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.card-footer a:hover {
  color: #ffc107;
}
.fixed-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  height: 56px;
}

.footer-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.find-dealer-btn {
  background-color: #ff5200;
  color: #fff;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.find-dealer-btn:hover {
  background-color: #e04800;
  text-decoration: none;
}

@media (max-width: 576px) {
  .fixed-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 12px 16px;
    gap: 8px;
  }
  .book-btn{
    font-size: 16px!important;
  }
  .namecard-active{
        background: #ff5200!important;
    color: #fff!important;
    transform: translateY(-5px)!important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)!important;
  }
  .owl-carousel .item img {
    width: 100%;
    height: 227px!important;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.carousel-caption {
    position: absolute;
    top: 39%;
    left: 9%;
    transform: translateY(-50%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 500px;
}
.carousel-caption h2 {
 font-size: 35px !important;
}
.carousel-caption p{
  display: none!important;
}
.carousel-slide video {
  width: 100%;
  height: 227px!important;
  object-fit: cover;
}
}
.shopping-tools h3 {
  color: #000;
  letter-spacing: 1px;
}

.tool-card {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.tool-card:hover {
  background: #ff5200;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.tool-icon {
  width: 40px;
  height: auto;
  transition: filter 0.3s;
}

.tool-card:hover .tool-icon {
  filter: brightness(0) invert(1);
}

.tool-card h5 {
  font-weight: 600;
  margin-top: 10px;
}
.option-card h5 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.start-link {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.start-link span {
  margin-left: 5px;
  transition: margin-left 0.2s ease;
}

.start-link:hover {
  color: #ff5200;
}

.start-link:hover span {
  margin-left: 10px;
}
.inquiryForm {
  background-color: #fff;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
}

.inquiryForm .form-control,
.inquiryForm .form-select {
  border-radius: 6px;
  font-size: 15px;
}

.inquiryForm .btn-primary {
  background-color: #ff5200;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inquiryForm .btn-primary:hover {
  background-color: #e04800;
}
.form-title{
    margin-bottom:30px ;
}
.footer {
  background-color: #000;
  color: #ccc;
  font-size: 15px;
}

.footer p {
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-links li:hover {
  color: #f8d42e;
}
.action-bar a{
    text-decoration: none;
}
.carousel-slide {
  position: relative;
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
}

.carousel-caption h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 24px;
  margin: 0;
}
.carousel-slide video {
  width: 100%;
  height: 550px; /* Or adjust according to your layout */
  object-fit: cover;
}
.form-area{
  margin: 30px 0;
}
.brochure-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.brochure-heading {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.brochure-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.brochure-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.brochure-thumbnail {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brochure-info {
  text-align: center;
}

.brochure-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.brochure-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.download-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}
.btn-print{
  background-color: #ff5200!important;
    color: #fff;
}
.tool-card a{
  text-decoration: none;
  color: #000!important;
}
.our-stores {
  background: #f8f9fa;
}

.store-card {
    background-color: #ffffff;
    border-left: 5px solid #1d1e1e;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.store-card h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.store-card p {
  color: #555;
  font-size: 14px;
}
.store-phone {
  color: #007bff;
  font-weight: 500;
  margin-top: 8px;
  font-size: 14px;
}
