 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f5f7fa;
      scroll-behavior: smooth;
    }
    header {
      background: #fff;
      padding: 1rem 5rem;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      animation: fadeInDown 1s ease-in-out;
    }
    header .logo {
      font-weight: bold;
      font-size: 1.2rem;
    }
       nav {
      display: flex;
      gap: 2rem;
    }
    nav a {
      position: relative;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding-bottom: 5px;
    }
    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 3px;
      background: gold;
      transition: width 0.3s;
    }
    nav a:hover::after,
    nav a.active::after {
      width: 100%;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px 0;
    }
    .owl-carousel .item img { width: 100%; height: 90vh; object-fit: cover; }
    /* Custom nav arrows */
    .owl-nav button {
      position: absolute;
      top: 50%;
      /* transform: translateY(-50%); */
      /* background: rgba(0,0,0,0.5) !important; */
      border-radius: 50%;
      padding: 10px !important;
      color: #fab914 !important;
      font-size: 24px !important;
    }
    .owl-nav .owl-prev { left: 15px; }
    .owl-nav .owl-next { right: 15px; }
    .owl-nav button:hover { background: transparent !important; color: #ffca2c !important; }
    /* Dots to right side */
    .owl-dots {
      position: absolute;
      right: 15px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .owl-dots .owl-dot span {
      width: 12px;
      height: 12px;
      background: rgba(255,255,255,0.7);
      display: block;
      border-radius: 50%;
    }
    .owl-dots .owl-dot.active span { background: #fab914 !important; }
    /* Left aligned captions */
    .carousel-caption {
      top: 25%!important;
      left: 5%!important;
      right: auto!important;
      text-align: left!important;
      max-width: 500px!important;
    }
    .carousel-caption .btn {
      margin-top: 15px;
    }
    @media(max-width: 991px) {
      nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1001;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
      header {
        padding: 1rem 1.5rem;
      }
      .carousel-caption {
        top: 10%!important;
        left: 3%!important;
        max-width: 90vw!important;
        font-size: 1rem;
      }
      .who-cards {
        flex-direction: column;
        gap: 1.5rem;
      }
      .product-img img {
        width: 120px;
        height: auto;
        padding: 0.5rem;
      }
      .product-card {
        margin-bottom: 1.5rem;
      }
      .intro-text {
        position: static;
        transform: none;
        color: #222;
        background: #fff8;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
      }
      .intro-section img {
        height: 200px;
        object-fit: cover;
      }
      .footer-modern .row > div {
        margin-bottom: 1.5rem;
      }
    }

    @media (max-width: 600px) {
      section, .product-section, .services-section {
        padding: 2rem 0.5rem !important;
      }
      .carousel-caption h1 {
        font-size: 1.2rem;
      }
      .carousel-caption p {
        font-size: 0.9rem;
      }
      .footer-modern {
        padding: 2rem 0.5rem !important;
      }
      .footer-modern img {
        width: 120px !important;
      }
      .who-we-are h2, .services-section h2 {
        font-size: 1.3rem;
      }
      .who-card h3 {
        font-size: 1rem;
      }
      .product-content h5 {
        font-size: 1rem;
      }
      .product-content p {
        font-size: 0.9rem;
      }
      .service-icon i {
        font-size: 1.3rem;
      }
      .service-icon p {
        font-size: 0.9rem;
      }
      .services-quote {
        font-size: 0.95rem;
      }
    }
    section {
      padding: 5rem 2rem;
      animation: fadeInUp 1s ease-in-out;
    }
    .hero {
      background: url('Links/shutterstock_1513002884\ copy.jpg') no-repeat center/cover;
      color: #fff;
      text-align: center;
      padding: 6rem 2rem;
      height: 100vh;
    }
    .brand-slider {
      display: flex;
      overflow-x: auto;
      gap: 2rem;
      padding: 2rem 1rem;
      scroll-snap-type: x mandatory;
    }
    .brand-slider img {
      /* height: 80px; */
      scroll-snap-align: center;
    }
    .who-we-are {
      text-align: center;
    }
    .who-we-are h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #444;
    }
    .who-we-are p.subtitle {
      max-width: 1000px;
      margin: 0 auto 3rem;
      color: #666;
    }
    .who-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    .who-card {
      /* background: #fff; */
      border-radius: 8px;
      /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
      max-width: 300px;
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .who-card:hover {
      transform: translateY(-5px);
    }
    .who-card img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }
    .who-card h3 {
      margin: 1rem 0 0.5rem;
      font-size: 1.1rem;
      font-weight: bold;
      color: #333;
    }
    .who-card p {
      font-size: 0.95rem;
      color: #555;
    }
    .see-more {
      margin-top: 1rem;
      display: none;
      font-weight: bold;
      font-size: 0.9rem;
      color: #333;
    }
    .video-section {
      position: relative;
      height: 80vh;
      overflow: hidden;
    }
    .video-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .video-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 2rem;
      border-radius: 8px;
      transition: opacity 0.3s ease;
    }
    .services-section {
      text-align: center;
      /* padding: 4rem 2rem; */
      /* background: #fff; */
    }
    .services-section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .services-section p.subtitle {
      max-width: 600px;
      margin: 0 auto 3rem;
      color: #777;
    }
    .services-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3rem;
    }
    .service-icon {
      text-align: center;
      max-width: 200px;
      color: #444;
      transition: transform 0.3s ease;
    }
    .service-icon:hover {
      transform: scale(1.05);
    }
    .service-icon i {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      display: block;
    }
    .services-quote {
      max-width: 700px;
      margin: 3rem auto 1rem;
      font-style: italic;
      color: #555;
    }
    .services-button {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.7rem 1.5rem;
      border: 1px solid #999;
      background: #fff;
      color: #333;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .services-button:hover {
      background: #eee;
    }
    footer {
      background: #847e7e;
      color: #fff;
     
      padding: 2rem;
    }
    @media(max-width: 768px) {
      .who-cards,
      .services-icons {
        flex-direction: column;
        align-items: center;
      }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .productlinks-wrap {
    width: 100%;
    background: #fff;
    padding: 25px 30px;
    position: relative;
}
.productlink-Title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.productlist-wrap {display: flex;align-items: center;}
.productlist {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
.productlist:after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.4);
    width: 1px;
    height: 100%;
    left: 0;
    top: 3px;
}
.productlist:first-child {padding-left: 0;}
.productlist img {
    width: 120px;
}

.productlist:first-child::after, .omnitech-logo:after {
    display: none;
}


     .intro-section {
      padding: 60px 0;
      background-color: #fff;
      position: relative;
      overflow: hidden;
      /* padding: 4rem 8rem; */
    }
    .intro-section img {
          width: 100%;
    /* height: 550px; */
    border-radius: 10px;
    object-fit: cover;
    }
    .intro-text {
    display: flex;
    position: absolute;
    top: 63%;
    left: 18%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    }
    .intro-section::before,
    .intro-section::after {
      content: '';
      position: absolute;
      width: 15px;
      background-color: #ffc107;
      z-index: 2;
    }
    .intro-section::before {
      /* left: 0;
      top: 0; */
      height: 50%;
    }
    .intro-section::after {
    right: 0;
    bottom: 3.77rem;
    height: 50%;
    }
    .intro-text h2 {
      font-weight: bold;
      font-size: 2rem;
    }
    .intro-text .highlight {
      color: #ffc107;
      font-size: 2.5rem;
      font-weight: bold;
      margin-right: 10px;
    }
     @media (max-width: 768px) { .product-img img { height: 200px; } }
     .section-padding{
       background: #fff!important;
     }
    .why-choose-card {
      background: #fff;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .why-choose-card:hover { transform: translateY(-5px); }
    .why-choose-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
    .why-choose-card h5 { font-weight: bold; }
    .owl-dots { text-align: center; margin-top: 15px; }

    .card-wrapper{
    max-width: 1100px;
    margin: 0 80px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item{
    list-style: none;
    margin-right: 20px!important;
}

.card-list .card-item .card-link{
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active{
    cursor: grabbing;
}

.card-list .card-item .card-link:hover{
    border-color: #fab914;
}

.card-list .card-link .card-image{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge{
    color: #fab914;
    margin: 16px 0 18px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    background: #464444;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .card-title{
    font-size: 16px;
    color: #000;
    font-weight: 100;
}

.card-list .card-link .card-button{
    height: 35px;
    width: 35px;
    color: #fab914;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    transform: rotate(-45deg);
    border: 2px solid #fab914;
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button{
    color: #fff;
    background: #fab914;
}

.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #fab914;
}

.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}

.card-wrapper .swiper-slide-button{
    color: #fab914;
    margin-top: -35px;
} 

@media screen and (max-width: 768px){
    .card-wrapper{
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button{
        display: none;
    }
}


   
    .product-item {
  position: relative;
}

.product-line {
  width: 2px;
  height: 30px;
  margin: 0 auto;
  background: repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
}

.product-label {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
}
 .product-section { background-color: #fff;}
    .product-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .product-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .product-img{
      display: flex;
      justify-content: center;
      background-color: #faebd7;
    }
    .product-img img {
      width: 200px;
      height: auto;
      object-fit: cover;
      transition: transform 0.5s ease;
      padding: 1.5rem;
    }
    .product-card:hover .product-img img {
      transform: scale(1.05);
    }
    .product-content {
      padding: 20px;
    }
    .product-content h5 {
      font-weight: bold;
    }
    .product-content p {
      color: #555;
    }
    .btn-buy {
      background: #ffc107!important;
      border: none!important;
      font-weight: bold!important;
      transition: background 0.3s ease;
    }
    .btn-buy:hover {
      background: #e0a800!important;
    }
    .product-item {
  display: none;
  transition: opacity 0.5s ease;
}
    @media (max-width: 768px) {
      .product-img img { height: 200px; }
    }
   

    /* Hover effect */
    a, button {
      transition: all 0.3s ease;
    }
    a:hover, button:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    /* unified scroll animation */

