/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(103, 2, 255);
  color: white;
  padding: 10px 20px;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  height: 120px;
  margin-right: 30px;
}

.contact-info span {
  margin-left: 20px;
  font-size: 14px;
}

nav {
  background-color: #ff0000;
}

.navbar {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
}

.navbar .active a,
.navbar a:hover {
  background-color: rgb(255, 136, 0);
  color: white;
}

.main-banner video {
  width: 100%;
  height: auto;
  display: block;
}

.side-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  background: #f0f0f0;
}

.banner {
  width: 45%;
  margin: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.banner img {
  width: 100%;
  transition: all 1s ease;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: glaze 4s ease-in-out 2s forwards;
}


.logo-title {
  display: flex;
  align-items: center;
  flex: 1.2;
}

.mid-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 2;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-button {
  background-color: #ff8c00;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

.brand-button i {
  margin-right: 6px;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 25px;
  overflow: hidden;
  height: 40px;
  width: 100%;
  max-width: 400px;
}

.search-bar input {
  border: none;
  padding: 0 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.search-bar button {
  background-color: #ff8c00;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.search-bar button i {
  font-size: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  flex: 1;
}

.banner-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Makes all children equal height */
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.side-banners-left,
.side-banners-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  max-width: 20%;
}

.small-banner {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.small-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.small-banner img:hover {
  transform: scale(1.03);
}

.main-video-banner {
  flex: 2;
  max-width: 60%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.main-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


.banner-grid {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  padding: 10px 20px;
  box-sizing: border-box;
}

.banner-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.banner-side img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.banner-center {
  flex: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-center video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Glaze effect */
.glazed {
  position: relative;
  overflow: hidden;
}

.glazed::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(246, 245, 245, 0.6), transparent);
  transform: skewX(-20deg);
  animation: glaze-move 1.2s ease-in-out forwards;
  animation-delay: 2s;
  animation-fill-mode: forwards; /* 🔥 this makes it persist */
  opacity: 0;
  pointer-events: none;
}


@keyframes glaze-move {
  0% {
    left: -75%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

/* Section Title */
.section-title h2,
.products h2,
.brands-section h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2::before,
.products h2::before,
.brands-section h2::before {
  content: "[";
  color: rgb(88, 5, 241);
  font-size: 32px;
  font-weight: bold;
  margin-right: 10px;
}

.section-title h2::after,
.products h2::after,
.brands-section h2::after {
  content: "]";
  color: #ff8c00;
  font-size: 32px;
  font-weight: bold;
  margin-left: 10px;
}

.section-title {
  text-align: center;
  padding: 40px 20px 20px;
  background-color: white;
}

.section-title p {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}

/* Products Section */
.products {
  padding: 30px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.product-box {
  width: 200px;
  background: white;
  border: 2px solid #ccc;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.product-box:hover {
  transform: translateY(-5px);
  border-color: rgb(88, 5, 241);
  box-shadow: 0 5px 15px #ff8c00;
}

.product-box img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.product-box p {
  margin: 10px 0 0;
  font-weight: bold;
  color: #000000;
}

/* Brands Section */
.brands-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.brand-subtitle {
  font-size: 16px;
  color: #5b5b5b;
  margin-bottom: 40px;
}

.brand-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-card {
  width: 260px;
  background: white;
  border: 2px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: red;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.brand-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}



.view-product {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  background-color: #01df4f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.view-product:hover {
  background-color: #0457bc;
}

.top-strip {
  background-color: #007bff; /* Blue background */
  color: white;
  height: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 750;
}

.scrolling-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 28s linear infinite;
}

@keyframes scroll-text {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 600px) {
  form {
    padding: 20px;
  }
  .quote-form-container h1 {
    font-size: 28px;
  }
}


/* Brands Section */
.brands-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.brand-subtitle {
  font-size: 16px;
  color: #5b5b5b;
  margin-bottom: 40px;
}

.brand-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-card {
  width: 260px;
  background: white;
  border: 2px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: rgb(119, 0, 255);
  box-shadow: 0 5px 15px #ff8c00;
}

.brand-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}



.view-product {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  background-color: #ff8c00;
  color: #6200ff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.view-product:hover {
  background-color: #ff0000;
}

/* Request Quote Button */
.request-quote-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #632bd3;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  z-index: 999;
  overflow: hidden;
  animation: border-glow 4s linear infinite;
  transition: background-color 0.3s, transform 0.3s;
}

.request-quote-button:hover {
  background-color: #ff5500;
  transform: translateY(-2px);
}

@keyframes border-glow {
  0% { box-shadow: 0 0 5px #ff5500; }
  50% { box-shadow: 0 0 20px #ff5500; }
  100% { box-shadow: 0 0 5px #ff5500; }
}

/* Stats Section */
.stats-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.stat-box h2 {
  font-size: 36px;
  margin: 5px 0;
  color: #ff5500;
}

.stat-box p {
  font-size: 16px;
  color: #6f00ff;
  margin: 0;
}

/* Footer */
.footer {
  background-color: #242424;
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-box {
  width: 220px;
  text-align: center;
}

.footer-box i {
  font-size: 30px;
  color: #7433ff;
  margin-bottom: 10px;
}

.footer-box h3 {
  margin-bottom: 10px;
  color: white;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  color: #ccc;
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #7a33ff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
}

.footer-bottom span {
  color: #9233ff;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .product-box,
  .brand-card {
    width: 90%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
  }
}

.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 15px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    border-top: 1px solid #ddd;
    z-index: 1000;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .mobile-menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    height: 60px;
    margin-bottom: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-box {
    width: 100%;
    margin-bottom: 20px;
  }
}



/* Wrap and center the content */
.why-us {
  padding: 4rem 1rem;
  background: #f9f9f9;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #d32b2b; /* your brand red */
}

/* Two‑column layout for desktop */
.why-us-content {
  max-width: 900px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 2.5rem;
  line-height: 1.7;
  color: #333;
}

/* Style paragraphs */
.why-us-content p {
  margin-bottom: 1.5rem;
}

/* Feature list styling */
.why-us-features {
  list-style: disc inside;
  margin: 1rem 0 2rem;
  padding-left: 0;
}

.why-us-features li {
  margin-bottom: 0.75rem;
  break-inside: avoid; /* keep list items intact across columns */
}

/* Make it single‑column on narrow screens */
@media (max-width: 768px) {
  .why-us-content {
    column-count: 1;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 140px;        /* above your quote button */
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;     /* center the icon vertically */
  z-index: 1002;
  box-shadow:
    0 0 8px rgba(37, 211, 102, 0.7),   /* green glow */
    0 2px 6px rgba(0, 0, 0, 0.3);       /* subtle drop shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 12px rgba(37, 211, 102, 0.9),
    0 4px 8px rgba(0, 0, 0, 0.3);
}


@keyframes scroll-text {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 600px) {
  form {
    padding: 20px;
  }
  .quote-form-container h1 {
    font-size: 28px;
  }
}
.brand-points {
  max-width: 1000px;
  margin: 30px auto;
  font-size: 16px;
  padding: 0 20px;
  color: #444; /* Asphalt-like text */
  line-height: 1.8;
}


.banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Gradient overlay */
.banner-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left top, rgba(59, 59, 59, 0.3), rgba(7, 7, 7, 0.7));
  border-radius: 8px;
}

/* Overlay text */
.banner-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
  z-index: 2;
}

.banner-overlay-text h1 {
  margin: 0;
  font-size: 80px;
  font-weight: bold;
}

.banner-overlay-text p {
  margin-top: 8px;
  font-size: 30px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -20px;
  padding: 10px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 3;
  background-color: rgba(56, 55, 55, 0.76);
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.dots-container {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 10px;
  z-index: 3;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: #ff4d00;
}

/* Add to style.css */

.search-bar {
  position: relative;
}

#searchDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 9999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

#searchDropdown li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

#searchDropdown li:hover {
  background-color: #f0f0f0;
}
html {
  scroll-behavior: smooth;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: red;
}

.navbar li a {
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: red;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .topbar,
  .search-bar,
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .mid-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: calc(100% - 60px);
    margin-bottom: 10px;
  }
}

/* Mobile Header Styles */
@media screen and (max-width: 768px) {
  .mobile-contact-strip {
    background-color: #f2f2f2;
    text-align: center;
    font-size: 14px;
    padding: 5px 10px;
  }

  .topbar {
    background-color: #6100e0;
    padding: 10px 0;
    text-align: center;
  }

  .mobile-logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-logo-stack .logo {
    height: 70px;
    margin-bottom: 5px;
  }

  .shop-name h1 {
    font-size: 20px;
    color: white;
    margin: 0;
  }

  .mid-controls {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .search-bar {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    width: 90%;
  }

  .search-bar input {
    flex: 1;
    padding: 8px;
    font-size: 14px;
  }

  .search-bar button {
    background-color: orange;
    border: none;
    padding: 8px 12px;
  }

  .menu-toggle {
    text-align: center;
    font-size: 20px;
    background-color: red;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-toggle::after {
  content: " MENU";
  color: white;
  font-weight: bold;
  margin-left: 5px;
}


  .contact-info {
    display: none;
  }
}

/* Default: hide on PC */
.mobile-contact-strip {
  display: none;
}

/* Show on mobile only */
@media screen and (max-width: 768px) {
  .mobile-contact-strip {
    display: block;
    background-color: #ffffff;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 2px solid #9900ff;
  }

  .mobile-contact-strip span {
    display: block;
    color: #111;
  }
}
/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .topbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
  }

  .logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-title .logo {
    height: 120px; /* Larger logo */
    margin: 1px auto 0px;
  }

  .logo-title h1 {
    font-size: 40px;
    text-align: center;
    margin: 5px 0 2 2;
  }

  .mid-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .brand-button {
    margin-bottom: 10px;
    align-self: center;
  }

  .search-bar {
    width: 80%;
    display: flex;
    justify-content: center;
    padding: 15 10px;
  }

  .search-bar input {
    flex: 2;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 6px;
  }

  .search-bar button {
    padding: 10px;
    border: none;
    background-color: orange;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .contact-info span {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
}



@media (max-width: 768px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Align to the left instead of center */
    font-size: 14px;
    margin-top: 10px;
    padding-left: 0px; /* Optional: adjust spacing from the left */
  }

  .contact-info span {
    margin-bottom: 5px;
  }
}
/* Default (Desktop): show PC layout, hide mobile layout */
.pc-banner {
  display: flex;
}
.mobile-banner {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .pc-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    padding: 10px;
  }

  .mobile-banner .video-container video {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .mobile-banner .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-banner .image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
}



@media (max-width: 768px) {
  .banner-overlay-text {
    bottom: 10px;
    left: 15px;
    right: 15px;
    text-align: left;
    padding: 10px;
  }

  .banner-overlay-text h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .banner-overlay-text p {
    font-size: 16px;
    line-height: 1.4;
  }
}





