   /* ----- RESET / BASE (exact wix color_11=#00060f, color_12=#242834, color_42=#e43036, etc.) ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #00060f;      /* color_11 */
      color: #ffffff;                 /* color_15 */
      font-family: 'Proxima Nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* rich text / headings */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .font-jockey { font-family: 'Jockey One', sans-serif; }

    /* --- utility classes (wix style helpers) --- */
    .max-width-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .max-width-container1{
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* --- animations exactly as in wix (motion-floatIn, motion-slideIn, motion-revealIn) --- */
    @keyframes floatIn {
      0% { opacity: 0; transform: translateX(-120px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInVertical {
      0% { opacity: 0; transform: translateY(-100%); clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); }
      100% { opacity: 1; transform: translateY(0); clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    }
    @keyframes revealIn {
      0% { clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); }
      100% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    }
    @keyframes fadeIn {
      0% { opacity: 0; } 100% { opacity: 1; }
    }
    /* applied classes (will be set via JS intersection observer) */
    .anim-floatIn { animation: floatIn 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards; }
    .anim-slideIn { animation: slideInVertical 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards; }
    .anim-revealIn { animation: revealIn 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards; }
    .anim-fadeIn { animation: fadeIn 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards; }

    /* default hidden state for observed elements */
    .js-anim {
      opacity: 0;
      transform: translateX(0); /* reserve space */
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); /* override later */
    }
    .js-anim.anim-floatIn, .js-anim.anim-slideIn, .js-anim.anim-revealIn, .js-anim.anim-fadeIn {
      opacity: 1;
    }

    /* --- header (sticky, transparent with blur) --- */
.site-header {
     /* make it float over hero */
  width: 100%;
  z-index: 9999;          /* higher than slider */
  background: transparent;
  padding: 20px 0;
}
   header {
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
    
    /* Logo image styling */
    /* Logo group - horizontal layout */
    .logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;  /* Explicitly set to row */
    }
 /* DROPDOWN MENU STYLES - VERTICAL FIX */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Hide dropdown menu by default */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #000000;
  min-width: 240px;
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  list-style: none;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
 
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu items - FORCE VERTICAL */
.dropdown-menu li {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.dropdown-menu a {
  display: block !important;
  width: 100%;
  padding: 12px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-left: 3px solid transparent;
  text-align: left;
  box-sizing: border-box;
}

.dropdown-menu a:hover {
  background: rgba(228, 48, 54, 0.15);
  color: #e43036;
  border-left-color: #e43036;
  padding-left: 30px;
}

/* Small arrow on top of dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #000000;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}

/* Add a small gap to prevent hover issues */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}


/* For mobile responsiveness */
@media (max-width: 800px) {
  .dropdown {
    position: relative;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none !important;
    box-shadow: none;
    background: #1a1f2b;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    border-radius: 8px;
    transition: none;
  }
  
  .dropdown:hover .dropdown-menu {
    
    visibility: visible;
    transform: none;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown::after {
    display: none;
  }
  
  .dropdown-menu a {
    padding: 10px 35px;
    font-size: 14px;
  }
  
  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }
}
    /* Logo image styling */
    .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    }

    .logo-badge {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    transition: transform 0.4s ease-in-out;
    flex-shrink: 0;  /* Prevents logo from shrinking */
    }

    .logo-badge:hover { 
    transform: scale(1.5); 
    }

    /* Logo text container - ensure it doesn't wrap */
    .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;  /* Prevents text from wrapping */
    }

    .logo-text h3 {
    font-size: 24px;
    font-family: 'Jockey One', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
    color: #ffffff;
    }

    .logo-text p {
    font-size: 14px;
    font-weight: 700;
    color: #e43036;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    }
    .main-nav {
        background-color: #000000;   /* black pill */
        padding: 8px 25px;
        border-radius: 50px;         /* fully rounded */
        }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}
    .main-nav a {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .main-nav a:hover { color: #ed8f93; } /* color_44 */
    .btn-quote {
      background: #e43036;
      border: none;
      color: white;
      font-weight: 600;
      font-size: 16px;
      padding: 12px 30px;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .btn-quote:hover { background: #ffffff; color: #00060f; }
    
  /* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
    /* --- hero section (video overlay simulation) --- */
  .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  font-size: 80px;
  line-height: 1.1;
}
    /* HERO SLIDER STYLES - Add after existing hero styles */
.hero-slider {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  padding: 0;
  background-color: #00060f;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;  /* Keep this lower than header's 1000 */
}

.slider-image.active {
  opacity: 1;
  z-index: 2;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 3;
  pointer-events: none;
}

.slider-content {
  position: relative;
  z-index: 999;
  /* Keep your existing hero-content styles */
}

/* Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #e43036;
  transform: scale(1.2);
  border-color: rgba(255,255,255,0.5);
}

.dot:hover {
  background: #ffffff;
}

/* Arrow Navigation (optional) */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  opacity: 0.7;
}

.slider-arrow:hover {
  background: rgba(228,48,54,0.8);
  opacity: 1;
  border-color: #e43036;
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
  
  .slider-dots {
    bottom: 20px;
  }
}
    .hero-bg-video {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.7;
      pointer-events: none;
      background: radial-gradient(circle at 30% 50%, #242834, #00060f);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: left;
    }

    .hero-content h1 {
      font-size: 80px;
      line-height: 1;
      margin-bottom: 20px;
    }

    @media (max-width: 1200px) {
      .hero-content h1 { font-size: 60px; }
    }

    @media (max-width: 768px) {
      .hero-content {
        text-align: center;
      }
      .hero-content h1 { font-size: 42px; }
      .hero-content p { font-size: 18px; }
      .hero-btns {
        justify-content: center;
      }
    }
    .hero-content p {
      font-size: 24px;
      margin-bottom: 30px;
      font-family: 'Proxima Nova', sans-serif;
      opacity: 0;
    }
    .hero-btns {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
    }
    .btn-primary {
      background: #e43036;
      border: none;
      border-radius: 100px;
      padding: 15px 40px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-primary:hover { background: #ffffff; color: #00060f; }
    .btn-outline {
      background: #242834;
      border: none;
      border-radius: 100px;
      padding: 15px 40px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-outline:hover { background: #3a6afd; }

    /* --- feature badges row (exact wix columns with colored left lines) --- */
    .badges-row {
      display: flex;
      background-color: #242834; /* color_12 */
      border-radius: 8px;
      margin-top: -50px;
      position: relative;
      z-index: 10;
    }
    .badge-item {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 30px 20px;
    
    }
    .badge-item:first-child { border-left: none; }
    .badge-color-line {
      width: 8px;
      height: 100px;
      background: #e43036;
      border-radius: 10px;
    }
    .badge-item:nth-child(2) .badge-color-line { background: #00060f; }   /* HFO */
    .badge-item:nth-child(3) .badge-color-line { background: #e43036; } /* Ovit */
    .badge-item:nth-child(4) .badge-color-line { background: #00060f; } /* Maintenance */
    .badge-text { font-weight: 600; max-width: 200px; }

    /* section titles (white boxes with bottom round) */
    .section-title-box {
      background: #ffffff;
      color: #00060f;
      display: inline-block;
      padding: 12px 90px;
      border-radius: 0 0 10px 10px;
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 40px;
    }

    /* --- what we offer (with image) --- */
    .offer-grid {
      display: flex;
      gap: 50px;
      align-items: center;
    }
    .offer-content { flex: 1; }
    .offer-content p { font-size: 18px; color: #e8e6e6; margin: 30px 0; }
    .offer-image {
      flex: 1;
      text-align: right;
    }
    .offer-image img { max-width: 100%; border-radius: 10px; }
@media (max-width: 992px) {

  .badges-row {
    flex-direction: column;
    margin-top: 0;
  }

  .badge-item {
    justify-content: center;
    text-align: center;
  }

  .badge-color-line {
    height: 60px;
  }

  .badge-text {
    max-width: 100%;
  }
}
@media (max-width: 600px) {

  .badge-item {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .badge-color-line {
    width: 50px;
    height: 6px;
  }
}
    /* --- categories grid (exact 3 columns) --- */
   .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    @media (max-width: 992px) {
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .categories-grid {
        grid-template-columns: 1fr;
      }
    }
    .category-card {
      color: #00060f;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.4s;
    }
    .category-card:hover { transform: scale(1.02); }
    .category-card img { width: 100%; height: 170px; object-fit: contain; }
    .category-card h3 { margin: 15px 0 5px; font-size: 18px; }

    /* --- why choose us (icon grid) --- */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 60px;
      margin-top: 80px;
    }

    @media (max-width: 992px) {
      .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    .why-item {
      display: flex;
      gap: 50px;
    }
  /* PREMIUM WHY CHOOSE US ICON STYLE */

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-icon {
  min-width: 65px;
  height: 65px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s ease;
}

.why-icon svg {
  width: 60px;
  height: 60px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
}

/* hover effect like reference */
.why-item:hover .why-icon {
  transform: translateY(-5px);
  border-color: #e43036;
  background: rgba(228,48,54,0.1);
}
.power-sections-bg {
  background: 
    
    url('background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* WHY CHOOSE US BACKGROUND */
.why-bg {
  position: relative;
  padding: 80px 0;
  background: 
    linear-gradient(rgba(0, 6, 15, 0.75), rgba(0, 6, 15, 0.75)),
    url('whychooseus.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* CLIENT SCROLLING STRIP */
.clients-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.clients-track {
  display: flex;
  width: fit-content;
  animation: scrollClients 20s linear infinite;
}

.clients-track img {
  width: 100vw;   /* full screen width */
  flex-shrink: 0;
}
.why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  color: #c7c7c7;
  font-size: 14px;
}

/* Animation */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}
    /* --- after sales --- */
    .aftersales-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .aftersales-content h2 { font-size: 40px; margin-bottom: 30px; }
    .aftersales-content p { color: #c7c7c7; margin-bottom: 20px; }

    /* --- clients strip --- */
    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
    }
    .client-logo {
      background: #e8e6e6;
      width: 140px;
      height: 100px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00060f;
      font-weight: 700;
    }

    /* --- footer (exact wix columns) --- */
    .footer-main {
      background: #242834;
      padding: 60px 0 20px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 3fr 1.5fr 1.5fr;
      gap: 40px;
    }
    .footer-col h4 { font-size: 14px; margin-bottom: 20px; color: #ffffff; }
    .footer-col p, .footer-col a { color: #c7c7c7; text-decoration: none; line-height: 2; }
    .footer-col a:hover { color: #ffffff; }
    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0 10px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 15px 20px;
      border-radius: 100px;
      border: 1px solid #c7c7c7;
      background: #242834;
      color: #fff;
    }
    .newsletter-form button {
      background: #3a6afd;
      border: none;
      border-radius: 100px;
      padding: 15px 30px;
      color: white;
      font-weight: 600;
      cursor: pointer;
    }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #3a3f4e;
      margin-top: 40px;
      padding-top: 20px;
      color: #8a8f9e;
    }

    /* chat button (fixed) */
    .chat-fixed {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 94px;
      height: 94px;
      background: #e43036;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
      cursor: pointer;
      z-index: 200;
      transition: 0.2s;
    }
    .chat-fixed:hover { transform: scale(1.05); }

    @media (max-width: 1200px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
      }
    }
    @media (max-width: 992px) {
  .header-row {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .btn-quote {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #00060f;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .btn-quote {
    display: none; /* optional for cleaner mobile */
  }
}
@media (max-width: 768px) {

  .hero {
    padding: 120px 20px 60px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 992px) {

  .dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    display: none !important;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu.show {
    display: block !important;
  }

}
.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}