* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Roboto', sans-serif; color:#333; }
header {
  position: sticky; 
  top: 0;
  background: #fff; 
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 2rem; 
  border-bottom: 1px solid #ddd;
  z-index: 10;
  height: 70px;         /* fixed height rakh li */
  box-sizing: border-box; /* padding height ke andar count hogi */
}

.logo img {
  height: 100px; /* Pehle 85px tha, ab bada kar diya */
   /* Agar zarurat ho to width restriction hata de */
}
.desktop-nav a, .mobile-nav a {
  margin:0 1rem; text-decoration:none; color:#333;
  font-weight:500;
}
.mobile-menu-icon { 
  display:none; font-size:2rem; cursor:pointer; 
}
.mobile-nav {
  display:none; flex-direction:column;
  background:#f9f9f9;
}
.mobile-nav a {
  padding:1rem; border-bottom:1px solid #ddd;
}
.hero {
  position:relative; text-align:center;
}
.hero img { width:100%; height:300px; object-fit:cover; }
.hero-content {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.hero-content h1 {
  color:#fff; font-size:2.5rem; margin-bottom:1rem;
  text-shadow:1px 1px 5px rgba(0,0,0,0.6);
}
.btn {
  background:#007bff; color:#fff;
  padding:0.75rem 1.5rem; text-decoration:none;
  border-radius:4px; display:inline-block;
  font-weight:500;
}
section { padding:2rem; text-align:center; }
.services .service-list {
  display:flex; flex-wrap:wrap;
  justify-content:center; gap:2rem;
}
.service-item { width:calc(33% - 2rem); min-width:250px; }
.service-item img { width:100%; height:150px; object-fit:cover; }
table {
  width:100%; max-width:600px; margin:0 auto;
  border-collapse:collapse;
}
th, td {
  border:1px solid #ddd; padding:0.75rem;
}
.contact form {
  display:flex; flex-direction:column;
  width:100%; max-width:400px; margin:1rem auto;
}
.contact input, .contact textarea, .contact button {
  margin:0.5rem 0; padding:0.75rem;
  width:100%;
}
.contact-buttons .btn {
  margin:0.5rem;
}
footer {
  padding:1rem; background:#333; color:#fff;
  text-align:center;
}
.footer-links a { color:#fff; margin:0 0.5rem; text-decoration:none; }

@media (max-width:768px) {
  .desktop-nav { display:none; }
  .mobile-menu-icon { display:block; }
  .service-item { width:100%; }
}
.fleet {
  padding: 2rem;
  background: #f1f1f1;
  text-align: center;
}
.car-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.car {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.car img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}
.car h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.car p {
  color: #555;
  font-size: 0.9rem;
}
.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem;
  background: #333;
  color: #fff;
}
.widget {
  max-width: 300px;
  margin: 1rem;
}
.widget h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.widget ul {
  list-style: none;
}
.widget ul li {
  margin: 0.5rem 0;
}
.widget ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-widgets p {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-bottom {
  width: 100%;                /* Change 100vw → 100% */
  margin: 0;
  padding: 1rem;
  background: #d7fc44;
  font-size: 0.85rem;
  text-align: center;
  box-sizing: border-box;
}

.footer-links {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}
@media (max-width:768px) {
  .footer-widgets {
    flex-direction: column;
    align-items: center;
  }
}
/* Yellow text for Useful Pages, Contact Info, Recent Posts */
.footer-widgets {
  color: yellow;
}

/* Yellow text for footer bottom (copyright + links) */
.footer-bottom, 
.footer-bottom a {
  color: rgb(0, 0, 0);
}

/* Links inside widgets (Useful Pages etc.) ko bhi yellow karenge */
.footer-widgets a {
  color: yellow;
}
.hero-slider {
  position: relative;
  width: 100vw;              /* Full width viewport */
  margin: 0 auto;
  height: 400px;             /* Tu apne hisaab se adjust kar sakta hai */
  overflow: hidden;
  max-width: 100%;           /* Ensure no padding */
  padding: 0;                /* Remove any internal padding */
}


.slide-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}
/* === Top Yellow Strip === */
.top-bar {
  background-color: #ffcc00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  flex-wrap: wrap;
}

.top-bar-left span {
  margin-right: 15px;
}

.top-bar-right a {
  margin-left: 10px;
  display: inline-block;
}

.top-bar-right img {
  height: 20px;
  width: 20px;
}

/* Responsive for mobile */
@media screen and (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
/* === Booking Form Section === */
.booking-form-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.booking-form-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form button {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.booking-form button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-form button:hover {
  background-color: #e6b800;
}
.bg-albert {
  position: relative;
  background: url('images/albert.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
  overflow: hidden;
  z-index: 0;
}

.bg-albert::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.3); /* transparent white overlay */
  pointer-events: none;
  z-index: 1;
}

.bg-albert > section {
  position: relative;
  background-color: rgba(255, 255, 255, 0.15); /* bahut transparent */
  padding: 30px 20px;
  margin: 20px auto;
  border-radius: 12px;
  max-width: 1100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Booking form section ko transparent karne ke liye override karo */
.booking-form-section {
  background-color: transparent !important;
  padding: 0; /* Optional, adjust as needed */
  margin: 0 auto 30px auto; /* Adjust spacing if needed */
}

/* Form inputs transparent */
.booking-form input,
.booking-form select,
.booking-form textarea {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #ffcc00;
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .header-bar {
    padding: 5px 10px; /* kam padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    height: 100px;   /* chhota logo */
    max-width: 140px; /* chhoti width bhi */
  }

  .mobile-menu-icon {
    font-size: 1.8rem;  /* icon ka size thoda adjust */
  }
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.floating-buttons a img:hover {
  transform: scale(1.1);
}
html {
  scroll-behavior: smooth;
}
#rates {
  scroll-margin-top: 110px; /* 80px ko apne header height ke hisaab se adjust kar le */
}

#contact {
  scroll-margin-top: 110px; /* 80px ko apne header height ke hisaab se adjust kar le */
}


.hero-slider {
  position: relative;
  width: 100vw;          /* Full viewport width */
  max-width: 100%;       /* Prevent overflow */
  height: 400px;         /* Desktop height */
  overflow: hidden;
  margin: 0 auto;
}

.slide-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* Image covers container without distortion */
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  user-select: none;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 200px;    /* Mobile me height thoda kam kar di */
  }
  .slider-btn {
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem;
  }
}
.google-reviews {
  background: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
}

.google-review-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}


.google-review-heading .google-main-icon {
  width: 140px;
  height: 140px;
}

.google-reviews h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.review-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-header .google-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
}

.stars {
  color: #FFA500;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2px, 2px); }
  50% { transform: translate(-2px, -2px); }
  75% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  animation: shake 1.5s infinite;
}