body {
  margin: 0;
  font-family: Arial, sans-serif;
}
/* navbar start */
.navbar {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #575757;
  border-radius: 5px;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.navbar .logo-image {
  width: 90px;
  height: auto;
    border-radius: 20%;
}
/* navbar end */

/* responsive navbar start */
/* Responsive for mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 105px;
    right: 0;
    background-color: #333;
    fill-opacity: 50%;
    width: 100%;
    text-align: center;
    height: 100vh;
    z-index: 1000;
  }
.nav-links li {
    margin: 20px 0;
    font-size: 25px;
  }
  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
        .services h2 {
        font-size: 26px;
      }

}
/* responsive navbar end */

/* Hero section start */
.hero-banner {
  background: url('/images/herobanner.jpg') no-repeat center center;
  background-size: cover;
  height: 90vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #e63946;
  color: white;
}

.btn-primary:hover {
  background-color: #d62828;
}

.btn-secondary {
  background-color: #f1faee;
  color: #1d3557;
}

.btn-secondary:hover {
  background-color: #a8dadc;
}
/* Hero section end */

/* about us start */
.about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-highlights li {
  margin-bottom: 10px;
  font-size: 16px;
}
/* about us end */


/* services section start */
.services-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1d3557;
}

.services-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-box {
  background-color: #f1f1f1;
  padding: 25px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  background-color: #e6f2ff;
}
/* servives section end */

/* why choose us start */
.why-choose-us {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1d3557;
}

.why-choose-us p {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  background-color: #e6f2ff;
}

.why-box img {
  width: 60px;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  color: #555;
}
/* why choose us end */

/* testimonials start */
.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1d3557;
}

.testimonials p {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-box {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  background-color: #e6f2ff;
}

.testimonial-box h4 {
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  color: #1d3557;
}
.stars {
  color: #FFD700; /* gold */
  font-size: 18px;
  margin-bottom: 5px;
  display: inline-block;
}

/* testimonials end */

/* gallery section start */
.gallery {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1d3557;
}

.gallery p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
/* gallery section end */

/* faqs start */
.faqs {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faqs h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1d3557;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding: 15px 20px;
  border-left: 4px solid #457b9d;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}

.faq-item p {
  font-size: 16px;
  color: #555;
}
/* faqs end */

/* google map and reviews start */
.google-map {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.map-container {
  max-width: 1000px;
  margin: auto;
}

.google-map h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1d3557;
}

.google-map p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
}

.review-button {
  display: inline-block;
  margin-top: 20px;
  background: #1d3557;
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
}

.review-button:hover {
  background-color: #457b9d;
}
/* google map and reviews end */


.heading-c{
    text-transform: uppercase;
}
/* all brands logo section start */
.vehicle-brands {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.vehicle-brands .container {
  max-width: 1100px;
  margin: 0 auto;
}

.vehicle-brands h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.vehicle-brands p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.brand-image img {
  width: 100%;
  max-width: 736px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* all brands logo section end
/* social media section start  */
.social-media {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.social-media h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.social-media p {
  margin-bottom: 30px;
  color: #555;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.whatsapp-section {
  margin-top: 40px;
}

.whatsapp-section h3 {
  font-size: 22px;
  color: #25D366;
  margin-bottom: 10px;
}

.whatsapp-section p {
  margin-bottom: 15px;
}

.qr-code {
  width: 150px;
  height: 150px;
  border-radius: 8px;
}


/* social media section end*/

/* footer section start */
.site-footer {
  background-color: #1d3557;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-about h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-contact h4,
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-links a,
.footer-contact a {
  color: #f1faee;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #457b9d;
  padding-top: 15px;
  font-size: 14px;
  color: #a8dadc;
}
/* footer section end */