/* Add full CSS content here

  background: linear-gradient(90deg, #5de0e6, #004aad);
 #131742
background: linear-gradient(135deg, #e399ff, #6e1bff);

   background: linear-gradient(to right, #0d1caf, #000c86);

 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif, "Poppins", "Open Sans";
  line-height: 1.6;
  color: #333;
  border-radius: 2px;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.legal-bar {
  display: none;
}

.mobile-media-toogle {
  display: none;
}

h4 {
  text-align: center;
  color: #004aad;
  font-weight: 600;
  width: 250px;

  font-size: 16px;
}

/* Form styling (kept as is) */

.footer-contact-box input,
.footer-contact-box textarea,
.footer-contact-box button {
  font-size: 14px;
}

/* Make the button background white and remove borders */
#whatsapp-btn {
  border: none;
  border-radius: 50%; /* circular button */
  padding: 5px; /* space around icon */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* Force icon color to WhatsApp green */
#whatsapp-btn .fab.fa-whatsapp {
  color: #fff !important; /* WhatsApp green */
  font-size: 20px;
}

a:-webkit-any-link {
  text-decoration: none;
}

body.no-scroll {
  overflow: hidden;
}
.header-wrapper {
  width: 100%;
  background: limegreen;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 10005;

  border-bottom: 2px solid #fff;
}

#form-response {
  margin: 10px;
}

.jze-dashboard-header {
  justify-content: space-between; /* pushes them apart */
  gap: 20px; /* optional spacing */
  position: static;
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.jze-dashboard-header h1,
.jze-dashboard-header p {
  margin: 0; /* remove default margins so spacing is clean */
  gap: 20px;
}

.mobile-menu {
  position: fixed;
  top: 116px;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  width: 100%;

  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 80px; /* leaves room above sticky bar */
  overflow-y: auto;
  background: linear-gradient(90deg, #1a0556, #004aad);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;

  z-index: 8888;
  border: 1px solid #fff;
}

.login-header {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.input-group {
  position: relative;
  width: 100%;
  margin: 10px 0;
}
.login-input {
  width: 100%;
  padding: 12px 40px 12px 12px; /* space for icon */
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}
.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 16px;
}
.login-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  font-size: 14px;
}
.login-options input {
  margin-right: 8px;
}

.login-links {
  margin-top: 15px;
  font-size: 14px;
}
.login-links a {
  color: #1ebdf7;
  text-decoration: none;
}
.login-links a:hover {
  text-decoration: underline;
}

/* Close button */
.close-btn-login-unique {
  color: #fff;
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}
.close-btn-login-unique:hover {
  color: #00e0d6;
}

/* Login container */
.login-container-unique h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Inputs with icons */
.input-group-unique {
  position: relative;
  margin: 10px 0;
  width: 100%;
}
.login-input-unique {
  width: 100%;
  padding: 6px 40px 6px 15px; /* space for icons */
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  color: #000;
}
.input-icon-unique {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a0556;
  font-size: 16px;
}

/* Eye icon (right side toggle) */
.toggle-password-unique {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 16px;
  cursor: pointer;
}

/* Remember Me */
.login-options-unique {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  margin: 10px 0;
  font-size: 14px;
}
.login-options-unique input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.login-options-unique label {
  cursor: pointer;
}

/* Login button */
.login-btn-unique {
  width: auto;
  padding: 4px 10px;
  background: #00bcd4;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
  transition: background 0.3s ease;
  display: block;
}
.login-btn-unique:hover {
  background: #149dd1;
}

/* Links */
.login-links-unique {
  margin-top: 15px;
  font-size: 14px;
}
.login-links-unique a {
  color: #1ebdf7;
  text-decoration: none;
}
.login-links-unique a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Register page*/

/* Container */
.register-container-unique {
  background: #1a0556;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 420px;
  margin: auto;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  border: 5px solid #fff;
}

/* Header */
.register-header-unique {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

/* Input group */
.input-group-register-unique {
  position: relative;
  margin: 15px 0;
  width: 100%;
}

.register-input-unique {
  width: 100%;
  padding: 12px 40px 12px 12px; /* space for icon */
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

/* Icons inside inputs */
.input-icon-register-unique,
.toggle-password-register-unique {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #555;
  cursor: pointer;
}

/* Button */
.register-btn-unique {
  width: 100%;
  padding: 12px;
  background: #00bcd4;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}
.register-btn-unique:hover {
  background: #149dd1;
}

/* Links */
.register-links-unique {
  margin-top: 15px;
  font-size: 14px;
}
.register-links-unique a {
  color: #1ebdf7;
  text-decoration: none;
}
.register-links-unique a:hover {
  text-decoration: underline;
}

.tos-link {
  margin-top: 20px;
  font-size: 13px;
  color: #bfc5e8;
}
.tos-link a {
  color: #aaadbe;
  text-decoration: underline;
}

.tos-link a:hover {
  color: #00bcd4;
}

/* Input fields text color */
.register-input-unique {
  color: #666; /* text color inside input */
  background-color: #fff; /* optional: white background for better contrast */
  width: 100%;
  padding: 12px 40px 12px 12px; /* space for icon */
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

/* Hidden by default */
#modal-login-unique {
  display: flex; /* âœ… start hidden */
  position: fixed;
  inset: 0;
  background: #eff4f3;
  justify-content: center;
  align-items: center;
  z-index: 15000;
}

/* Show when active */
#modal-login-unique.active {
  display: flex; /* âœ… only show when active */
}

.modal-login-content-unique {
  background-color: #1a0556;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 5px solid #fff;
}

.logo-login {
  background-image: url("/images/logo-white.webp");
  background-repeat: no-repeat;
  background-size: contain;
  /* or 'cover' depending on your layout */
  background-position: center;
  width: 130px;
  height: 95px;
  display: block;
  margin: 1px auto 0 auto;
}

.horizontal-line {
  width: 100%; /* line thickness */
  height: 2px; /* line height */
  background-color: #fff; /* line color */
  margin: 25px auto; /* horizontal spacing */
}

/* Responsive */
@media (max-width: 500px) {
  .register-container-unique {
    width: 90%;
  }
}

.main-wrapper {
  max-width: 1300px;
  margin: 2px auto 0 auto;
  background-color: #fff;
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

.wrapper-service {
  max-width: 1300px;
  margin: 120px auto 0 auto;
  background-color: #fff;
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
}

section.hero {
  padding: 0;
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto; /* maintain aspect ratio */
  height: 100%; /* fill hero height */
  min-width: 100%; /* ensure full coverage horizontally */
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-mobile-nav {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 0;
  top: 0;
  left: 0;
  border-radius: 8px;
  margin: 5% 15% 35% 0%;
  display: flex; /* enable flexbox */
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  text-align: center; /* optional, for text */
}

.hero-video {
  position: relative;

  max-width: 1300px;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  padding: 0;
  filter: brightness(90%);
  margin: 120px auto;
}

.hero-video-mobile-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  padding: 0;
  filter: brightness(80%);
}
/*
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 80%;
      background: rgba(0, 0, 0, 0.5); 
      z-index: 1;
    }
*/

.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
  top: -50%;
  transform: translateY(-50%);
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin: 2px auto 20px auto;
  max-width: 500px;
  height: auto;
  background-color: #00e0d6;
}

.btn-primary-buy {
  display: flex;
  justify-content: center;
  background-color: #b49b57;
}

.overlay-btn {
  display: flex;
  justify-content: center;
}
.overlay-btn-mobile {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, #e399ff, #6e1bff);
  color: #fff;
  height: auto;
  padding: 10px;
  border: none;
  margin: 5px;
  width: auto;
  transition: background-color 0.3s ease;
  border-radius: 5px;

  z-index: 3;
}

.btn-primary:hover {
  color: #fff;
  transform: scale(1.08);
  cursor: pointer;
  background: linear-gradient(90deg, #5de0e6, #004aad);
}

.btn-secondary {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  color: #fff;
  width: 400px;
  height: 45px;
  border: none;
  margin: 5px 55px; /* Removed auto-centering */
  display: block; /* Ensure it's treated as a block */
  text-align: center;
  border-radius: 5px;
  border: 1px solid #004aad;
}

.btn-secondary:hover {
  cursor: pointer;
  transform: scale(1.05);
  background: #00e0d6;
}

.section-service.visible {
  opacity: 1;
  pointer-events: auto;
}
#testimonial {
  margin: 10px auto;
  width: 90%;
  padding-bottom: 25px;
}

.section {
  padding: 0px;
  text-align: center;
  margin: 10px auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
  text-align: center;
  color: #fff;
}

.services,
.gallery,
.choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.services img,
.gallery img,
.choose-grid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(9deg, #5de0e6, #004aad);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
}

.stars {
  color: #facc15;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.more-btn {
  background-color: #e5e7eb;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-start;
}

section h2 {
  text-align: center;
  font-size: 2rem;

  margin: 50px auto 30px 80px;
}

.footer-links a:hover {
  /* color: #b49b57;*/
  color: #00e0d6;
}

footer .social i:hover {
  transform: scale(1.2);

  color: #00e0d6;
}

footer .footer-links li a::before {
  content: ">";
  margin-right: 10px;
  font-size: 12px;
  color: #00e0d6;
}

footer .footer-contact i {
  margin-right: 8px;
}

/* Section wrapper */
.section-industry {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Background image */
.background-image-industry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/15cel.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(80%);
  z-index: 1;
}

/* Dark overlay */
.overlay-section-industry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Content container */
.container-section-industry {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.container-section-industry h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

/* List styling for all screens */
.container-section-industry ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 15px 40px;
  justify-items: center;
  color: #fff;
}

.container-section-industry li {
  font-size: 1.1rem;
  text-align: left; /* align text left */
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 280px;
  transition: all 0.3s ease;
  display: flex; /* flex for icon + text */
  align-items: center; /* vertically center checkmark */
}

.container-section-industry li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Checkmark before each li */
.container-section-industry li::before {
  content: "\2713";
  color: #80deea;
  margin-right: 10px;
  font-weight: bold;
  flex-shrink: 0;
}

.map {
  margin-top: 1rem;
}

iframe {
  width: 100%;
  max-width: 350px;
  height: 200px;
  border: 0;
  border-radius: 10px;
}

/* Mobile menu */

.mobile-menu li a {
  font-size: 16px;
  text-transform: uppercase;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #00e0d6; /* line under each item */
  padding: 12px 6px;
}

.mobile-menu a {
  color: #fff; /* adjust based on your background */
  text-decoration: none;
  display: block;
}
.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);
}

.why-choose {
  padding: 1px 20px;
  margin: 2px auto;
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333;
}

.why-choose .highlight {
  color: #b49b57;
  /* Accent color */
}

.features-list {
  width: 400px;
  margin: 0 55px;

  font-size: 16px;
  line-height: 1.7;
  color: #444444;
  list-style-type: none;
  padding-left: 0;
  font-size: 14px;
  text-align: left;
  gap: 8px;
}

.features-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.features-list li::before {
  content: "✓"; /* proper checkmark */
  margin-right: 8px; /* space between checkmark and text */
  color: green; /* optional: color it */
}

.choose-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Text Section */

.service-text {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.service-text p {
  font-size: 0.9rem;
  color: white;
}

.container-choose-service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1dvh;
  display: flex;
  justify-content: center;
  /* Center the grid block */
  background-color: pink;
}

.choose {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}

/*Section Service */

.section-service {
  padding: 15px;
  max-width: 1300px;
  margin: 56px auto;
  text-align: center;
  font-family: "Raleway", serif;
  font-size: 18px;
  display: block;

  color: #fff;
  z-index: 1001;
  width: 100%;
  background-color: #fff;
}
.wrapper-overlay-mobile-top {
  display: none;
  border-bottom: #fff 1px solid;
}
.section-service h2 {
  font-family: "Raleway", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #082d2d;
}

.section-service p.description {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #082d2d;
  font-size: 18px;
  font-family: "Raleway", Sans-serif;
  text-align: center;
  font-weight: lighter;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.service-card {
  padding: 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: 100%;
  min-width: 190px;
  max-width: 180px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transition: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background: #00e0d6;
  box-shadow: 0 5px 5px #00e0d6;
}

.icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
}

.icon-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  top: 0;
  left: 0;
}

.img-hover {
  opacity: 0;
}

.service-card:hover .img-hover {
  opacity: 1;
}

.service-card:hover .img-default {
  opacity: 0;
}

.service-card p {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 100;
}

.service-card:hover p {
  color: #fff;
}
.why-choose-section h2 {
  text-align: left;
  font-size: 40px;
  text-transform: uppercase;
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: #57d6e2;
  color: #1a237e;
  padding: 15px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  transition: bottom 0.5s ease;
}

#acceptCookies:hover {
  background-color: #006655;
}

#declineCookies:hover {
  background-color: #ef4444;
}

#acceptCookies {
  background-color: #004d40;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

#declineCookies {
  background-color: #a51a10;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  margin-right: 100px;
}

/* Services section hidden by default */

.services-section-services {
  display: none;
}

.callback-form {
  max-width: 80%;
  width: 100%;
  background: linear-gradient(to right, #0d1caf, #000c86);
  margin: 55px auto;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid white;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1 1 200px;
  padding: 8px 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background-color: #fff;
  color: black;
  width: 100%;
  margin: 15px;
}

.form-row input::placeholder {
  color: #696060;
}

.submit-btn {
  margin-top: 15px;
  background-color: #2dd4bf;
  color: #00008b;
  padding: 7px 15px;
  font-size: 16px;
  cursor: pointer;
  width: 25%;
  transition: background 0.3s ease;
  margin: 25px auto;
  border: 1px solid #fff;
  border-radius: 5px;
}

.submit-btn:hover {
  /*  background: linear-gradient(to right, #0d1caf, #000c86);*/

  background-color: #fff;
  color: #275151;
}

.linex {
  display: inline-block;
  border-bottom: 1px solid #fff;
  width: 100%;
}

/* Sticky service bar */
.services-grid-sticky {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0d1caf, #000c86);

  z-index: 1000;
  border-top: 1px solid #2dd4bf;
  padding: 0 1px;
  height: 115px;
}

.service-card-sticky {
  text-align: center;
  padding: 10px 5px;
  color: white;
  font-size: 0.75rem;
  text-decoration: none;
}

.service-card-sticky img {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
}

.service-card-sticky p {
  margin: 0;
  font-size: 16px;
}

.icon-wrapper-sticky .img-hover {
  display: none;
}

.led-main-container-shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.led-header-main {
  text-align: center;
  font-size: 30px;

  margin: 35px auto 35px;
  text-transform: uppercase;
}

.led-flex-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.led-text-info {
  flex: 1 1 45%;
}

.led-text-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.led-highlight-text {
  font-weight: bold;
  color: #d32f2f;
  text-align: center;
}

.led-cta-button {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(to right, #0d1caf, #000c86);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
}

.led-cta-button:hover {
  color: #00e0d6;
}

.led-video-box {
  flex: 1 1 45%;
}

.led-video-frame {
  width: 100%;
  height: 300px;
  border: none;
}

.led-wall-types {
  margin-top: 60px;
  text-align: center;
  max-width: 1200px;
  text-transform: uppercase;
}

.led-header-sub {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 10px;
}

.led-subtext {
  margin-bottom: 30px;
  color: #555;
}

.led-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 10px;
}

.led-card {
  background: #fff;
  color: #082d2d;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid #082d2d;
  border-radius: 5px;
}

.led-card img {
  width: 100%;
  height: 250px;
}

.led-card video {
  width: 100%;
  height: auto;
}

.led-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
  background-color: #03a9f4;
  color: white;
  height: auto;
  padding: 15px;
}

.led-card p {
  font-size: 14px;
  padding: 15px;
  background: linear-gradient(to right, #0d1caf, #000c86);
  color: #00e0d6;
  text-transform: capitalize;
  height: 70px;
}

.led-packages-section {
  margin-top: 60px;
}

.led-package-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.led-package-box {
  border: 1px solid #ccc;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.led-package-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 15px;
}

.led-package-box p {
  margin: 6px 0;
  font-size: 15px;
}

.led-price {
  font-weight: bold;
  color: #1e88e5;
}
.md\:grid-cols-3 {
  padding: 25px;
}
.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  background-color: whitesmoke;
  padding-bottom: 20px;
}

.faq-title {
  font-size: 40px;
  text-transform: uppercase;
  margin: 20px auto 30px;
  text-align: center;
  padding: 15px;
  width: 70%;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 2px 30px;
  width: 700px;
  margin: 10px auto;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: #444;
}

.faq-footer {
  text-align: center;
  margin-top: 50px;
}

.faq-footer p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #000;
  padding: 12px 20px;
  background: white;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.faq-button:hover {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  color: #fff;
}
.section-service {
  margin-bottom: 50px;
}

.container-shop {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.label-sale {
  position: absolute;
  top: 3px;
  left: 5px;
  background-color: #22c55e;
  color: white;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: bold;
}

.content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111827;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  text-align: center; /* centers all child text */
}

.content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
  width: 93%;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00e049;
  text-align: center;
}

.price .old {
  text-decoration: line-through;
  font-size: 1rem;
  color: #e399ff;
  margin-left: 10px;
}
.total-price {
  min-width: 60px;
  text-align: right;
  margin: 15px auto auto 45px;
}
.cta-button {
  color: #fff;
  padding: 6px 14px;

  cursor: pointer;
  font-weight: bold;
  border: #fff 1px solid;
  width: 300px;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  font-size: 16px;

  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
  border-radius: 5px;
  margin: 15px auto;
}

.cta-button:hover {
  background: #00e0d6;
}

.cta {
  text-align: center; /* centers button + price */
}

.accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.accordion.active {
  display: flex;
}

.accordion-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-top: 5px;
}

.main-image-container-shop {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
}

.main-image {
  width: auto;
  height: 230px;

  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.8);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
}

.arrow.left {
  left: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.arrow.right {
  right: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin: 20px auto;
}

.thumbs img {
  width: auto;
  height: 50px;
  max-width: none;
  border-radius: 8px;

  border: 2px solid #e5e7eb; /* teal stroke */

  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.thumbs img:hover {
  transform: scale(1.1);
}

.accordion-description {
  flex: 1;
  font-size: 15px;
  color: #374151;
  margin-left: 10px;
  margin-top: 10px;
}
.accordion-description ul {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* centers the whole list */
  display: table; /* shrink to content */
}

.accordion-description ul li {
  margin: 5px 0;
  text-align: left; /* keeps checkmarks + text aligned nicely */
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 2000; /* Middle layer */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.zoom-modal.active {
  display: flex;
}

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;

  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 1000;
}

.zoom-nav.left {
  left: 20px;
  border-radius: 0 5px 5px 0;
}

.zoom-nav.right {
  right: 20px;
  border-radius: 5px 0 0 5px;
}
/* Inside your existing .zoom-modal section: */
.zoomed {
  transform: scale(2.5);
  transition: transform 0.4s ease;
  cursor: zoom-out;
}

.zoom-modal img {
  max-width: 90%;
  max-height: 80%;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}
.zoom-modal .zoom-close {
  position: absolute;
  top: 95px;
  right: 20px;
  background: transparent;
  color: #00e049;
  font-size: 3rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.modal-content {
  position: absolute;
  top: 1px;
  right: 20px;
  background: transparent;
  color: #00e049;
  font-size: 3rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 10000;
}
.zoom-close {
  position: absolute;
  top: 1px;
  right: 20px;
  background: transparent;
  color: #00e049;
  font-size: 3rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 10000;
}

.zoom-close:hover {
  color: red; /* red-400 */
  transform: scale(1.2);
}

.zoom-modal.active {
  display: flex;
}

.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-content {
  position: relative;
  display: inline-block;
}

.zoom-content img {
  max-width: 90vw;
  max-height: 90vh;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.zoom-in,
.zoom-out {
  position: absolute;
  background: #fff;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.zoom-in {
  top: -50px;
  left: 0;
}

.zoom-out {
  top: -50px;
  left: 50px;
}

.main-image {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image:hover {
  transform: scale(1.15);
  z-index: 2;
}

.cart-qty-select {
  border: 1px solid #ccc;
  border-radius: 0; /* square corners */
  padding: 4px 6px;
  font-size: 0.9rem;
  background: #fff;
  cursor: pointer;
}
.quote-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: -12px;
}

.quote-label {
  font-weight: bold;
  font-size: 0.95rem;
}

.quote-select {
  padding: 6px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 60px;
}

.quote-button:hover {
  background-color: #1d4ed8;
}

.quote-label {
  font-weight: bold;
  font-size: 0.95rem;
}

.quote-input {
  width: 60px;
  padding: 6px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.quote-button {
  background: linear-gradient(to right, #0d1caf, #000c86);
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;

 
}

.quote-button:hover {
  background-color: #1d4ed8;
}

.cart-modal {
  position: fixed;
  top: 0;

  width: 40%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 10px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
}

.cart-modal.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  background-color: #fff;
  color: #000;
}

.cart-header h3 {
  margin: 10px;
  font-size: 1.2rem;
}

.cart-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #374151;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-right: 10px;
}

.cart-close:hover {
  color: #f87171;
  transform: scale(1.2);
}

.cart-body {
  margin-top: 20px;
  flex: 1;
  overflow-y: auto;
  font-size: 0.95rem;
  background-color: #fff;
}

.cart-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  background-color: #fff;
}

.cart-footer {
  border-top: 2px solid #eee;
  padding: 10px;

  background-color: #fff;
}

.cart-top-right {
  padding: 2px;
  text-align: center;
  font-weight: bold;
  font-weight: normal;
}

.cart-container {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%; /* different widths */
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 5px 0 10px 2px;
}

.cart-top-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 25% 75%;
  object-fit: cover;
  text-align: center;
  font-weight: normal;
  font-size: 15px;
}
.thumbs video {
  border: 2px solid #e5e7eb;
  max-width: none;
  cursor: pointer;
  object-fit: cover;
  height: 50px;
  width: 80px;
  border-radius: 8px;
}
.cart-col {
  display: flex;
  padding: 0;
  text-align: left;
  border-radius: 6px;
  font-size: 15px;
  align-items: center; /* vertical center */
  height: 35px;
}

.cart-col img {
  width: 100%;
  height: 55px;
}

.submit-quote {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: linear-gradient(to right, #0d1caf, #000c86);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-quote:hover {
  background-color: #059669;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999998;
  display: none;
}
.cart-overlay.active {
  display: block;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.cart-thumb {
  width: auto;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;

  flex-shrink: 0;
}
.cart-thumb-wrapper {
  width: 100px;
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;
}

.cart-details {
  flex: 1;
  font-size: 0.9rem;
}

.remove-btn {
  background: transparent;
  color: #ef4444;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  transition: transform 0.2s ease, color 0.3s ease;

  justify-content: space-between;
}

.remove-btn:hover {
  transform: scale(0.9);
  color: #dc2626;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);

  justify-content: center;
  align-items: center;
  z-index: 10000; /* Lowest of the three */
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 1000px;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  min-height: 100px;

  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Center text inside */
}

.modal-content p {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
}

.flex-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  max-width: 1200px;
  margin: 20px auto;
  gap: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.column-container {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background: linear-gradient(to right, #0d1caf, #000c86);
}

.column-container h2 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #2dd4bf;
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
}

.image-wrapper {
  position: relative;
  margin-bottom: 20px;
  height: 300px;
}
.image-wrapper video {
  width: auto;
  height: 320px;
  margin: 0 auto;
  transition: transform 0.3s ease;
  border: 1px solid #fff;
  border-radius: 8px;
}

.image-wrapper video:hover {
  transform: scale(1.03);
}
.image-3d {
  width: 90%;
  height: 320px;
  margin: 20px auto;
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-3d:hover {
  transform: scale(1.03);
}

.container-shop-title {
  text-align: center;
  font-size: 30px;
  width: 100%;
  text-transform: uppercase;
}

.accordion-description h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #2563eb;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb; /* Tailwind slate-200 */
}

.cart-item-row:hover {
  background-color: #f9fafb;
  box-shadow: inset 0 -1px 0 #e5e7eb;
}

.floor-gallery-extra {
  background: #131742;
  margin-bottom: 20px;
  padding-bottom: 25px;
}
.floor-gallery-grid-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}
.floor-gallery-item-extra {
  background: #131742;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  border: solid #fff 1px;
  margin-bottom: 15px;
  background-color: #fff;
  cursor: pointer;
}
.floor-gallery-item-extra img,
.floor-gallery-item-extra video {
  width: auto;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

.floor-gallery-item-extra .extra-items:hover {
  color: #004aad; /* cyan hover */
  transform: scale(1.05);
}
.floor-gallery-item-extra img:hover,
.floor-gallery-item-extra video:hover {
  transform: scale(1.05);
}
.extra-items {
  color: #131742;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  display: block;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* === Footer Contact Box === */
.footer-contact-box {
  width: 100%;
  max-width: 360px;
  margin-left: auto; /* align to right side */
  padding: 20px;
  background: #1a0556; /* dark gray background */
  color: #f9fafb;
  border-radius: 10px;
  border: 1px solid #fff;
}

.footer-contact-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2dd4bf; /* teal highlight */
  text-transform: uppercase;
  text-align: center;
}

.footer-contact-info {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #374151;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #000;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: #2dd4bf;
  outline: none;
}

.footer-input-icon {
  position: relative;
}

.footer-input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.footer-input-icon input {
  padding-left: 35px;
}

#footerContactBtn {
  background: #2dd4bf;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  font-weight: 600;
  transition: background 0.3s ease;
}

#footerContactBtn:hover {
  background: #0d9488;
}

footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 20px;

  text-align: center;
  /*  background: linear-gradient(to right, #0d1caf, #000c86);*/

  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
  background-color: #131c81;
}

.footer-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 10px;
}

.btn-quote-nav {
  color: #fff;
  padding: 4px 14px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: bold;
  border: #fff 1px solid;
  width: auto;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  font-size: 16px;
  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
  border-radius: 5px;
  width: 200px;
  margin: 0 auto;
}

/* Left section */
.logo-footer {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;

  display: block;
  width: 150px;
  height: 70px;
  background-image: url("/images/logo-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 5px 0;

  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
}

.footer-contact a:hover {
  color: #00e0d6;
}

.social a {
  color: #eee;
  font-size: 1.4rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social a:hover {
  color: #00e0d6;
}

.footer-left {
  margin-top: 20px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 100px;
  margin: 10px 60px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
}

/* Contact form */
.footer-contact-box {
  max-width: 300px;
  text-align: center;
  margin: 15px auto;

  width: 60%;
}

.footer-contact-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #2dd4bf;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
}

.footer-contact-form button {
  background: #11a5e3;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.footer-contact-form button:hover {
  background: #09587a;
  color: #fff;
}

/* Copyright */
.footer-copyright {
  padding-top: 1px;
  font-size: 0.9rem;
  color: #fff;
}
.footer-links ul li strong {
  margin-left: 15px;
  display: block;
}
.logo-footer {
  display: block;
  margin: 5px auto;

}

#request {
  margin: 5px auto;
  display: block;
  color: #fff;
  padding: 6px 14px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: bold;
  border: #00e049 1px solid;
  width: 50%;
  background: linear-gradient(90deg, #5de0e6, #004aad);
  font-size: 16px;

  font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
  border-radius: 5px;
}

#request:hover {
  background: #00e0d6;
}

#BtnLogin {
  width: 100%;
  padding: 10px 15px;
  border-radius: 6px;
  background: #00bcd4;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.forgot-container {
  text-align: center;
  width: 80%;
  padding: 48px 40px;
  background-color: white;
  border: 1px solid #2d10af;
  border-radius: 20px;
}

.forgot-header {
  align-self: stretch;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: unset;
  text-transform: uppercase;
}

.input-group {
  position: relative;
  width: 100%;
  margin: 10px 0;
}

.forgot-input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #00bcd4;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 16px;
}

.forgot-btn {
  width: 100%;
  padding: 12px;
  background: #00bcd4;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}
.forgot-btn:hover {
  background: #149dd1;
}

.back-link {
  margin-top: 15px;
  font-size: 14px;
}

.back-link a {
  color: #1ebdf7;
  text-decoration: none;
}

.tos-link span {
  text-decoration: underline;
}

.tos-link {
  color: #bfc5e8;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 10px;
}

.tos-link span:hover {
  color: #00008b;
}
.top-bar {
  display: flex;
  justify-content: center; /* center everything, you can use space-between if needed */
  align-items: center;
  gap: 20px; /* space between phone and switcher */
}

.field-error {
  color: red;
  font-size: 1rem;
  margin-top: 4px;
  background-color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-items {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-left {
    margin-right: 0;
  }
  .footer-links ul li strong {
    margin-left: 0;
    color: #00bcd4;
    font-size: 18px;
  }

  /* Login button */
  .login-btn-unique {
    width: auto;
    display: inline-block;
    right: 21px;
    position: absolute;
    top: 18px;
  }
}

/* === Responsive for mobile === */
@media (max-width: 768px) {
  .footer-contact-box {
    width: 100%;
    margin: 20px auto; /* center on small screens */
  }

  .login-btn span {
    display: none;
  }
}

@media (min-width: 769px) {
  .services-grid-sticky {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
  .container-section-industry ul {
    grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .service-card-sticky p {
    font-size: 10px;
  }
}

/* Responsive Styles */

@media (max-width: 768px) {
  .flex-container {
    grid-template-columns: 1fr;
  }
  .modal-login-content-unique {
    width: 90%;
  }
  .thumbs {
    margin: 0;
  }

  .thumbs video {
    width: 70px;
    height: auto;
  }

  .image-wrapper video {
    width: 95%;
    height: auto;
  }
  #sizeDropdown {
    border: 1px solid #ccc;
    width: 110px;
  }
  .cart-container {
    grid-template-columns: 20% 25% 25% 30%; /* different widths */
  }
  .price {
    text-align: center;
    font-size: 20px;
  }
  .cart-top-row {
    grid-template-columns: 15% 85%;
  }

  #declineCookies {
    margin-right: 10px;
  }

  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .hero-overlay h1 {
    position: relative;
  }

  .accordion-description {
    margin-left: 0;
    width: 100%;
  }
  .accordion {
    display: inline-block;
  }

  /* Modal content */
  .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 480px;
    max-height: 100vh;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 11000;
    overflow-y: auto;
  }

  .accordion-description h3 {
    text-align: center !important;
    padding: 0;
    margin: 0 auto;
    display: block;
  }

  .contact-wrapper {
    margin: 0 auto;
  }
  button:hover {
    background-color: #000c86;
  }

  .top-wrapper {
    display: none;
    width: 100%;
    height: 120px;
  }
  .wrapper-overlay-mobile-top {
    display: block;
    margin-top: 160px;
    position: relative;
  }
  .hero-overlay-mobile-top {
    width: 100%;
    margin: auto;
    background: linear-gradient(9deg, #5de0e6, #004aad);
    color: #131742;
    position: relative;
    z-index: 2;
    /*margin-top: -60px;*/
    text-align: center;
    padding: 1px 5px;
  }

  #lang-es {
    margin-left: 2px;
  }

  .content p {
    height: auto;
  }

  .hero-overlay-mobile-top p {
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    width: 75%;
    margin: 1px auto;
  }
  .hero-overlay-mobile-top h1 {
    font-size: 20px;
    font-weight: bolder;
    color: #fff;
    font-family: sans-serif;
    width: 100%;
    padding: 10px 10px 5px 10px;
  }

  .line {
    display: inline-block;
  }
  .hamburger {
    display: flex;
    margin-top: 0;
    /* move it down */
    /* move it to the right (in flex container) */
    margin-right: 30px;
    /* optional: spacing from right edge */
    order: 3;
  }
  nav ul.show {
    transform: translateX(0);
  }

  .menu-wrapper {
    margin: 4px 0 8px 2px;
    background-image: url("/images/logo-white.webp");
    background-repeat: no-repeat;
    background-size: contain;
    /* or 'cover' depending on your layout */
    background-position: center;
    width: 130px;
    height: 75px;
    display: block;
  }
  .mobile-menu ul li:first-child {
    border-top: 1px solid #00e0d6;
  }

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    width: 70%;
    max-width: 300px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav.open {
    transform: translateX(0);
  }
  .hero-overlay-mobile-bottom {
    width: 100%;
    background: linear-gradient(to right, #0d1caf, #000c86);
    padding: 15px;
  }
  .hero-overlay-mobile-bottom p {
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    width: 75%;
    margin: 5px auto;
  }
  .hero-overlay-mobile-bottom h1 {
    font-size: 20px;
    font-weight: bolder;
    color: #2dd4bf;
    font-family: sans-serif;
    width: 95%;
  }

  .hero-overlay {
    display: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    top: 0;
    z-index: 11000;
  }
  .mobile-menu a {
    text-decoration: none;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .contact-buttons {
    display: none;
  }

  .features-list {
    width: 260px;
    margin: 5px auto;
    line-height: normal;
  }

  .quote-btn {
    width: 100%;
    margin: 0 auto;
  }

  .why-choose-section h2 {
    text-align: center;
    font-size: 23px;
    color: #000c86;
  }
  .why-choose-section {
    margin: 5px auto;
    flex-wrap: wrap;
  }

  .why-choose-content,
  .why-choose-image {
    flex: 1 1 100%;
  }

  .why-choose-section {
    margin: 5px auto;
  }

  #testimonial h2 {
    font-size: 1.3rem;
    margin: 1rem auto;
    font-family: "Raleway", "Poppins", "Open Sans", sans-serif;
    text-align: center;
    max-width: 270px;
    color: #000;
  }

  .header-wrapper {
    margin-bottom: 0;
  }

  .hero-video {
    max-height: 300px;
    padding: 0;
    max-width: 350px;
  }
  .hero h1 {
    font-size: 14px;
    margin-top: 1rem;
  }
  .hero p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .btn-secondary {
    margin: 5px auto;
    width: 250px;

    font-size: 18px;

    padding: 5px;
  }

  a.phone-menu {
    margin: 0 auto;
    display: block;

    text-align: center; /* centers inline content inside, like text/icons */
    width: fit-content;
  }
  .why-choose {
    margin: 0px auto;
  }
  .why-choose h2 {
    font-size: 16px;
    margin-bottom: 25px auto;
    font-weight: 700;
    color: #333;
    text-align: center;
  }

  .section h2 {
    margin: 10px auto;
  }

  section h2 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 5px auto;
    padding: 10px;
    color: #fff;
  }

  footer .footer-links li a::before {
    content: "";
  }

  .social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .container-section-industry ul {
    grid-template-columns: 1fr; /* 1 column mobile */
    width: 75%;
  }
  .testimonial-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  .testimonial-card-header .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
  }
  .testimonial {
    text-align: left;
    max-width: 500px;
    /* âœ… reduced width on mobile */
    padding: 5px 30px;
  }
  .testimonial p {
    font-size: 12px;
  }

  .overlay-btn-mobile {
    display: flex;
    justify-content: center;
  }

  .hero-overlay-mobile p {
    font-size: 13px;
    font-style: italic;
    font-weight: bold;
    width: 75%;
    margin: 5px auto;
  }

  .hero-overlay h1 {
    font-size: 18px;
  }
  .hero-overlay p {
    font-size: 13px;
  }
  .btn-primary {
    font-size: 0.95rem;
    padding: 10px;
    width: 250px;
    z-index: 3;
    color: #fff;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    font-weight: bold;
    border: solid #fff 1px;
  }
  .section-service p.description {
    max-width: 300px;
    text-align: center;
  }
  .service-card {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #0d1caf, #000c86);
  }

  .wrapper-service {
    display: none;
    margin: 0;
  }

  .main-wrapper {
    width: 95%;
  }

  section.hero {
    padding: 0;
    margin-top: -220px;
    height: 500px;
  }

  .led-card h3 {
    margin: 0 0 5px;
    font-size: 20px;
    background-color: #0fa2dc;
    color: #fff;
    height: auto;
    width: auto;
    font-weight: 600;
  }

  .text-content p {
    padding: 3px 15px;
    font-size: 16px;
  }

  .jz-privacy-heading,
  .jz-aup-title {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 15px;
  }
  .client-name {
    font-size: 0.95rem;
  }
  .testimonial {
    font-size: 16px;
  }
}

@media (max-width: 1037px) {
  .section-service {
    width: 100%;
    margin: 10px auto;
  }
  .section-service .services-grid .service-card:nth-child(5) .icon-wrapper {
    margin: 0 auto;
  }
}

/*Min Width*/

@media (min-width: 1024px) and (max-width: 1366px) {
  /* Tablet-specific styles */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose {
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .submit-btn {
    min-width: 200px;
  }
  .flex-container {
    flex-direction: column;

    justify-content: center;
    text-align: center;
    padding: 5px;
    width: 100%;

    flex-wrap: nowrap;
  }

  .accordion-description h3 {
    text-align: center;
    width: 92%;
  }
  .cart-thumb-wrapper {
    width: 55px;
  }

  #request {
    margin: 5px auto;

    width: 100%;
  }
  .remove-btn {
    right: 1px;
    position: absolute;
    bottom: 20px;
    font-size: 14px;
  }
  .column {
    width: 100%;
  }

  .modal-content .zoom-close {
    font-size: 2rem;
    top: 2px;
    right: 10px;
  }

  .cart-modal {
    width: 100%;
    background: #fff;
  }

  .zoom-modal .zoom-close {
    top: 115px;
    right: 20px;
  }
  .zoom-nav.right:hover {
    background-color: transparent;
  }
  .led-card img {
    height: 190px;
  }

  .image-3d {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 290px;
    height: 200px;
  }
  .image-wrapper {
    text-align: center;
    width: 100%;
    height: auto;
  }

  .quote-row {
    margin-top: 10px;
    margin-left: 0;
  }

  .container-shop,
  .accordion {
    flex-direction: column;
    margin-top: 0;
    width: 100%;
    padding: 0;
    gap: 0;
  }
  .cta-button {
    width: 90%;
    margin-bottom: 30px;
  }
  .thumbs {
    justify-content: center;
  }
  .led-card-grid {
    padding: 0;
  }
  .accordion-description {
    margin-top: 20px;
  }

  .led-wall-types {
    width: 100%;
  }
  .modal-overlay {
    background: #fff;
    z-index: 11000;
    margin: 0;
  }
  .faq-title {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .main-image {
    height: 180px;
    object-fit: cover;
  }
  .quote-button {
    width: 135px;
    padding: 5px 18px;
    margin-bottom: 0;
  }
  .total-price {
    margin-top: 5px;
    margin-left: 10px;
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .led-flex-content {
    flex-direction: column;
  }

  .led-video-frame {
    height: 200px;
  }
  .led-card-grid {
    grid-template-columns: 1fr;
  }
  .faq-columns {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .faq-footer {
    width: 80%;
    margin: 3px auto;
  }
  .faq-title {
    text-align: center;
  }

  .led-cta-button {
    padding: 12px 24px;

    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
  }
  .led-video-box {
    width: 100%;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    text-align: center;
  }
  .led-header-main {
    width: 95%;
    font-size: 20px;
    font-weight: 600;
  }

  .led-header-sub {
    font-size: 20px;
    font-weight: 600;
  }
  .led-card {
    margin-bottom: 5px;
  }
  .container-shop-title {
    font-size: 14px;
    margin: auto;
    width: 80%;
    font-weight: 600;
  }
}

/* ipads*/
@media (min-width: 815px) and (max-width: 1184px) {
  .why-choose-section {
    flex-wrap: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Center entire footer content */
  .footer-items {
    display: flex;
    justify-content: center; /* Centers all 3 sections */
    align-items: flex-start;
    flex-wrap: wrap; /* Allows wrapping if space is tight */
    gap: 40px; /* Spacing between sections */
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* Each footer column */
  .footer-left,
  .footer-links,
  .footer-contact-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content inside each block */
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    flex: 1 1 500px; /* Allows flexibility for layout */
  }

  /* Make footer links display side by side */
  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li strong {
    display: block;
    margin-bottom: 10px;
  }

  /* Center logo properly */
  .footer-left .logo-footer {
    display: block;
    margin: 0 auto 20px auto;
  }

  /* Center form in contact box */
  .footer-contact-box form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-contact-box {
    max-width: 60%;
  }
}

footer {
  display: flex;
  flex-direction: column; /* Stack vertically (logo + links + form) */
  align-items: center; /* Center horizontally */
  justify-content: center;
  text-align: center;
  width: 100%;

  margin: 15px auto;
}

/* End of style.css */
