/* 🔥 Promo Section */
.offers-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.offers-section h2 {
  font-size: 32px;
  color: #ffcc00;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offer-card {
  background-color: #222;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
}

.offer-card h3 {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 15px;
  color: #f5f5f5;
  margin-bottom: 15px;
}

.offer-card button {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.offer-card button:hover {
  background-color: #e6b800;
}

/* 🚀 About Section */
.about-section {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 30px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #f5f5f5;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* 🎉 Welcome Banner */
.welcome-banner {
  background-color: #111;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.welcome-banner h3 {
  font-size: 24px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.welcome-banner p {
  font-size: 16px;
  color: #f5f5f5;
}
/* 🔥 Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
}

/* 🔝 Header */
header {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 2px solid #ffcc00;
}

header h1 {
  font-size: 36px;
  color: #ffcc00;
  letter-spacing: 1px;
}

.branding img {
  width: 60px;
  vertical-align: middle;
}

/* 🧭 Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

nav a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* 📦 Main Layout */
main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* ✨ Section Titles */
main h2 {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 20px;
  text-transform: uppercase;
}

main p {
  color: #f5f5f5;
  font-size: 16px;
}

/* 🚗 Search Section */
.search-section {
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-group {
  flex: 1;
  min-width: 200px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffcc00;
  font-weight: bold;
}

.input-group input {
  width: 100%;
  padding: 10px;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 6px;
  color: #f5f5f5;
}

/* 🚕 Ride Tracker */
.tracker-section {
  margin-top: 40px;
  text-align: center;
}

.tracker-bar {
  height: 10px;
  background-color: #ffcc00;
  margin: 20px auto;
  width: 80%;
  border-radius: 5px;
}

.tracker-status {
  font-style: italic;
  color: #ccc;
}

/* 🎁 Offers Section */
.offers-section {
  background-color: #111;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.offer-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.05);
}

.offer-card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.offer-card p {
  color: #f5f5f5;
  margin-bottom: 15px;
}

.offer-card button {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* 🧾 About Section */
.about-section {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
}

.about-section h2 {
  color: #ffcc00;
  font-size: 28px;
}

.about-section p {
  max-width: 700px;
  margin: auto;
  color: #f5f5f5;
}

/* 🎉 Welcome Banner */
.welcome-banner {
  background-color: #111;
  padding: 30px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.welcome-banner h3 {
  font-size: 24px;
  color: #ffcc00;
}

.welcome-banner p {
  color: #f5f5f5;
}

/* 📞 Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: #f5f5f5;
  font-size: 16px;
  border: 1px solid #444;
}

.contact-form button {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* 📍 Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 30px 20px;
  color: #f5f5f5;
  border-top: 2px solid #ffcc00;
}
#footer-map {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}
/* 🔄 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌍 Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
}

/* 🔝 Header */
header {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 2px solid #ffcc00;
}

header h1 {
  font-size: 36px;
  color: #ffcc00;
  letter-spacing: 1px;
}

.branding img {
  width: 60px;
  vertical-align: middle;
}

/* 🧭 Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

nav a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

/* 📦 Main Layout */
main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* ✨ Section Titles */
main h2 {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 20px;
  text-transform: uppercase;
}

main p {
  color: #f5f5f5;
  font-size: 16px;
}

/* 🔍 Search Section */
.search-section {
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-group {
  flex: 1;
  min-width: 200px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffcc00;
  font-weight: bold;
}

.input-group input {
  width: 100%;
  padding: 10px;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 6px;
  color: #f5f5f5;
}

/* 🚕 Ride Tracker */
.tracker-section {
  margin-top: 40px;
  text-align: center;
}

.tracker-bar {
  height: 10px;
  background-color: #ffcc00;
  margin: 20px auto;
  width: 80%;
  border-radius: 5px;
}

.tracker-status {
  font-style: italic;
  color: #ccc;
}

/* 🎁 Offers Section */
.offers-section {
  background-color: #111;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.offer-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 204, 0.2);
  transition: transform 0.3s ease;  
}
/* 🔐 Auth Page Container */
.signup-page, .login-page {
  padding: 60px 20px;
  max-width: 500px;
  margin: auto;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}
/* Form Container */
form {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

input:focus {
  background-color: #3d3d3d;
  outline: none;
}

/* Sign Up Button */
button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e6b800;
}

/* Login Link */
.login-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #ffcc00;
  text-decoration: none;
  font-size: 0.9rem;
}

.login-link:hover {
  text-decoration: underline;
}