/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #020202;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 0.5em 1em;
}

.contact-info {
    text-align: center;
    font-size: 0.9em;
}

/* Default navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}

.navbar .logo img {
  width: 180px;
  padding: 10px;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  color: #ffa500;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  color: #ffa500;
  cursor: pointer;
}

/* Close button (X) */
.close-btn {
  display: none;
  font-size: 30px;
  color: #ffa500;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #d4d0d0;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 20px 0;
  }

  .menu li {
      margin: 10px 0;
      text-align: center;
  }

  .hamburger {
      display: block;
  }

  /* Show the menu when the hamburger is clicked */
  .menu.active {
      display: flex;
  }

  /* Show close button when the menu is open */
  .close-btn.active {
      display: block;
  }
}

/* Hero section */
.hero {
    text-align: center;
    height: 100vh;
    background-image: url('img/hero.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffa500;
}

.hero h1 {
    font-size: 3.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero .buttons {
    margin-top: 1.5em;
    display: flex;
    gap: 1em;
    justify-content: center;
}

.hero button {
    padding: 0.8em 2em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.hero button.primary {
    background-color: #ffa500;
    color: #fff;
}

.hero button.secondary {
    background-color: #fff;
    color: #ffa500;
    border: 2px solid #ffa500;
}

/* About Section Styles */
.about {
    padding: 4em 2em;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  align-items: center; /* Centers content horizontally */
  text-align: center; /* Centers text */
}

.about-image img {
  width: 100%; /* Adjust based on your image size preference */
  max-width: 500px; /* Optional: Adjust maximum width */
  height: auto;
  margin-bottom: 20px; /* Adds space between the image and text */
}


.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
}

.about-text h2 {
    font-size: 2em;
    color: #ffa500;
    margin-bottom: 1em;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Proudly Sponsored Section Styles */
.sponsored {
    padding: 2em;
    background-color: #f9f9f9;
    text-align: center;
}

.sponsored h2 {
    font-size: 2em;
    color: #ffa500;
    margin-bottom: 1em;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 2em;
    animation: slide 10s linear infinite;
}

.logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

#why-choose-us {
    padding: 50px 10px;
    text-align: center;
    background-color: #f4f4f4;
  }
  
  #why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffa500;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .feature {
    width: 22%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 15px;
  }
  
  .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
  }
  
  .feature p {
    color: #000000;
  }
  
  .feature:hover {
    transform: translateY(-10px);
  }
  
  /* Responsive design */
  @media screen and (max-width: 768px) {
    .feature {
      width: 45%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .feature {
      width: 100%;
    }
  }

  /* Request a Callback Section */
#request-callback {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    color: #000000;
  }
  
  #request-callback h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #request-callback form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  #request-callback input,
  #request-callback textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  #request-callback button {
    background-color: #ffa500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  #request-callback button:hover {
    background-color: #ffa500;
  }
  
  /* Footer Section */
  footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-logo img {
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .footer-links {
    flex: 1;
    padding: 10px;
  }
  
  .footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .footer-links a:hover {
    color: #ffa500;
  }
  
  .footer-social {
    flex: 1;
    padding: 10px;
  }
  
  .footer-social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
  }
  
  .footer-social a:hover {
    color: #ffa500;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-links, .footer-social {
      text-align: center;
      margin-bottom: 20px;
    }
  }

  /* Floating WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

.whatsapp-text p {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}

.chat-now {
  background-color: #075E54;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chat-now:hover {
  background-color: #128C7E;
}

/* Showroom Section Styling */
.showroom-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .showroom-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .showroom-logo {
    margin-bottom: 30px;
  }
  
  .showroom-logo .logo {
    max-width: 250px; /* Adjust logo size */
    display: block;
    margin: 0 auto;
  }
  
  .showroom-btn {
    background-color: #ffa500;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .showroom-btn:hover {
    background-color: #ffa500;
  }
  
  