* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.main {
  height: 100vh;
  width: 100%;
}
/* Banner Section */
.banner{
  width: 100%;
  height: 800px; /* Fixed height */
  background: url('../images/banner1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Dark Overlay */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Banner Content */
.banner-content {
  position: relative;
  color: white;
  z-index: 1;
}

.banner-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #05375c;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6600;
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner {
      height: 300px;
  }

  .banner-content h1 {
      font-size: 28px;
  }

  .banner-content p {
      font-size: 16px;
  }
}


/*this is a products css*/

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f8f8;
  text-align: center;
  padding: 0;
}

/* Title */
.title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Filter Buttons */
.filter-buttons {
  margin-bottom: 20px;
}

.filter-btn {
  background: #444;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: #ff6600;
}

/* Product Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Product Card */
.product-card {
  width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: contain;
}

.product-card h2 {
  font-size: 18px;
  margin: 10px 0;
  text-transform: uppercase;
}

.product-card p {
  font-size: 14px;
  color: #555;
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #ff6600;
  font-size: 18px;
}

/* Hover Animation */
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}
.faq-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;
}
.faq-question {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.faq-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-answer {
  font-size: 16px;
  color: #444;
  display: none;
  overflow: hidden;
  padding: 10px 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-container {
      width: 90%;
      padding: 15px;
  }

  .faq-question {
      font-size: 16px;
  }

  .faq-answer {
      font-size: 14px;
  }
}

/* Slider Container */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to right, #edf0f0, #a49dad, #7a7f77);
  padding: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Slider Track (Wider for Continuous Scrolling) */
.slider {
  display: flex;
  width: 100%;
}

.slider-track {
  display: flex;
  width: calc(150px * 14); /* Adjusted for smooth scrolling */
  animation: continuousScroll 15s linear infinite;
}

/* Logo Style */
.logo-banner {
  width: 150px;
  margin: 0 15px;
}

.logo-banner img {
  width: 100%;
  height: auto;
  filter: grayscale(50%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.logo-banner:hover img {
  transform: scale(1.3);
  filter: grayscale(0%);
}

/* Continuous Scrolling Animation */
@keyframes continuousScroll {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-50%);
  }
}

/* Footer Main Section */
.footer {
  background: url('../images/map.png') no-repeat center center; 
  background-size: cover;
  padding: 10px 10%;
  text-align: center;
  position: relative;
  color: white;
  margin-top: 20px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}

.footer * {
  position: relative;
  z-index: 2;
}

.footer h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
}

.locations {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.location-box {
  padding: 7px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  text-align: left;
  margin-left: 5px;
}

.location-box iframe {
      width: 100%;
      height: 200px;
      border-radius: 40px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
.location-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.location-box a {
  font-size: 14px;
  font-weight: 300;
}
.location-box p {
  font-size: 14px;
  margin-bottom: 10px;
}

.location-box a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.location-box a:hover {
  color: #ff6600;
}

/* Social Community Section */
.social-community {
  padding: 20px;
  margin-top: 20px;
}

.social-community h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social-icons a i {
  margin-right: 8px;
}

.footer-social-icons a:hover {
  background: #ff6600;
  color: black;
}

/* Bottom Footer */
.bottom-footer {
  background: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #bbb;
}

.bottom-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.bottom-footer a:hover {
  color: #ff6600;
}