

a:focus {
    outline:none;
}


   /* FLOATING BUTTON */
.contact-float {
    position: fixed;
    right: 19px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right;
      background: linear-gradient(135deg, #f08723, #ffb347);
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    /* border-radius: 6px 6px 0 0; */
    z-index: 999;
    letter-spacing: 1px;
}

.contact-float:hover {
       background: linear-gradient(135deg, #f08723, #ffb347);
}

/* MODAL BACKGROUND */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;     
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* MODAL BOX */
.contact-box {
    background: #fff;
    width: 400px;
    max-width: 90%;
    padding: 25px;
    /* border-radius: 10px; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;         
    font-size: 22px;
    cursor: pointer;
}

/* FORM */
.contact-box input,
.contact-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 8px;
    outline: none;
}

.contact-box textarea {
    height: 80px;
    resize: none;
}

/* ROW (PHONE + EMAIL) */
.contact-box .row {
    display: flex;
    gap: 10px;
}

.contact-box .row input {
    width: 50%;
}

/* BUTTON */
.submit-btn {
      background: linear-gradient(135deg, #f08723, #ffb347);
    color: #fff;
    border: none;
    padding: 10px 18px;
    /* border-radius: 6px; */
    cursor: pointer;
}

.submit-btn:hover {
      background: linear-gradient(135deg, #f08723, #ffb347);
}

/* MOBILE */
@media (max-width: 600px) {
    .contact-float {
        right: -30px;
        font-size: 12px;
    }

    .contact-box {
        width: 90%;
    }

    .contact-box .row {
        flex-direction: column;
    }

    .contact-box .row input {
        width: 100%;
    }
}
/* HIDE INITIALLY */
.contact-float {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* SHOW AFTER SCROLL */
.contact-float.show {
    opacity: 1;
    visibility: visible;
}


/*floating wp */  


.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

  /*loader */
  
    /* PRELOADER BACKGROUND */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOADER ANIMATION */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #f08723; /* your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ANIMATION */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  
  
  
 /* ============== index FEATURE  card ================ */
 /* SECTION */
 .pos-section {
    position: relative;
 }

 /* OVERLAP */
 .hero-hove {
    margin-top: -144px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
 }

 /* CARD - NEW STYLE */
 .service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #eee;
    margin: 9px;
 }

 /* LEFT ORANGE BORDER */
 .service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 4px;
    background: #f7931e;
    transition: 0.4s ease;
 }

 /* LIGHT ORANGE BACKGROUND HOVER */
 .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(247, 147, 30, 0.05);
    opacity: 0;
    transition: 0.4s ease;
 }

 /* ICON */
 .service-card .icon {
    font-size: 34px;
    margin-bottom: 15px;
    color: #f7931e;
    transition: 0.3s;
 }

 /* TEXT */
 .service-card h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    transition: 0.3s;
 }

 .service-card p {
    font-size: 14px;
    color: #666;
    transition: 0.3s;
 }

 /* 🔥 HOVER EFFECT */
 .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 /* BORDER GROW */
 .service-card:hover::before {
    height: 100%;
 }

 /* BACKGROUND FADE */
 .service-card:hover::after {
    opacity: 1;
 }

 /* ICON POP */
 .service-card:hover .icon {
    transform: scale(1.2);
 }

 /* TEXT COLOR CHANGE */
 .service-card:hover h4 {
    color: #f7931e;
 }


 @media (max-width: 992px) {
    .hero-hove {
       margin-top: -155px;
    }
 }

 @media (max-width: 576px) {
    .hero-hove {
       margin-top: -97px;
    }
 }


 /* ============= vertcal card ======================== */

 .verticals {
    padding: 60px 0;
    background: #fff;
 }

 .verticals h3 {
    font-size: 28px;
    text-transform: capitalize;
 }

 /* CARD */
 .vertical-card {
    background: #f7f7f7;
    /* border-radius: 20px; */
    padding: 25px 20px;
    position: relative;
    border: 1.5px solid #dcdcdc;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 360px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
 }

 /* HOVER EFFECT */
 .vertical-card:hover {
    border-color: #f08723;
    background: #fff;
    transform: translateY(-5px);
 }

 /* IMAGE */

 .vertical-card img {
    width: 100%;
    max-width: 160px;
    /* desktop */
    height: 140px;
    /* object-fit: contain; */
    margin: 64px auto;
    display: block;
 }

 /* Tablet */
 @media (max-width: 992px) {
    .vertical-card img {
       max-width: 376px;
       height: 237px;
       margin: 41px auto;
    }
 }

 /* Mobile */
 @media (max-width: 576px) {
    .vertical-card img {
       max-width: 227px;
       height: 209px;
       margin: 75px 43px;

    }
 }

 /* TITLE */
 .vertical-card h4 {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
 }

 /* BADGE */
 .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e9e9e9;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #000;
 }

 /* Bottom row (TEXT + ARROW) */
 .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
 }

 /* Title */
 .vertical-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
 }


 /* ARROW */
 .arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #f4a5a5;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

    opacity: 0;
    /* 👈 hidden by default */
    transform: scale(0.8);
    /* 👈 small size */
    transition: all 0.3s ease;
 }

 /* SHOW ON HOVER */
 .vertical-card:hover .arrow {
    opacity: 1;
    transform: scale(1);
    background: #f08723;
 }


/* ABBOUT image */

 .ab-img {
    width: 100%;
    height: 309px;
 }

 /* why choose  */

      /* SECTION */
      .why-section {
         padding: 80px 0;

      }

      /* TITLE */
      .small-title {
         font-size: 13px;
         color: #999;
         letter-spacing: 1px;
      }

      .main-title {
         font-size: 34px;
         font-weight: 700;
         margin-bottom: 30px;
         color: #111;
      }

      /* LEFT CARD */
      .quality-box {
         background: #ffffff;
         padding: 25px;
         /* border-radius: 20px; */
         display: flex;
         align-items: center;
         gap: 25px;
         margin-top: 25px;
         margin-bottom: 17px;

         /* 👇 IMPORTANT FOR WHITE BG */
         border: 1px solid #eee;
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

         border-left: 5px solid #f08723;
         transition: 0.3s;
      }

      .quality-box:hover {
         transform: translateY(-6px);
         box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      }

      /* IMAGE */
      .quality-img {
         background: #fafafa;
         padding: 15px;
         /* border-radius: 15px; */
         border: 1px solid #eee;
      }

      .quality-img img {
         width: 140px;
         display: block;
      }

      /* CONTENT */
      .quality-content {
         max-width: 350px;
      }

      .quality-heading {
         font-size: 15px;
         font-weight: 600;
         color: #f08723;
         margin-bottom: 15px;
      }

      /* LIST */
      .quality-list li {
         font-size: 14px;
         margin-bottom: 10px;
         color: #555;
         padding-left: 22px;
         position: relative;
      }

      .quality-list li::before {
         content: "✔";
         position: absolute;
         left: 0;
         color: #f08723;
      }

      /* RIGHT SIDE */
      .why-right {
         display: flex;
         flex-direction: column;
         gap: 18px;
      }

      /* FEATURE CARD */
      .feature-box {
         display: flex;
         gap: 15px;
         align-items: center;
         padding: 18px;
         /* border-radius: 16px; */

         /* WHITE BG FIX */
         background: #ffffff;
         border: 1px solid #eee;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

         transition: 0.3s;
      }

      .feature-box:hover {
         transform: translateY(-6px);
         box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }

      /* ICON */
      .feature-box .icon {
         min-width: 50px;
         height: 50px;
         background: #f08723;
         color: #fff;
         /* border-radius: 12px; */
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 18px;
      }

      /* TEXT */
      .feature-box h5 {
         margin: 0;
         font-size: 16px;
         color: #111;
      }

      .feature-box p {
         font-size: 13px;
         color: #666;
         margin: 5px 0 0;
      }

      /* TABLET */
      @media (max-width: 992px) {
         .main-title {
            font-size: 28px;
         }

         .quality-box {
            flex-direction: column;
            text-align: center;
         }

         .quality-list li::before {
            display: none;
         }

         .quality-list li {
            list-style: none;
         }

         .quality-list {
            padding-left: 0px;
         }
      }

      /* MOBILE */
      @media (max-width: 576px) {

         .main-title {
            font-size: 24px;
            text-align: center;
         }

         .small-title {
            text-align: center;
         }

         .quality-img img {
            width: 120px;
         }

         .quality-content {
            max-width: 100%;
         }

         .quality-list li {
            padding-left: 0;
         }

         .feature-box {
            flex-direction: column;
            text-align: center;
         }
      }


      /* industry  */
     
      .industries-section {
         padding: 80px 0;
         background: #efefef;
      }

      .section-header {
         position: relative;
         text-align: center;
         margin-bottom: 50px;
      }

      .nav-top {
         position: absolute;
         right: 0;
         top: 0;
      }

      .nav-btn {
         width: 35px;
         height: 35px;
         border-radius: 50%;
         border: 1px solid #aaa;
         background: transparent;
         cursor: pointer;
      }

      .carousel {
         overflow: hidden;
      }

      .carousel-track {
         display: flex;
         transition: 0.5s;
      }

      /* CARD */
      .industry-card {
         flex: 0 0 20%;
         /* 5 cards */
         max-width: 20%;
         height: 360px;
         padding: 0 10px;
         box-sizing: border-box;

         transform: scale(0.7);

         transition: 0.4s;
      }

      /* ACTIVE CENTER */
      .industry-card.active {
         transform: scale(1.1) translateY(-25px);
         opacity: 1;
         z-index: 2;
      }

      /* IMAGE */
      .industry-card img {
         width: 100%;
         height: 100%;
         object-fit: cover;
      }

      /* OVERLAY */
      .overlay {
         position: absolute;
         inset: 0;
         padding: 20px;
         display: flex;
         flex-direction: column;
         justify-content: flex-end;
         background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

         opacity: 0;
         transition: 0.3s;
      }

      .overlay h5,
      .overlay p {
         color: #fff;
      }

      .industry-card.active .overlay {
         opacity: 1;
      }

      /* MOBILE */
      @media (max-width: 992px) {
         .industry-card {
            flex: 0 0 33.33%;
            max-width: 33.33%;
         }
      }

      @media (max-width: 576px) {
         .industry-card {
            flex: 0 0 100%;
            max-width: 100%;
         }
      }

 /* index contact  */


    .contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1168px;
  margin: auto;
  background: #eee;
  display: flex;
  /* gap: 40px; */
  align-items: stretch; /* IMPORTANT */
  overflow: hidden;
}

/* LEFT SIDE WITH IMAGE */
.contact-left {
  flex: 1;
  position: relative;
  background: url('../images/pos/bg-2.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 50px;
  min-height: 400px;
}

/* DARK OVERLAY */
.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
     background: rgb(0 0 0 / 26%);
}

/* TEXT ABOVE IMAGE */
.contact-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.contact-content p {
  color: #ddd;
  line-height: 1.6;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  background: #f9f9f9;
  padding: 40px;
}

/* INPUT */
.input-group {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 10px 5px;
  outline: none;
  font-size: 14px;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 5px;
  color: #888;
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label {
  top: -10px;
  font-size: 12px;
  color: #000;
}

/* ROW */
.input-row {
  display: flex;
  gap: 20px;
}

.input-row .input-group {
  flex: 1;
}

/* BUTTON */
.contact-btn {
  background: #f08723;
  color: #fff;
  border: none;
  padding: 14px 25px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #ec7404;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    min-height: 250px;
    padding: 30px;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .input-row {
    flex-direction: column;
  }
}


/* product details  */


        .product-detail {
            padding: 70px 0;
            /* background: #f8f8f8; */
        }

        /* IMAGE BOX */
        .main-image {
            background: #eee;
            /* border-radius: 20px; */
            padding: 30px;
            text-align: center;
        }

        .main-image img {
            width: 100%;
            max-height: 350px;
            object-fit: contain;
        }

        /* THUMBNAILS */
        .thumbs {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .thumbs img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            background: #fff;
            border: 2px solid #ddd;
            /* border-radius: 10px; */
            padding: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        .thumbs img.active,
        .thumbs img:hover {
            border-color: #f08723;
            transform: scale(1.05);
        }

        /* RIGHT CONTENT */
        .product-info h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .btns {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }

        .btn-outline {
            border: 1px solid #333;
            padding: 10px 18px;
            /* border-radius: 8px; */
            text-decoration: none;
            color: #333;
        }

        .btn-enquire {
            background: linear-gradient(135deg, #f08723, #ffb347);
            color: #fff;
            padding: 10px 20px;
            /* border-radius: 8px; */
            text-decoration: none;
        }

        /* TAGS */
        .tags {
            margin: 10px 0 20px;
        }

        .tags a {
            /* background: #fff3e8; */
            color: #f08723;
            padding: 6px 12px;
            /* border-radius: 20px; */
            font-size: 13px;
            margin-right: 6px;
            border: 1px solid #E5E5E5;
        }

        /* TEXT */
        .product-info p {
            color: #555;
            line-height: 1.7;
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .product-info {
                margin-top: 30px;
            }

            .main-image img {
                max-height: 280px;
            }
        }

        @media (max-width: 576px) {
            .product-info h2 {
                font-size: 24px;
            }

            .btns {
                flex-direction: column;
            }

            .thumbs img {
                width: 60px;
                height: 60px;
            }
        }

        /* FEATURE ICON ROW */
        .feature-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 25px;
        }

        /* EACH ITEM */
        .feature-item {
            text-align: center;
            text-decoration: none;
            color: #333;
            width: 80px;
            transition: 0.3s;
        }

        /* ICON BOX */
        .feature-item img {
            width: 50px;
            height: 50px;
            padding: 10px;
            border: 1px solid #e0e0e0;
            /* border-radius: 10px; */
            background: #fff;
            transition: 0.3s;
        }

        /* TEXT */
        .feature-item span {
            display: block;
            font-size: 12px;
            margin-top: 6px;
        }

        /* HOVER EFFECT */
        .feature-item:hover img {
            border-color: #f08723;
            background: #fff3e8;
            transform: translateY(-3px);
        }

        .feature-item:hover span {
            color: #f08723;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .feature-icons {
                justify-content: center;
            }

            .feature-item {
                width: 80px;
            }
        }
  

        /* product deatils table  */
     
        /* SECTION */
        .spec-section {
            padding: 50px 15px;
        }

        /* LEFT SCROLL */
        .left-scroll {
            max-height: 100vh;
            overflow-y: auto;
            padding-right: 10px;
        }

        /* SCROLLBAR */
        .left-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .left-scroll::-webkit-scrollbar-thumb {
            background: #f08723;
        }

        /* TABLE WRAPPER */
    .table-scroll {
    max-height: 500px;   /* Adjust height as needed */
    overflow-y: auto;    /* Enables vertical scroll */
    overflow-x: auto;    /* Optional: horizontal scroll for responsiveness */
    /* border: 1px solid #ddd; */
}
.table-scroll thead th {
    position: sticky;
    top: 0;
 
    z-index: 2;
}

        /* TABLE */
        .table-product {
            width: 100%;
            min-width: 700px;
            /* 👈 IMPORTANT for mobile scroll */
            border-collapse: collapse;
            font-size: 14px;
        }

        /* HEADER */
        .table-product th {
            background: #f08723;
            color: #fff;
            padding: 12px;
            text-align: center;
            white-space: nowrap;
        }

        /* BODY */
        .table-product td {
            padding: 12px;
            border-bottom: 1px solid #ddd;
            text-align: center;
            white-space: nowrap;
        }

        /* FIRST COLUMN */
        .table-product td:first-child {
            text-align: left;
            font-weight: 600;
            background: #fafafa;
        }

        /* HOVER */
        .table-product tr:hover {
            background: #f9f9f9;
        }

        /* RIGHT SIDE */
        .compare-panel {
            background: #f3f4f7;
            padding: 20px;
            width: 100%;
            position: sticky;
            top: 100px;
        }

        /* TITLE */
        .compare-panel h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        /* CARD */
        .compare-card {
            background: #e9eaee;
            padding: 15px 10px;
            text-align: center;
            transition: 0.3s;
            cursor: pointer;
            margin: 5px;
        }

        .compare-card:hover {
            transform: translateY(-5px);
            background: #dfe1e7;
        }

        /* IMAGE */
        .compare-card img {
            width: 70px;
            height: auto;
            margin-bottom: 10px;
        }

        /* TITLE */
        .compare-card .title {
            font-size: 14px;
            font-weight: 500;
            margin: 5px 0;
        }

        /* LINK */
        .compare-card a {
            font-size: 13px;
            color: #f08723;
            text-decoration: none;
            font-weight: 500;
        }

        /* BUTTON */
        .view-all {
            margin-top: 20px;
            width: 100%;
            padding: 14px;
            border: none;
            background: #f08723;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
        }

        /* 🔥 TABLET */
        @media (max-width: 991px) {

            .left-scroll {
                max-height: unset;
                overflow: visible;
            }

            .compare-panel {
                position: relative;
                top: 0;
                margin-top: 30px;
            }
        }

        /* 🔥 MOBILE */
        @media (max-width: 768px) {

            .spec-section {
                padding: 30px 10px;
            }

            .table-product {
                font-size: 13px;
            }

            .compare-card img {
                width: 60px;
            }

        }

        /* 🔥 SMALL MOBILE */
        @media (max-width: 480px) {

            .table-product {
                min-width: 600px;
            }

            .compare-panel h3 {
                font-size: 16px;
            }

        }


        
        .industrial-section {
            background: #f5f5f5;
            padding: 80px 0;
            position: relative;
        }

        /* TEXT SIDE */
        .industrial-content h2 {
            font-size: 34px;
            font-weight: 700;
            color: #111;
            margin-bottom: 20px;
        }

        .industrial-content .desc {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .industrial-content .desc span {
            color: #f08723;
            font-weight: 600;
        }

        /* LIST */
        .industrial-list {
            list-style: none;
            padding: 0;
        }

        .industrial-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 14px;
            color: #333;
        }

        .industrial-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #f08723;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* IMAGE */
        .industrial-image {
            /* border-radius: 20px; */
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .industrial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        /* ================= RESPONSIVE ================= */

        /* Tablet */
        @media (max-width: 992px) {
            .industrial-content h2 {
                font-size: 28px;
            }

            .industrial-image {
                margin-top: 30px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .industrial-section {
                padding: 50px 0;
            }

            .industrial-content h2 {
                font-size: 22px;
                text-align: center;
            }

            .industrial-content .desc {
                text-align: center;
            }

            .industrial-list {
                padding-left: 10px;
            }


        }


  
        /* SECTION */
        .faq-section {

            padding: 70px 0;
        }

        /* TITLE */
        .faq-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #222;
        }



        /* WRAPPER */
        .faq-wrapper {
            /* max-width: 800px; */
            margin: auto;
        }

        /* ITEM */
        .faq-item {
            background: #f8f8f8;
            /* border-radius: 12px; */
            margin-bottom: 15px;
            border: 1px solid #eee;
            overflow: hidden;
            transition: 0.3s;
        }

        /* QUESTION */
        .faq-question {
            padding: 18px 20px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            font-size: 15px;
        }

        /* PLUS ICON */
        .faq-question span {
            position: absolute;
            right: 20px;
            top: 50%;
            width: 14px;
            height: 14px;
            transform: translateY(-50%);
        }

        .faq-question span::before,
        .faq-question span::after {
            content: "";
            position: absolute;
            background: #f08723;
            transition: 0.3s;
        }

        .faq-question span::before {
            width: 14px;
            height: 2px;
            top: 6px;
            left: 0;
        }

        .faq-question span::after {
            width: 2px;
            height: 14px;
            left: 6px;
            top: 0;
        }

        /* ANSWER */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            font-size: 14px;
            color: #555;
            transition: 0.4s ease;
        }

        /* ACTIVE */
        .faq-item.active {
            border-color: #f08723;
            box-shadow: 0 10px 25px rgba(240, 135, 35, 0.15);
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 15px 20px;
        }

        .faq-item.active .faq-question span::after {
            transform: scaleY(0);
        }

        /* HOVER */
        .faq-item:hover {
            border-color: #f08723;
        }

        /* RESPONSIVE */
        @media (max-width: 576px) {
            .faq-title {
                font-size: 22px;
            }

            .faq-question {
                font-size: 14px;
            }

            .faq-answer {
                font-size: 13px;
            }
        }


        /* carrer  */
      
    .career-section-new {
      background: linear-gradient(180deg, #f9fafc, #ffffff);
      padding: 80px 0;
    }

    /* TITLE */
    .career-title {
     font-size: 26px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    /* CARD */
    .career-card {
      background: #fff;
      padding: 22px;
      /* border-radius: 16px; */
      border: 1px solid #eee;
      transition: 0.3s;
      margin: 5px;
    }

    .career-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(240, 135, 35, 0.15);
    }

    /* BIG CARD */
    .big-card {
      display: flex;
      align-items: center;
    }

    /* SMALL CARD */
    .small-card h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .small-card p {
      font-size: 14px;
      color: #666;
    }

    /* FORM BOX */
    .career-form-box {
      background: #fff;
      padding: 35px;
      /* border-radius: 20px; */
      border: 1px solid #eee;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    /* INPUT */
    .career-input {
      width: 100%;
      border: 1px solid #ddd;
      /* border-radius: 12px; */
      padding: 13px 15px;
      font-size: 14px;
      transition: 0.3s;
      margin: 5px;
    }

    .career-input:focus {
      border-color: #f08723;
      box-shadow: 0 0 0 3px rgba(240, 135, 35, 0.1);
      outline: none;
    }

    /* UPLOAD */
    .upload-label {
      font-size: 14px;
      margin-bottom: 8px;
      display: block;
      font-weight: 500;
      margin: 5px;
    }

    .upload-box {
      border: 2px dashed #ddd;
      /* border-radius: 14px; */
      padding: 30px;
      text-align: center;
      cursor: pointer;
      position: relative;
      transition: 0.3s;
      margin: 5px;
    }

    .upload-box:hover {
      border-color: #f08723;
      background: #fff7f0;
    }

    .upload-box p {
      margin-bottom: 5px;
      font-weight: 500;
    }

    .upload-box span {
      font-size: 12px;
      color: #888;
    }

    /* HIDE INPUT */
    .file-input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    /* BUTTON */
    .career-btn {
      width: 100%;
      padding: 14px;
      /* border-radius: 30px; */
      border: none;
      background: linear-gradient(135deg, #f08723, #ffb347);
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
      margin: 5px;
    }

    .career-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(240, 135, 35, 0.3);
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */
    @media (max-width: 992px) {
      .career-title {
        font-size: 26px;
        text-align: center;
      }

      .career-left {
        text-align: center;
      }
    }

    /* Mobile */
    @media (max-width: 576px) {
      .career-section-new {
        padding: 50px 15px;
      }

      .career-title {
        font-size: 22px;
      }

      .career-form-box {
        padding: 25px;
      }
    }
 

    /* contact  */
   
    /* SECTION */
    .contact-section {
      background: #f4f6f9;
      padding: 70px 0;
    }

    /* WRAPPER */
    .contact-wrapper {
      display: flex;
      gap: 25px;
      background: #fff;
      padding: 25px;
      /* border-radius: 20px; */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* LEFT SIDE */
    .contact-form-left-side {
      width: 40%;
      background: #f5f5f5;
      /* DARK BLUE */
      padding: 30px;
      /* border-radius: 16px; */
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    /* subtle orange glow */
    .contact-form-left-side::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: #f7931e;
      opacity: 0.1;
      border-radius: 50%;
      top: -50px;
      right: -50px;
    }

    .contact-form-left-side h2 {
      margin-bottom: 25px;
      color: #000;
    }

    /* CONTACT ITEM */
    .contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .contact-item h5 {
      margin: 0;
      font-size: 14px;
      color: #f7931e;
      /* ORANGE */
    }

    .contact-item p {
      margin: 3px 0 0;
      font-size: 13px;
      color: #000;
    }

    /* ICON */
    .icon {
      font-size: 18px;
      color: #f7931e;
    }

    /* DIVIDER */
    .divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 15px 0;
    }

    /* SOCIAL */
    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      margin-right: 10px;
      text-decoration: none;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 10px;
      /* border-radius: 50%; */
      font-size: 12px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #f7931e;
      color: #fff;
    }

    /* RIGHT SIDE */
    .contact-right {
      width: 60%;
      padding: 10px 15px;
    }

    .contact-right h2 {
      margin-bottom: 20px;
      color: #0b1d3a;
    }

    /* FORM */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .form-grid input,
    .form-grid select,
    .form-grid textarea {
      width: 100%;
      padding: 12px;
      /* border-radius: 10px; */
      border: 1px solid #ddd;
      font-size: 14px;
      transition: 0.3s;
    }

    /* INPUT FOCUS */
    .form-grid input:focus,
    .form-grid select:focus,
    .form-grid textarea:focus {
      border-color: #f7931e;
      box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.1);
      outline: none;
    }

    .form-grid textarea {
      height: 100px;
      resize: none;
    }

    .full {
      grid-column: span 2;
    }

    /* BUTTON */
    .submit-btn {
      margin-top: 20px;
      background: #f7931e;
      color: #fff;
      padding: 12px 25px;
      /* border-radius: 10px; */
      border: none;
      cursor: pointer;



      font-weight: 600;
      transition: 0.3s;
    }

    /* BUTTON HOVER */
    .submit-btn:hover {
      background: #0b1d3a;


    }

    /* ================= RESPONSIVE ================= */

    /* TABLET */
    @media (max-width: 992px) {
      .contact-wrapper {
        flex-direction: column;
      }

      .contact-form-left-side          ,
      .contact-right {
        width: 100%;
      }
    }

    /* MOBILE */
    @media (max-width: 576px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .full {
        grid-column: span 1;
      }

      .contact-section {
        padding: 40px 15px;
      }
    }


    /* industry details */

        /* SECTION BG */
        .product-section {

            padding: 57px;
        }

        /* TITLE */
        .section-title {
            font-weight: 700;
            font-size: 30px;
            color: #222;

        }

        /* SELECT */
        .custom-select {
            /* border-radius: 30px; */
            padding: 6px 20px;
            border: 1px solid #ddd;
            color: #555;
            width: auto;
            min-width: 140px;
            margin-left: auto;
        }

        /* CARD */
        .product-card {
            background: #f8f8f8;
            /* border-radius: 22px; */
            padding: 30px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: 0.4s ease;
            border: 1px solid #eee;
        }

        /* IMAGE */
        .product-img {
            text-align: center;
            margin-bottom: 20px;
        }

        .product-img img {
            max-height: 170px;
            object-fit: contain;
            transition: 0.4s;
        }

        /* CONTENT */
        .product-content h6 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        /* BUTTON GROUP */
        .btn-group-custom {
            display: flex;
            gap: 10px;
        }

        /* SEND ENQUIRY (outline style) */
        .btn-outline-dark {
            border-radius: 0px;
            padding: 8px 18px;
            font-size: 14px;
            border: 1px solid #ccc;
            color: #444;
            background: #fff;
            transition: 0.3s;
            margin: 7px;
        }

        .btn-outline-dark:hover {
            border-color: #f08723;
            color: #f08723;
            background: #fff7f0;
        }

        /* VIEW PRODUCT (primary brand button) */
        .btn-danger {
            border-radius: 0px;
            padding: 8px 18px;
            font-size: 14px;
            background: linear-gradient(135deg, #f08723, #ffb347);
            border: none;
            color: #fff;
            transition: 0.3s;
        }

        .btn-danger:hover {
            background: linear-gradient(135deg, #d96f12, #f5a623);
            transform: translateY(-2px);
        }

        /* HOVER CARD */
        .product-card:hover {
            background: #fff;
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(240, 135, 35, 0.15);
            border-color: #f08723;
        }

        /* IMAGE HOVER */
        .product-card:hover img {
            transform: scale(1.1);
        }

        /* ANIMATION SAME */
        .animate-up {
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .section-title {
                font-size: 22px;
            }

            .btn-group-custom {
                flex-direction: column;
            }
        }

        /* HEADER (Product + Option responsive) */

        .section-title {
            margin: 0;
        }

        /* OPTION RIGHT SIDE FIX */
        .custom-select {
            margin-left: auto;
        }

        /* MOBILE HEADER FIX */
        @media (max-width: 576px) {


            .custom-select {
                width: 100%;
                margin-left: 0;
            }

            .section-title {
                text-align: center;
            }
        }

        @media (max-width: 991px) {


            .custom-select {
                width: 100%;
                margin-left: 0;
            }

            .section-title {
                text-align: center;
            }
        }

        /* ================= CARD SPACING ================= */

        /* Row gap fix (Bootstrap 4 compatible) */
        .product-section .row>div {
            margin-bottom: 25px;
        }



        /* Tablet */
        @media (max-width: 992px) {
            .product-img img {
                max-width: 150px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .product-img img {
                max-width: 130px;
            }
        }




        /* BUTTON CENTER ALIGN */
        .btn-group-custom {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        /* MOBILE BUTTON STACK */
        @media (max-width: 576px) {
            .btn-group-custom {
                flex-direction: column;
            }

            .btn-group-custom .btn {
                width: 100%;
            }
        }


        

        /* SECTION */
        .trust-section {
            background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
            /* dark premium */
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* OPTIONAL GLOW EFFECT */
        .trust-section::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(240, 135, 35, 0.3), transparent);
        }

        /* TITLE */
        .trust-content h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* ORANGE HIGHLIGHT WORD */
        .trust-content h2 span {
            color: #f08723;
        }

        /* SUBTEXT */
        .trust-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* SMALL ORANGE LINE UNDER TITLE */
        .trust-content h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: #f08723;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* ================= RESPONSIVE ================= */

        /* Tablet */
        @media (max-width: 992px) {
            .trust-content h2 {
                font-size: 26px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .trust-section {
                padding: 50px 15px;
            }

            .trust-content h2 {
                font-size: 20px;
                line-height: 1.4;
            }

            .trust-content p {
                font-size: 13px;
            }
        }
  

        /* SECTION */
        .feature-section {
            background: #f8f8f8;
            padding: 70px 0;
        }

        /* TITLE */
        .feature-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #222;
        }



        /* CARD */
        .feature-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 25px;
            transition: 0.4s;
            border: 1px solid #eee;
            height: 100%;
        }

        /* ICON */
        .feature-card .icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f08723, #ffb347);
            color: #fff;
            font-size: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: 0.3s;
        }

        /* TEXT */
        .feature-card p {
            font-size: 14px;
            color: #444;
            margin: 0;
        }

        /* HOVER EFFECT */
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(240, 135, 35, 0.2);
            border-color: #f08723;
        }

        .feature-card:hover .icon {
            transform: scale(1.1);
        }

        /* ================= RESPONSIVE ================= */

        /* Tablet */
        @media (max-width: 992px) {
            .feature-title {
                font-size: 26px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .feature-section {
                padding: 50px 15px;
            }

            .feature-title {
                font-size: 20px;
            }

            .feature-card {
                padding: 20px 15px;
            }

            .feature-card p {
                font-size: 13px;
            }
        }
        
        /*mega header */
        
         /* DROPDOWN LINK */
      .mobile-dropdown-toggle {
         position: relative;
         display: block;
         padding: 14px 15px;
         border-radius: 12px;
         background: #fff;
         font-weight: 500;
         color: #333;
         text-decoration: none;
         transition: 0.3s;
      }

      /* MODERN ARROW (PURE CSS) */
      .mobile-dropdown-toggle::after {
         content: "";
         position: absolute;
         right: 15px;
         top: 50%;
         width: 8px;
         height: 8px;
         border-right: 2px solid #555;
         border-bottom: 2px solid #555;
         transform: translateY(-50%) rotate(45deg);
         transition: 0.3s;
      }

      /* HOVER */
      .mobile-dropdown-toggle:hover {
         background: #fff3e8;
         color: #f08723;
      }

      /* ACTIVE STATE */
      .mobile-dropdown.active>.mobile-dropdown-toggle {
         background: linear-gradient(135deg, #f08723, #ffb347);
         color: #fff;
      }

      /* ARROW ROTATE */
      .mobile-dropdown.active>.mobile-dropdown-toggle::after {
         transform: translateY(-50%) rotate(-135deg);
         border-color: #fff;
      }

      /* SHOW MOBILE ONLY */
      .mobile-navbar {
         display: none;
      }

      @media (max-width: 991px) {
         .mobile-navbar {
            display: block;
         }

         .navbar {
            display: none;
         }
      }

      /* TOP BAR */
      .mobile-navbar {
         position: sticky;
         top: 0;
         background: #fff;
         padding: 12px 16px;
         z-index: 1000;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      /* CONTAINER */
      .mobile-container {
         display: flex;
         justify-content: space-between;
         align-items: center;
      }

      /* LOGO */
      .mobile-logo img {
         height: 42px;
      }

      /* HAMBURGER */
      .mobile-toggle-btn {
         width: 30px;
         height: 22px;
         display: flex;
         flex-direction: column;
         justify-content: space-between;
         border: none;
         background: none;
      }

      .mobile-toggle-btn span {
         height: 3px;
         background: #222;
         border-radius: 3px;
         transition: 0.4s;
      }

      /* ICON ANIMATION */
      .mobile-toggle-btn.active span:nth-child(1) {
         transform: rotate(45deg) translate(5px, 5px);
      }

      .mobile-toggle-btn.active span:nth-child(2) {
         opacity: 0;
      }

      .mobile-toggle-btn.active span:nth-child(3) {
         transform: rotate(-45deg) translate(5px, -5px);
      }

      /* ================= PREMIUM MENU ================= */

      /* OVERLAY */
      .mobile-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         backdrop-filter: blur(3px);
         opacity: 0;
         visibility: hidden;
         transition: 0.4s;
         z-index: 998;
      }

      .mobile-overlay.active {
         opacity: 1;
         visibility: visible;
      }

      /* MENU PANEL */
      .mobile-menu {
         position: fixed;
         top: 0;
         left: -100%;
         width: 85%;
         max-width: 320px;
         height: 100%;
         background: linear-gradient(180deg, #ffffff, #fafafa);
         box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
         transition: 0.5s ease;
         z-index: 999;
         border-top-right-radius: 30px;
         border-bottom-right-radius: 30px;
         overflow-y: auto;
      }

      .mobile-menu.active {
         left: 0;
      }

      /* HEADER DESIGN (PREMIUM) */
      .mobile-menu-header {
         padding: 30px 20px;
         background: linear-gradient(135deg, #f08723, #ffb347);
         color: #fff;
         border-bottom-left-radius: 40px;
         position: relative;
      }

      /* GLOW EFFECT */
      .mobile-menu-header::after {
         content: "";
         position: absolute;
         bottom: -30px;
         left: 0;
         width: 100%;
         height: 60px;
         background: radial-gradient(circle, rgba(240, 135, 35, 0.3), transparent);
      }

      .mobile-menu-header h4 {
         font-size: 20px;
         margin: 0;
      }

      .mobile-menu-header p {
         font-size: 13px;
         opacity: 0.9;
      }

      /* NAV */
      .mobile-nav {
         list-style: none;
         padding: 20px;
      }

      /* ITEM CARD STYLE */
      .mobile-nav li {
         margin-bottom: 10px;
         list-style: none;
      }

      /* LINKS (CARD STYLE) */
      .mobile-nav a {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 14px 15px;
         border-radius: 14px;
         text-decoration: none;
         color: #333;
         font-weight: 500;
         background: #fff;
         box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
         transition: all 0.3s ease;
      }



      /* HOVER */
      .mobile-nav a:hover {
         background: linear-gradient(135deg, #f08723, #ffb347);
         color: #fff;
         transform: translateX(6px);
         box-shadow: 0 8px 20px rgba(240, 135, 35, 0.3);
      }

      /* DROPDOWN */
      .mobile-dropdown-toggle i {
         transition: 0.3s;
      }

      .mobile-dropdown-toggle.active i {
         transform: rotate(180deg);
      }

      /* SUBMENU */
      .mobile-submenu {
         display: none;
         padding-left: 10px;
      }

      .mobile-dropdown-toggle.active+.mobile-submenu {
         display: block;
      }

      /* SUB LINKS */
      .mobile-submenu a {
         font-size: 14px;
         background: transparent;
         box-shadow: none;
         padding: 10px 12px;
         color: #555;
         margin: 9px;
      }

      /* BUTTON */
      .enquire-btn-container {
         padding: 20px;
      }

      .enquire-btn {
         display: block;
         text-align: center;
         padding: 14px;
         border-radius: 30px;
         background: linear-gradient(135deg, #f08723, #ffb347);
         color: #fff;
         font-weight: 600;
         text-decoration: none;
         box-shadow: 0 8px 20px rgba(240, 135, 35, 0.3);
         transition: 0.3s;
      }

      .enquire-btn:hover {
         transform: translateY(-3px);
      }
      
      /*HEAD=======*/
      
       /* MEGA MENU BASE */
      .mega-parent {
         position: relative;
      }

      .mega-menu {
         position: absolute;
         top: 100%;
         /* left: 0; */
         width: 750px;
         background: #f5f5f5;
         display: flex;
         border-radius: 10px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         opacity: 0;
         visibility: hidden;
         transition: 0.3s ease;
         z-index: 999;




      }

      /* SHOW ON HOVER */
      .mega-parent:hover .mega-menu {
         opacity: 1;
         visibility: visible;
      }

      /* LEFT PANEL */
      .mega-left {
         width: 260px;
         background: #eee;
         padding: 15px;
         border-radius: 10px 0 0 10px;
      }

      .mega-item {
         display: flex;
         gap: 10px;
         padding: 10px;
         border-radius: 8px;
         margin-bottom: 10px;
         cursor: pointer;
      }

      .mega-item span {
         background: #f08723;
         color: #fff;
         padding: 15px;
         border-radius: 50%;
         width: 46px;
         height: 46px;
      }

      .mega-item.active,
      .mega-item:hover {
         background: #fff;
      }

      /* RIGHT PANEL */
      .mega-right {
         flex: 1;
         padding: 20px;
         display: flex;
         flex-wrap: wrap;
      }

      .mega-col {
         width: 50%;
         padding: 17px;
      }

      .mega-col ul {
         list-style: none;
         padding: 0;
      }

      .mega-col li {
         margin-bottom: 34px;
         padding-left: 15px;
         position: relative;
    /*    list-style: circle;*/
    /*color: #f08723;*/
      }

    

      .mega-col a {
         text-decoration: none;
         color: #333;
      }

      /* VIEW ALL */
      .mega-view {
         width: 100%;
         margin-top: 15px;
      }

      .mega-view a {
         color: #f08723;
         text-decoration: none;
         font-weight: bold;
      }

      /* FIX NAV ALIGNMENT */
      .navbar-nav>li {
         position: relative;
      }

      /* OPTIONAL: REMOVE OLD DROPDOWN STYLE */
      .dropdown-submenu {
         display: none !important;
      }

      /* hide all */
      .mega-content {
         display: none;
         width: 100%;
      }

      /* show active */
      .mega-content.active {
         display: flex;
         flex-wrap: wrap;
      }

      .mega-col a:hover {
         color: #f08723;
      }

      /* DEFAULT (Products) */
      .mega-products {
         width: 750px;
      }

      /* INDUSTRY MENU (MEDIUM SIZE) */
      .mega-industry {
         width: 500px;
      }

      /* SUPPORT MENU (SMALL SIZE) */
      .mega-support {
         width: 346px;
      }

      /* MOBILE MEGA MENU */
      @media (max-width: 991px) {
         .mega-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #f5f5f5;
         }

         .mega-left,
         .mega-right {
            width: 100%;
            padding: 10px;
         }

         .mega-content {
            display: none;
         }

         .mega-content.active {
            display: block;
         }

         .mega-left .mega-item {
            cursor: pointer;
            margin-bottom: 10px;
         }

         .mega-left .mega-item.active {
            background: #fff;
         }

      }

    
      .header-socials {
         margin-bottom: 10px;
      }

      .social-image img {
         width: 120px;
         /* adjust size */
         max-width: 100%;
         margin-top: 10px;
      }

      /* OPTIONAL ALIGN RIGHT */
      .social-image {
         text-align: right;
      }

      /* MOBILE FIX */
      @media (max-width: 768px) {
         .social-image {
            text-align: center;
         }

         .header-socials {
            text-align: center;
         }
      }
