/* Basic styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0px;
  background-color:white;
  width: 100%;
}

/* Navigation bar */
nav {
  background-color: white; /* Ensures white background */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  size: 50px;
}


/* Logo */
img {
  max-width: 50%;
  max-height: 50%;
}
.logo-link {
  text-decoration: none;
}

.logo-link:visited,
.logo-link:active,
.logo-link:hover {
  color: inherit;
  border: none;
  outline: none;
}

/* Dropdown Menu #1 */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fffe76;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Buttons */
.button-container  {
  display: flex;
  gap: 10px;
 justify-content: center;
  font-family: "caramel-regular";
   flex-wrap: wrap;
  text-align: center;
 
}

.button-container button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 40px;
  font-family: "caramel-regular";
  margin-left:30px;
}

.button-container button:hover {
  background-color: #ddd;
}

/* Banner */
.banner-container {
  position: relative;
  background-color: white;
  overflow: hidden;
  height: 50px;
  display: flex;
  align-items: center;
  
}
.banner-content {
  display: flex;
  white-space: nowrap;
  background-color: white;
  
}
.banner {
  white-space: nowrap;
  display: flex;
  animation: scroll 15s linear infinite;
  width: 200%;
  
  background-color: white;
}

.banner:hover {
  animation-play-state: paused;
}

.banner-item {
  padding: 0 100px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  background-color: white;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Newsletter Container */
.newsletter-container {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: center;
  max-width: 400px;
  width: 100%;
}

/* Headings and Text */
.newsletter-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.newsletter-container p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

/* Email Input */
.email-input {
  width: calc(100% - 110px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px; /* Rounded on the left side */
  outline: none;
  box-sizing: border-box; /* Ensures consistent sizing */
}

/* Subscribe Button */
.subscribe-button {
  background-color: white; /* Primary blue */
  color: black;
  border: none;
  border-radius: 0 5px 5px 0; /* Rounded on the right side */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.subscribe-button:hover {
  background-color: #fff494; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 50px) {
  .email-input {
    width: 100%; /* Full width on small screens */
    margin-bottom: 10px;
    border-radius: 5px; /* Fully rounded */
  }

  .subscribe-button {
    width: 100%; /* Full width on small screens */
    border-radius: 25px; /* Fully rounded */
  }
}
.footer {
background-color: #212120;
color: #f4f4f4;
width: 100%;

text-align: center;

}
.spacer{
  padding: 25px;
}
.img2{
  max-width: 20%;
  max-height: 20%;
}

.clearbackgroundbuttonsetup{
  background-color: transparent;
  color: #ddd;
  border: none;
  text-decoration: none;
}
a *:not(.s){
text-decoration: none;
color: #f1f1f1;
}
.white-bar {
  width: 100%; /* Make it span the entire width of the page */
  height: 100px; /* Set the height of the bar */
  background-color: white; /* Make it white */
  border: 1px solid black; /* Optional: Add a border for visibility */
}
.atx{
 text-align: center;
  
}
.s{
  float:right;
  border-radius: 12px;
  width: 300px;
  height: 60px;

}

.bruh{
  background-color: white;
}

.weeklyrentalbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color: white;
  font-size: 40px;
  font-family: "caramel-regular";
}
.yellowbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color:#fff494;
  font-size: 40px;
  font-family: "caramel-regular";
  
}
.topbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color: yellow;
}
.accountbutton{
 border-radius: 12px;
  
  width: 60px;
  height: 60px;
  border-style:solid;
border-width: 2px;
}
.cartbutton{
  color: #212120;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  background-color: yellow;
  border-style:solid;
border-width: 2px;
}

.cnt{
  text-align: center;
  font-size: 70px;
  width: 100%;
}
.img-container {
  display:flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between; /* Optional: Add spacing between blocks */
  gap: 10px;
}

.img-text-block {
  max-width: 100%;
  flex: 1 1 100%;

  text-align: center; /* Center-align text under the image */
  padding: 25px;
  text-decoration: none;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.img-text-block img {
  width: 100%; 
  border: #212120;
  border-radius: 20%;
  
  
  /* Ensure images take the full width of their container */
}
/* When there's space (like on desktop), allow them to fit 3 in a row */
@media (min-width: 768px) {
  .img-text-block {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

.img-text-block h1,
.img-text-block p {
  margin: 5px 0; /* Add some spacing between text elements */
  font-size: 30px;
  
  
}
.img-text-block button {
  all: unset; /* Removes default button styling */
  cursor: pointer; /* Keeps pointer behavior */
  display: block;
  width: 100%;
}

.b{
 
  background-repeat: no-repeat;
  background-size:cover;
  font-size: 40px;
  text-align: left;
 margin-right:0px;
 font-family: "caramel-regular";
 width: 100%;

}

.b h1{
  text-align: center;
}
.b p{
  margin-left: 70px;
  margin-right: 70px;
}
.rounded-button{
font-size: larger;
  border-radius: 15%;
}

.weekly{
  font-size: larger;
  border-radius: 15%;
  background-image: url('cal1.png');

}

.test{
  font-size: 30px;
  border-radius: 12px;
  background-color: #fff494;
 border-color: #212120;
 padding: 15px;
 font-family: "caramel-regular";
border-style:solid;
border-width: 2px;
 
}
.yatra-one-regular {
  font-family: "Yatra One", serif;
  font-weight: 400;
  font-style: normal;
}
@font-face{
  font-family: 'caramel-regular';
  font-weight: bold;
  src: url("fonts/caramel-regular.otf") format("opentype");
}



.center{
  text-align: center;
}
.rental{
  
  background-color: white;
  font-size: 30px;
  
  text-decoration: none; 
  color:black;
  border-radius: 90px;
justify-content: center;
padding-left: 10px;
padding-right:10px;
padding-top: 5px;
padding-bottom: 5px;
font-family: "caramel-regular";

}
.titlee{
  text-align: center;
  font-family: "caramel-regular";
font-size: 60px;
}
.RA{
  text-align: center;
  font-family: "caramel-regular";
  word-spacing: 4px;
  font-size: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.no{
  text-decoration: none;
  color:white;
  
}
.smm{
 
  font-size: 10px;
  
 
}



.l{
  margin-right: 40px;
  
}

.x{
  font-family: "caramel-regular";
  text-align: center;
  font-size:60px;
}


.bold{
  font-weight: 10px;
}


.f-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.text-block {
  flex: 1 1 500px;
}


.mvimg {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 8px;
}
@media (max-width: 778px) {
  .f-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .img-block {
    margin-top: 20px;
  }
}
.ff {
  font-family: "caramel-regular";
  background-color: #fffe76;
  padding: 20px;
  border-radius: 10px;
   font-size: 25px; /* Increase overall font size */
}

.sp {
  margin-bottom: 25px;
  padding: 10px 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sp h3 {
  margin-bottom: 10px;
  font-size: 30px; /* Bold questions */
}

.sp p {
  font-size: 25px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.sp small {
  font-size: 20px;
  color: #555;
}
.scooter-content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: #333;
  background-color: #fdfdfd;
  padding: 0 15px;
}

.scooter-content h1, 
.scooter-content h2, 
.scooter-content h3, 
.scooter-content h4 {
  color: #2c3e50;
}

.scooter-content h1 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.scooter-content h2 {
  margin-top: 30px;
}

.scooter-content h3 {
  margin-top: 20px;
}

.scooter-content h4 {
  margin-top: 15px;
  color: #2c3e70;
}

.scooter-content p {
  margin: 10px 0;
}

.scooter-content ul {
  margin-left: 20px;
}

.scooter-content .section {
  margin-bottom: 40px;
}

.scooter-content blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}

.scooter-content footer {
  margin-top: 50px;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.scooter-content footer a {
  color: #0077cc;
  text-decoration: none;
}

.scooter-content footer a:hover {
  text-decoration: underline;
}
.scoot2023-container {
  font-family: 'ztchintzy-regular';
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: #333;
  background-color: #fdfdfd;
  padding: 0 15px;
}

.scoot2023-title,
.scoot2023-container h2,
.scoot2023-container h3 {
  color: #2c3e50;
}

.scoot2023-title {
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.scoot2023-container h2 {
  margin-top: 30px;
}

.scoot2023-container h3 {
  margin-top: 20px;
}

.scoot2023-container p {
  margin: 10px 0;
  font-family: 'ztchintzy-regular';
}

.scoot2023-specs ul {
  margin-left: 20px;
  list-style-type: disc;
}

.scoot2023-specs ul {
  list-style-type: none;
  padding-left: 0;
}

.scoot2023-specs li {
  margin-bottom: 10px;
}

.scoot2023-testimonials blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}
.scoot-safety-container {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: #333;
  background-color: #fdfdfd;
  padding: 0 15px;
}

.scoot-safety-title {
  color: #2c3e50;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.scoot-safety-subtitle {
  color: #2c3e50;
  margin-top: 10px;
}

.scoot-safety-section {
  margin-top: 30px;
}

.scoot-safety-section h3 {
  color: #2c3e50;
  margin-top: 20px;
}

.scoot-safety-section p {
  margin: 10px 0;
}

.scoot-safety-list {
  margin-left: 20px;
  list-style-type: disc;
}

.scoot-safety-list li {
  margin-bottom: 10px;
}

.scoot-safety-testimonials {
  margin-top: 40px;
}

.scoot-safety-testimonials h3 {
  color: #2c3e50;
}

.scoot-safety-testimonials blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}

.scoot-safety-footer {
  margin-top: 50px;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.scoot-safety-footer a {
  color: #0077cc;
  text-decoration: none;
}

.scoot-safety-footer a:hover {
  text-decoration: underline;
}
.img-text-inline {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  padding: 10px; /* tighter inner spacing */
  margin: 5px;   /* outer spacing between blocks */
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Make it stay in a row (2 columns) on desktop */
@media (min-width: 768px) {
  .img-text-inline {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

.img-text-inline img {
  width: 100%;
  border: #212120;
  border-radius: 20%;
}

.img-text-inline h1,
.img-text-inline p {
  margin: 5px 0;
  font-size: 30px;
}

.img-text-inline button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}