/* Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Poppins', sans-serif;
  height: 100%;
}


/* Header */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
  padding: 15px 0;
}
#main-header.scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 100px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
}
.top-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.top-nav a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: color 0.3s;
}
#main-header.scrolled .top-nav a {
  color: #222;
}
#main-header.scrolled .logo-img {

}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  animation: zoomInOut 10s ease-in-out infinite alternate;
  z-index: -2;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.hero-content {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  padding: 30px;
  z-index: 1;
}
.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 1.3rem;
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.about-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}
.about-image-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.about-image-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}
.about-content {
  flex: 2;
  text-align: left;
}
.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* Product Slider Section */
.product-slider-section {
  padding: 50px 20px;
  background-image: url('../images/slider-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.slider-title {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  background-color: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
}
.product-slider {
  overflow: hidden;
  position: relative;
}
.product-track {
  display: flex;
  animation: slide 25s linear infinite;
  width: max-content;
}
.product-card {
  flex: 0 0 auto;
  width: 260px;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  padding: 15px 10px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-card img {
  width: 130px;
  height: 120px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.product-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}
.product-card:hover img {
  filter: grayscale(0%);
}
.product-card:hover {
  transform: scale(1.05);
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f2f2f2, #e6e6e6);
  text-align: center;
}
.testimonial-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  height: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.testimonial-quote {
  font-style: italic;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  transition: color 0.3s;
}
.testimonial-card:hover .testimonial-quote {
  color: #000;
}
.client-name {
  margin-top: 25px;
  font-weight: 600;
  color: #000;
  font-size: 1.1rem;
}

/* Brands Section */
.brands-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.brands-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}
.brands-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.brands-track {
  display: inline-block;
}
.brands-track img {
  height: 60px;
  margin: 0 25px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  vertical-align: middle;
}
.brands-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Footer Styles */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}
.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-column p,
.footer-column ul {
  font-size: 14px;
  line-height: 1.6;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #fff;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
  .hero-content h2 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-content h3 {
    font-size: 1.8rem;
  }
  .about-content p {
    font-size: 1rem;
  }
  .product-card {
    width: 200px;
    height: auto;
  }
  .testimonial-card {
    width: 90%;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    margin: 15px 0;
  }
  .brands-track img {
    margin: 0 15px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .slider-title {
    font-size: 1.6rem;
    padding: 6px 16px;
  }
  .product-card {
    width: 160px;
    padding: 12px;
  }
  .product-card img {
    width: 90px;
    height: 90px;
  }
  .testimonial-title {
    font-size: 2rem;
  }
  .brands-title {
    font-size: 1.6rem;
  }
  .footer-column h3,
  .footer-column h4 {
    font-size: 1.1rem;
  }
  .footer-column p,
  .footer-column ul li {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 10px 0;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}

/* Hamburger Menu */
/* Hamburger base */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 999;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  transition: 0.3s;
}

/* X icon when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .top-nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    gap: 15px;
    width: 200px;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .top-nav ul.active {
    transform: translateX(0);
  }

  .top-nav ul li {
    text-align: right;
  }
}
.about-top-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.about-banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.mission-vision {
  background-color: #f9f9f9;
  padding: 60px 20px;
}
.mv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.mv-box {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 10px;
}
.mv-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}
.team-section {
  padding: 60px 20px;
  text-align: center;
}
.team-section h3 {
  font-size: 28px;
  margin-bottom: 40px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.team-member {
  flex: 1 1 200px;
  max-width: 200px;
}
.team-member img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.team-member h5 {
  margin-top: 15px;
  font-size: 18px;
  color: #222;
}
.team-member p {
  font-size: 14px;
  color: #777;
}
/* Products Section */
.products-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
}

.product-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.product-item h4 {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* SERVICES SECTION */
/* Services Section */
.services-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 48px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #666;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 60px 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background: #0077cc;
  color: white;
  font-size: 16px;
  padding: 15px 20px;
  width: 100%;
  border: none;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #005fa3;
}

.faq-answer {
  padding: 15px 20px;
  background: #f1f1f1;
  display: none;
  border-radius: 0 0 5px 5px;
  font-size: 14px;
  color: #333;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
/* Contact Wrapper */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  gap: 30px;
}

/* Contact Details Box */
.contact-details {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
  margin-bottom: 15px;
  color: #202b38;
}

.contact-details p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Contact Form Box */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #202b38;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  margin-top: 20px;
  padding: 14px;
  background-color: #202b38;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #37475a;
}

/* Map Section */
.map-section {
  width: 100%;
  padding: 20px;
  margin-top: 20px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 15px;
  }

  .contact-details,
  .contact-form {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: #202b38;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}
