* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  top: 0px !important;
  font-family: "Barlow Condensed", sans-serif;
  overflow-x: hidden;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

/* nav-bar section started */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #f5f5f5;
  /* background: rgba(0, 0, 0, 0.6); */
  transition: background-color 0.3s ease-in-out;
}

/* Navbar Content */
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 350px;
}

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 12px;
}

.shop-name {
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #222;
}

/* Nav List */
.nav-list {
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

/* Menu Items */
.nav-list a {
  text-decoration: none;
  color: #222;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 10px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

/* Underline Animation */
.nav-list a:not(.login-btn1)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

/* Hover Effect */
.nav-list a:hover {
  color: #333;
}

.nav-list a:hover::after {
  width: 100%;
}

/* Responsive Navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 4px;
  width: 27px;
  background-color: white;
  margin: 2px 0;
  transition: transform 0.3s ease-in-out;
}

/* Language Translation Container */
.translate-container {
  position: relative;
}

/* Language Toggle Button */
.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  border: 2px solid black;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 120px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* Dropdown Button Styling */
.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: gray;
}

/* Mobile View */
@media (max-width: 1024px) {
  .navbar {
    background-color: #222;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #222;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .nav-list a {
    font-size: 1.6rem;
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
  .menu-toggle .bar {
    height: 9px;
    width: 55px;
    margin: 6px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 450px;
  }

  .logo img {
    height: 90px;
    width: 90px;
    margin-right: 8px;
  }
  .language-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: #222;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .nav-list a {
    font-size: 1.2rem;
  }

  .nav-list.active {
    display: flex;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 350px;
  }

  .logo img {
    height: 85px;
    width: 85px;
    margin-right: 8px;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle .bar {
    height: 8px;
    width: 45px;
    margin: 4px;
  }
  .language-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .home {
    padding-top: 5%;
  }

  .welcome-container h1 {
    padding-top: 18%;
  }

  .navbar {
    padding: 10px 15px;
    background-color: #222;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
  }

  .logo img {
    height: 60px;
    width: 60px;
    margin-right: 8px;
  }

  .shop-name {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }
  .menu-toggle .bar {
    height: 4px;
    width: 28px;
    margin: 2px;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list a {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  .translate-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .language-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
  }

  .language-dropdown button {
    font-size: 12px;
    padding: 8px;
  }
}

/* hero section started */
.hero {
  height: 110vh;
  background-color: #f5f5f5;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  gap: 30px;
  flex-wrap: wrap;
}
.content {
  max-width: 600px;
  flex: 1;
}
.highlight {
  color: #e44320;
  font-weight: bold;
}
.main-heading {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 30px;
}
.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.red-btn {
  background-color: #e44320;
  color: white;
}
.dark-btn {
  background-color: #e0e0e0;
  color: #333;
}
.image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.image-side img {
  width: 100%;
  height: auto;
}

/* Enhanced Media Queries for Better Responsiveness */

/* Large Tablet - 1024px */
@media (max-width: 1199px) and (min-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0;
  }
  .overlay {
    padding: 40px 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .main-heading {
    font-size: 58px;
  }

  .description {
    font-size: 25px;
    line-height: 1.6;
  }

  .buttons {
    justify-content: center;
  }

  .image-side {
    margin-top: 20px;
  }

  .image-side img {
    width: 80%;
  }
}

/* Tablet - 768px */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0;
  }
  .main-heading {
    font-size: 48px;
  }
  .description {
    font-size: 24px;
  }
  .overlay {
    padding: 0 50px;
    flex-direction: column;
    text-align: center;
  }
  .buttons {
    justify-content: center;
  }
  .image-side img {
    width: 100%;
    height: auto;
  }
}

/* Large Mobile - 640px */
@media (max-width: 767px) and (min-width: 640px) {
  .hero {
    height: auto;
    min-height: 90vh;
    padding: 50px 0;
  }
  .main-heading {
    font-size: 40px;
  }
  .description {
    font-size: 16px;
  }
  .overlay {
    padding: 0 40px;
    flex-direction: column;
    text-align: center;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 25px;
  }
  .image-side img {
    width: 70%;
    max-width: 320px;
  }
}

/* Medium Mobile - 480px */
@media (max-width: 639px) and (min-width: 480px) {
  .hero {
    height: auto;
    min-height: 85vh;
    padding: 40px 0;
  }
  .main-heading {
    font-size: 36px;
    margin-bottom: 18px;
  }
  .description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .overlay {
    padding: 0 30px;
    flex-direction: column;
    text-align: center;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 15px 25px;
  }
  .image-side {
    margin-top: 25px;
  }
  .image-side img {
    width: 75%;
    max-width: 300px;
  }
}

/* Small Mobile - 320px */
@media (max-width: 479px) and (min-width: 320px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 30px 0;
  }
  .main-heading {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.1;
  }
  .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .overlay {
    padding: 0 25px;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .image-side {
    margin-top: 20px;
  }
  .image-side img {
    width: 80%;
    max-width: 280px;
  }
}
/* hero section ended */
.feature-heading-image {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.feature-heading-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
/* feature section started */
.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 80px;
  gap: 60px;
}

.feature-content-side {
  flex: 1 1 50%;
}

.feature-image-side {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.feature-image-side img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.feature-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-description {
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-box img {
  width: 48px;
  background: #f3f3f3;
  border-radius: 50%;
  padding: 10px;
}

.feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-text {
  font-family: "Inter", sans-serif;
  line-height: 1.5rem;
  font-size: 16px;
  color: #444;
}

/* Responsive for laptops and small desktops */
@media (max-width: 1024px) {
  .feature-section {
    flex-direction: column;
    padding: 60px 50px;
    gap: 50px;
  }

  .feature-heading {
    font-size: 40px;
    text-align: center;
  }

  .feature-subheading {
    text-align: center;
  }
  .feature-description {
    font-size: 30px;
    text-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .feature-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-box img {
    margin-bottom: 15px;
  }
  .feature-title {
    font-size: 30px;
  }
  .feature-box p {
    font-size: 24px;
    line-height: 1.8rem;
  }
  .feature-image-side img {
    max-width: 100%;
  }
}

/* Responsive for tablets and below */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .feature-heading {
    font-size: 38px;
    text-align: center;
  }

  .feature-subheading {
    text-align: center;
  }
  .feature-description {
    font-size: 28px;
    text-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-box img {
    margin-bottom: 10px;
  }

  .feature-image-side img {
    max-width: 100%;
  }
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
  .feature-section {
    padding: 30px 20px;
    gap: 30px;
  }

  .feature-heading {
    font-size: 26px;
  }

  .feature-description {
    font-size: 16px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 15px;
  }

  .feature-box img {
    width: 42px;
    padding: 8px;
  }
}

/* feature section ended */

/* digital section started */
.digital-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.digital-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.digital-image-side {
  flex: 1 1 250px;
}

.digital-image-side img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.digital-content-side {
  flex: 1 1 400px;
}

.digital-subheading {
  color: #e44320;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 16px;
}

.digital-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.digital-description {
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .digital-heading {
    font-size: 28px;
  }

  .digital-description {
    font-size: 15px;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .digital-container {
    flex-direction: column;
    text-align: center;
  }

  .digital-heading {
    font-size: 30px;
  }

  .digital-description {
    font-size: 20px;
  }
  .digital-image-side {
    width: 100%;
    height: 100%;
  }
  .digital-image-side img {
    width: 100%;
    height: auto;
  }
}

/* Small Mobile: ≤ 480px */
@media (max-width: 480px) {
  .digital-heading {
    font-size: 20px;
  }

  .digital-subheading {
    font-size: 14px;
  }

  .digital-description {
    font-size: 13px;
  }
  .digital-image-side {
    width: 100%;
    height: 100%;
  }
  .digital-image-side img {
    width: 100%;
    height: auto;
  }
}

.close-modal-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 28px;
  color: orange;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

@media (max-width: 1024px) {
  .close-modal-btn {
    right: 30px;
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .close-modal-btn {
    top: 0;
    right: 0px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .close-modal-btn {
    top: 0;
    right: 0;
    font-size: 22px;
  }
}

/* digital section ended */

/* product section started */
.product-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  align-items: center;
  text-align: center;
  background: #f8f9fa;
}

.product-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.gallery-subheading {
  color: #e44320;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-description {
  color: #666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(33.333% - 20px);
  min-width: 280px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 90%;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7),
    transparent
  );
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-height: 150px;
  overflow-y: auto;
}

.product-card:hover .description-overlay {
  transform: translateY(0);
}

.description-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.button-container {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.get-quote-btn {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  background: none;
  border: none;
  text-align: left;
}

.get-quote-btn:hover {
  color: #3498db;
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.get-quote-btn:hover .arrow {
  transform: translateX(5px);
}

.buy-now-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8881a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.buy-now-btn:active {
  transform: translateY(0);
}

/* Modal/Popup styles */
.ev-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ev-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.ev-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.ev-overlay.active .ev-container {
  transform: scale(1);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e44320;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-button:hover {
  background: #c73a1c;
  transform: scale(1.1);
}

.ev-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
  padding-right: 30px;
}

.form-content-scroll {
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  padding-right: 10px;
}

.vehicle-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-item:hover {
  border-color: #3498db;
  background-color: #f8f9fa;
}

.radio-item input[type="radio"] {
  margin: 0;
  cursor: pointer;
}

.radio-item input[type="radio"]:checked {
  accent-color: #e44320;
}

.radio-item.checked {
  border-color: #e44320;
  background-color: #fff5f3;
}

.radio-item span {
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.other-input {
  margin-top: 8px;
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
  transition: border-color 0.3s ease;
}

.other-input.show {
  display: block;
}

.other-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-field.full-width {
  grid-column: span 2;
}

.contact-field input {
  padding: 10px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-field input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
  background: #e44320;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.submit-button:hover {
  background: #c73a1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(228, 67, 32, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.form-content-scroll::-webkit-scrollbar {
  width: 6px;
}

.form-content-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.form-content-scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.form-content-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

@media (max-width: 768px) {
  .ev-container {
    width: 95%;
    padding: 15px;
    max-height: 95vh;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-field.full-width {
    grid-column: span 1;
  }

  .ev-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .form-content-scroll {
    max-height: calc(95vh - 100px);
  }
}

@media (max-height: 600px) {
  .ev-container {
    padding: 10px;
    max-height: 95vh;
  }

  .ev-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-content-scroll {
    max-height: calc(95vh - 80px);
  }

  .vehicle-form {
    gap: 15px;
  }

  .contact-details {
    gap: 10px;
  }
}

/* QR Code Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.active .qr-modal-content {
  transform: scale(1);
}

/* Modal Content */
.qr-modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #cc0000;
}

/* Modal Title */
.modal-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Product Name */
.product-name {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

/* QR Code Container */
.qr-code-container {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #e9ecef;
}

.qr-brand-title {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* QR Code Image */
.qr-code-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  padding: 10px;
}

.qr-code-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* QR Code ID */
.qr-code-id {
  font-size: 0.9rem;
  color: #999;
  font-family: monospace;
  letter-spacing: 0.5px;
}

/* Instructions */
.qr-instructions {
  color: #666;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 480px) {
  .qr-modal-content {
    padding: 20px;
    margin: 10px;
  }

  .qr-code-image {
    width: 150px;
    height: 150px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .qr-instructions {
    font-size: 0.9rem;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 250px;
  }

  .product-grid {
    gap: 25px;
  }

  .product-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 1 calc(50% - 10px);
    min-width: 220px;
  }

  .product-grid {
    gap: 20px;
  }

  .product-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .product-section {
    padding: 30px 15px;
  }

  .button-container {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .get-quote-btn {
    font-size: 1rem;
    justify-content: center;
  }

  .buy-now-btn {
    width: 100%;
    padding: 12px 20px;
  }

  .modal-content {
    max-width: 90%;
    padding: 20px;
  }

  .modal-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 1 100%;
    min-width: auto;
    max-width: 100%;
  }

  .product-grid {
    gap: 20px;
  }

  .product-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .product-section {
    padding: 20px 10px;
  }

  .modal-content,
  .qr-modal-content {
    max-width: 95%;
    padding: 20px;
  }

  .qr-code-image {
    width: 100%;
    height: 100%;
  }
}

/* product section ended */

/* choose section started */

.choose-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.choose-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}
.choose-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

.choose-description {
  font-family: "Poppins", sans-serif;
  color: #222;
  font-size: 18px;
  margin-bottom: 45px;
  text-align: center;
}

.choose-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.choose-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 31%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-5px);
}

.choose-icon {
  font-size: 30px;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
}

.bg-orange {
  background-color: #e44320;
}

.bg-blue {
  background-color: #007bff;
}

.bg-green {
  background-color: #28a745;
}

.choose-title {
  font-size: 24px;
  margin: 20px 0;
  font-weight: bold;
}

.choose-text {
  font-family: "Roboto", sans-serif;
  line-height: 1.4rem;
  font-size: 18px;
  color: #444;
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .choose-box {
    width: 45%;
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .choose-box {
    width: 100%;
  }
}

/* Responsive - 480px */
@media (max-width: 480px) {
  .choose-heading {
    font-size: 26px;
    font-weight: 700;
  }

  .choose-subheading {
    font-size: 14px;
  }

  .choose-box {
    padding: 20px 15px;
  }

  .choose-title {
    font-size: 16px;
  }

  .choose-text {
    font-size: 13px;
  }
}

/* choose section ended */

/* video section started */

.video-grid-section {
  padding: 40px 20px;
  text-align: center;
  color: #222;
}
.video-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}
.video-grid-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.video-box {
  flex: 1 1 300px;
  width: 300px;
  height: 300px;
  position: relative;
  padding-bottom: 35%; /* 16:9 */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Optional: crops to fill */
}

/* Responsive */
@media (max-width: 768px) {
  .video-box {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .video-grid-section h2 {
    font-size: 26px;
    font-weight: 700;
  }
}

/* video section ended */

/* gallery section started */

.gallery-section {
  text-align: center;
}
.gallery-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.gallery-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.gallery-description {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  color: #222;
  margin-bottom: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, cursor 0.3s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.03);
}

/* Image Popup Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  background: transparent;
}

.image-modal.active .modal-content {
  transform: scale(1);
}

.modal-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.close-modal:hover {
  color: #e44320;
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2001;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #e44320;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 50px 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-heading {
    font-size: 30px;
  }

  .gallery-description {
    font-size: 17px;
  }

  .gallery-image {
    width: 100%;
    height: auto;
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    font-size: 28px;
  }

  .gallery-description {
    font-size: 16px;
  }

  .gallery-image {
    width: 100%;
    height: auto;
  }

  .close-modal {
    top: -35px;
    font-size: 25px;
  }

  .nav-arrow {
    font-size: 24px;
    padding: 12px 16px;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}

/* Responsive - 480px */
@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 20px;
  }

  .gallery-heading {
    font-size: 26px;
  }

  .gallery-description {
    font-size: 15px;
  }

  .gallery-image {
    width: 100%;
    height: auto;
  }

  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .close-modal {
    top: -30px;
    font-size: 20px;
    width: 35px;
    height: 35px;
  }

  .nav-arrow {
    font-size: 20px;
    padding: 10px 12px;
  }

  .image-counter {
    font-size: 14px;
    bottom: -40px;
  }
}
/* gallery section ended */

/* review section started */
.review-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
  margin: 5% 0;
}
.review-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}
.review-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.review-card {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 22px 20px;
  width: 300px;
  text-align: center;
  position: relative;
}

.review-header {
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10px;
}

.review-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid black;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
  color: #007bff;
}

.review-icon i {
  font-size: 28px;
  color: #007bff;
}

.review-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.review-role {
  font-size: 14px;
  color: gray;
  margin: 2px 0 10px;
}

.review-text {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.stars {
  color: #fbc02d;
  font-size: 18px;
}

/* ========== Responsive Breakpoints ========== */

/* For tablets and up (1024px and below) */
@media (max-width: 1024px) {
  .review-card {
    width: 45%;
  }
}

/* For small tablets (768px and below) */
@media (max-width: 768px) {
  .review-card {
    width: 80%;
  }

  .review-icon {
    width: 60px;
    height: 60px;
  }

  .review-icon i {
    font-size: 24px;
  }

  .review-name {
    font-size: 16px;
  }

  .review-text {
    font-size: 13px;
  }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
  .review-section h2 {
    font-size: 1.5rem;
  }
  .review-card {
    width: 100%;
  }

  .review-icon {
    width: 50px;
    height: 50px;
  }

  .review-icon i {
    font-size: 20px;
  }

  .review-name {
    font-size: 15px;
  }

  .stars {
    font-size: 16px;
  }
}

/* review section ended */

/* contact section started */

.ev-contact-section {
  padding: 60px 80px;
}

.ev-contact-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ev-contact-subheading {
  color: #e44320;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.ev-contact-section h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 35px;
  text-transform: uppercase;
  text-align: center;
}

.ev-contact-form {
  flex: 0 0 60%;
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 10px;
}

.ev-contact-info {
  flex: 0 0 35%;
  background: #f3f3f3;
  padding: 30px;
  border-radius: 10px;
}

.ev-form-heading {
  font-size: 24px;
  margin-bottom: 20px;
}

.ev-form input,
.ev-form textarea,
.ev-form select {
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.ev-form-row {
  display: flex;
  gap: 10px;
}

.ev-form-row input,
.ev-form-row select {
  flex: 1;
}

.ev-form-group {
  margin-bottom: 15px;
}

.ev-form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-top: 5px;
  margin-bottom: 10px;
  display: block;
}

.ev-radio-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ev-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev-radio-option input[type="radio"] {
  width: auto;
  margin: 0;
}

.ev-radio-option span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
}

.ev-other-input {
  margin-top: 10px;
  display: none;
}

.ev-other-input.show {
  display: block;
}

.ev-form button {
  padding: 12px 20px;
  background-color: #e44320;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ev-form button:hover {
  background-color: #c83b1d;
}

.ev-contact-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 35px;
  color: #222;
}

.ev-contact-info p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 35px;
  color: #333;
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .ev-contact-container {
    flex-direction: column;
  }

  .ev-contact-form,
  .ev-contact-info {
    flex: 1 1 100%;
  }

  .ev-radio-options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .ev-contact-section {
    padding: 40px 30px;
  }

  .ev-form-heading {
    font-size: 20px;
  }

  .ev-form input,
  .ev-form textarea,
  .ev-form select {
    font-size: 14px;
  }

  .ev-form button {
    font-size: 15px;
  }

  .ev-contact-info h3 {
    font-size: 20px;
  }

  .ev-radio-options {
    grid-template-columns: 1fr;
  }
}

/* Responsive - 480px */
@media (max-width: 480px) {
  .ev-form-row {
    flex-direction: column;
  }

  .ev-contact-section {
    padding: 30px 20px;
  }

  .ev-contact-section h1 {
    font-size: 26px;
    font-weight: 700;
  }

  .ev-form input,
  .ev-form textarea,
  .ev-form select {
    font-size: 13px;
  }

  .ev-form button {
    font-size: 14px;
    width: 100%;
  }

  .ev-radio-options {
    grid-template-columns: 1fr;
  }
}
/* contact section ended */

/* map section started */
section.map-section {
  background-color: white;
  text-align: center;
  margin-bottom: 2%;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive: 1024px */
@media screen and (max-width: 1024px) {
  .map-section h2 {
    font-size: 1.8rem;
  }

  .map-container {
    height: 350px;
  }
}

/* Responsive: 768px */
@media screen and (max-width: 768px) {
  .map-section h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
  }
}

/* Responsive: 480px */
@media screen and (max-width: 480px) {
  .map-section h2 {
    font-size: 1.3rem;
  }

  .map-container {
    height: 250px;
  }
}
/* map section ended */

/* footer section started */
.footer {
  background-color: #333;
  color: #f3f3f3;
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  gap: 10px;
}

.footer-section {
  flex: 1 1 290px;
  min-width: 290px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-section p,
.footer-section a,
.footer-section li {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 3px;
}

.footer-section a:hover {
  color: #fff;
}

.nav-links ul {
  list-style: none;
  padding: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}

.social-icon img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
  font-size: 0.9rem;
}

.rights,
.powered {
  margin: 4px 0;
}

/* Bike Heading with Icon */
.bike-heading {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  color: #ffa500;
  margin-bottom: 10px;
}

.bike-icon {
  width: 28px;
  height: 28px;
}

/* Fix last element spacing */
.footer-section p:last-child,
.footer-bottom p:last-child {
  margin-bottom: 0 !important;
}

/* Responsive: Tablets ≤ 1024px */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 15px;
    gap: 20px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section a,
  .footer-section li {
    font-size: 0.9rem;
  }

  .bike-heading {
    font-size: 1.3rem;
  }

  .social-icon img {
    width: 30px;
    height: 30px;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}

/* Responsive: Tablets & below ≤ 768px */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 16px;
  }

  .bike-heading {
    justify-content: center;
  }
}

/* ✅ Responsive: Mobile ≤ 480px — Clean gap fix */
@media (max-width: 480px) {
  .footer {
    padding: 10px 10px;
  }

  .footer-container {
    gap: 12px;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 2px;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .footer-section p,
  .footer-section a,
  .footer-section li {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .bike-heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .bike-icon {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 8px;
    padding-top: 8px;
  }

  .footer-bottom p {
    margin: 2px 0;
  }

  .social-icon img {
    width: 28px;
    height: 28px;
  }

  /* Clean all inner gaps if any */
  .footer * {
    box-sizing: border-box;
  }
}

/* footer section ended */
.whatsapp-btn {
  position: fixed; /* Makes the button fixed on the page */
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px; /* Distance from the right of the page */
  z-index: 1000; /* Ensures it appears above other content */
  width: 60px; /* Button size */
  height: 60px;
  background-color: #25d366; /* WhatsApp green color */
  border-radius: 50%; /* Makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
  width: 35px; /* Icon size */
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 50px; /* Button size */
    height: 50px;
  }
  .whatsapp-btn img {
    width: 30px; /* Icon size */
    height: 30px;
  }
}
.uppercase-text {
  text-transform: uppercase;
}

/* Hide Google Translate Branding Completely */
.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Hide Google Translate banner */
.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

@media (max-width: 1024px) {
  .language-dropdown {
    top: -120px;
    right: 0;
    bottom: 0;
    left: 120px;
  }
}
@media (max-width: 480px) {
  .nav-list.active {
    align-items: flex-start;
  }

  .translate-btn {
    margin-left: 20px;
  }

  .nav-list a {
    margin-left: 20px;
  }

  .language-dropdown {
    top: -100px;
    right: 0;
    bottom: 0;
    left: 120px;
  }
}


