* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #004d40;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('Images/Bike Rental.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero .btn {
  background-color: #ff9800;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.card {
  background: #f1f1f1;
  padding: 20px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

footer {
  background-color: #004d40;
  color: #fff;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
}

a.btn.whatsapp-btn {
  background-color: #25d366;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 15px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons5 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: pulse 1.5s infinite;
}

.floating-buttons5 a {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: pulse 1.5s infinite;
}
.floating-buttons a:hover {
  transform: scale(1.1);
  animation: blink 1s infinite;
}

.floating-buttons5 a:hover {
  transform: scale(1.1);
  animation: blink 1s infinite;
}

/* Specific styles */
.call-btn {
  background-color: #4488fc;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
}

.whatsapp-btn {
  background-color: #25d366;
  box-shadow: 0 2px 8px rgba(68, 136, 252, 0.4);
}

/* Blinking hover animation */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Subtle pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* Footer Section */
.site-footer {
  background-color: #00332e;
  color: #ffffff;
  padding: 40px 20px 10px;
  font-size: 15px;
  text-align: left; /* Ensure all text aligns to the left */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: left; /* Left align inside grid areas */
}

.footer-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left; /* Align content left inside each box */
}

.footer-box h3 {
  margin-bottom: 15px;
  color: #ffcc00;
  font-size: 18px;
  text-align: left;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-box ul li {
  margin-bottom: 8px;
  text-align: left;
}

.footer-box ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  text-align: left;
}

.footer-box ul li a:hover {
  color: #ffcc00;
}

.footer-box .keywords {
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
}

.footer-image {
  margin-top: 15px;
  width: 200px;
  height: auto;
  filter: brightness(0.9);
  text-align: left;
}

.footer-bottom {
  text-align: left;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.contact-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info {
  max-width: 600px;
  font-size: 16px;
  text-align: center;
}

.map-container {
  max-width: 1100px;
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}


.contact-form {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 15px;
  color: #00332e;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.contact-form button {
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

