/* style.css */
        :root {
            --primary-dark: #003b6f;
            --primary-light: #005fa3;
            --accent-gold: #ffc918;
            --accent-teal: #20B2AA;
            --light-bg: rgba(255, 255, 255, 0.15);
        }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.no-css-anim {
  animation: none !important;
}
/* Ensure dropdown takes full width */
.nav-item.dropdown.position-static .dropdown-menu {
  left: 0;
  right: 0;
  width: 100%;
}

.whatsapp-now {
  display: inline-block;
    color: white;
    font-weight: 600;
    background-color: #25D366;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 10px;
    margin-left: 11px;
}

.whatsapp-now i {

    font-size: 20px;
    vertical-align: baseline !important;
}

.whatsapp-now:hover {
  background-color: #128C7E;
  text-decoration: underline;
  color: white;
}


input::placeholder {
  color: #adb5bd;
}

.logo-header-images {
  background: url('../img/logo-bg-imag.webp') no-repeat center center;
  background-size: cover;  
  width: 100%;
       
}





.CATEGORY-btn{
        text-align: left;
    border: 1px solid #ccc;
    width: 100%;
}
.banner-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 3.75rem;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: left;
}
.second-navbar{
   position: relative;
  top: 0;
  z-index: 9999 !important; /* Make sure it's above other content */
  background-color: #f6f6f6; /* Adjust as needed */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
}
/* Optional: Add subtle fade-in animation */
.banner-heading {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease-out forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.navbar-brand span {
  color: #000;
}
.nav-item {
    border: none;
}
.nav-link {
    font-size: 15px;
    cursor: pointer;
    color: black;
    font-weight: 500;
    
}
.custom-search-bar-new {
  border-radius: 30px;
      overflow: hidden;
  box-shadow:0 4px 12px rgb(0 0 0 / 23%);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-search-bar-new:focus-within {
  box-shadow: 0 6px 20px rgba(0, 89, 179, 0.15);
  transform: translateY(-1px);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* optional: aligns dropdown with toggle */
}


.custom-search-bar-new .input-group-text {
  border: none;
  background-color: #ffffff;
  padding-left: 18px;
  padding-right: 10px;
  font-size: 16px;
  color: #0056b3;
}

.custom-search-bar-new .form-control {
  border: none;
  padding: 10px 16px;
  border-radius: 0 30px 30px 0;
  font-size: 15px;
  transition: box-shadow 0.2s ease;
}

.custom-search-bar-new .form-control:focus {
  outline: none;
  box-shadow: none;
}

.whatsapp-button {
  background-color: #25D366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.logo-header-image{
    width: 235px;
    /*    filter: brightness(0) invert(1);*/
    /*transition: filter 0.3s ease;*/
}
.whatsapp-button:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon-link {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}
.whatsapp-icon-link:hover{
    color: white;
}

/*.login-btn{*/
/*  background-color: #1c39bb;*/
/*  border-color: #0037ff;*/
/*  color: white;*/
/*}*/
/*.login-btn:hover{*/
/*  background-color: #46569c;*/
/*  border-color: #0037ff;*/
/*  color: white;*/
/*}*/

/*.sign-btn {*/
/*  color: #1c39bb;*/
/*  border-color: #1c39bb;*/
/*}*/

/*.sign-btn:hover {*/
/*  background-color: #1c39bb;*/
/*  color: white;*/
/*}*/



.footer-section {
  background-image: url('../img/Siding_X.jpeg'); /* apni image ka path yahan den */
  background-size: cover;         /* image poori area mein fit ho jaaye */
  background-repeat: no-repeat;   /* image repeat na ho */
  background-position: center;    /* image center mein ho */
  background-attachment: fixed;   /* optional: parallax effect jaisa feel */
  color: #fff;                    /* text white ho (already added by you) */
  position: relative;
  z-index: 1;
}
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark transparent overlay */
  z-index: -1;
}
.footer-section h6 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 24px;
}
.footer-section h5 {
     font-size: 27px;
}

.footer-section ul li {
  margin-bottom: 5px;
  cursor: pointer;
}
.footer-section ul  a{
    text-decoration: none;
    color: white;
}

.footer-section ul li:hover {
  text-decoration: underline;
}

.footer-section .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.footer-section .btn-outline-light:hover {
  background-color: #ffffff;
  color: #1f37b6;
}

.footer-section i {
  font-size: 14px;
}

.footer-section p {
  margin-bottom: 5px;
 
}

.footer-section .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
  .banner-section {
      /*background: linear-gradient(to right, #003b6f, #005fa3);*/
      /*color: #fff;*/
      /*padding: 60px 0;*/
    /*background: url(../img/7.png) no-repeat center center;*/
    /*background-size: cover;*/
    
   /*height: 85vh;*/
    position: relative;
    }
    /* Style Owl Carousel nav buttons */
.banner-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.banner-section .owl-nav button.owl-prev,
.banner-section .owl-nav button.owl-next {
  /*background: white !important;*/
  border: none !important;
  font-size: 54px !important;
  width: 40px;
  color: black !important;
  height: 40px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  padding: 0; /* ⛔️ Remove extra padding that misaligns icon */
  line-height: 1; /* Optional: better vertical centering */
}

.banner-section .owl-nav button:hover {
  background: none !important;
  color: black !important;
}
   
    .banner-subtext {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem; /* slightly larger */
  color: white;
  line-height: 1.8;
  max-width: 700px;
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideInText 1s ease-out 0.3s forwards;
}

@keyframes fadeSlideInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-img {
  opacity: 0;
  transform: translateY(30px);
  animation: bannerImageFadeIn 1s ease-out 0.6s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 15px; /* optional for modern look */
}

/* On load animation */
@keyframes bannerImageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: hover effect */
.banner-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.custom-dropdown-toggle::after {
  display: none !important;
}

    .store-badge {
      width: 160px;
      height: auto;
    }
    .btn-wrapper {
      gap: 20px;
      flex-wrap: wrap;
    }
    @media (max-width: 767px) {
      .banner-content h2 {
        font-size: 1.8rem;
      }
    }
    
    
   h2 {
      font-weight: 700;
      color: #003bca;
      margin-bottom: 30px;
    }


.history {
  background-image: url('../img/bg-bw.jpg'); /* Use your actual image path */
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.history .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 1;
}

.history .container {
  position: relative;
  z-index: 2;
}

.history .main-img {
  position: relative;
  max-width: 300px;
}

.history .small-img {
  width: 130px;
  bottom: -20px;
  left: -40px;
  z-index: 3;
}

.material-bg-wrapper {
      position: relative;
  background: url('../img/uqhjsi.jpeg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
    overflow: hidden;
  z-index: 1;

}
.material-bg-wrapper .material-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); /* Fade effect */
  z-index: 2;
  pointer-events: none; /* Allow clicks to pass through */
}

/* Ensure your content is on top of the overlay */
.material-bg-wrapper > *:not(.material-overlay) {
  position: relative;
  z-index: 3;
}
.material-badge{
        position: absolute;
    top: 10px;
    left: 10px;
    background-color: black;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;

}
.material-grid {
  display: flex;
  flex-wrap: wrap;

  justify-content: flex-start;
}

.material-box {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.material-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.material-box:hover img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: black;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 2;
}

.material-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.material-info h5 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

.plus {
  width: 20px;
  height: 20px;
  background-color: gold;
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 17px;
  border-radius: 2px;
  font-size: 18px;
}



/*      .product-card {*/
/*      border: 1px solid #e0e0e0;*/
/*      padding: 15px;*/
/*      text-align: center;*/
/*      height: 100%;*/
/*    }*/

    /*.product-card img {*/
    /*  max-height: 180px;*/
    /*  object-fit: contain;*/
    /*  margin-bottom: 15px;*/
    /*}*/

/*    .product-meta {*/
/*      font-size: 14px;*/
/*      color: #666;*/
/*    }*/

/*    .product-title {*/
/*      font-weight: 600;*/
/*      margin-bottom: 5px;*/
/*      font-size: 16px;*/
/*    }*/

/*    .filter-bar {*/
     
/*      padding: 15px;*/
/*      margin-bottom: 30px;*/
/*      display: flex;*/
/*      flex-wrap: wrap;*/
     
/*      align-items: center;*/
/*    }*/

/*    .filters-title {*/
/*      font-weight: bold;*/
/*      margin-right: 10px;*/
/*    }*/
    .category-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-box:hover {
  background: linear-gradient(to right, #003b6f, #005fa3);
  color: white;
  transform: scale(1.05);
}

    
/*      .product-image {*/
/*    position: relative;*/
/*    text-align: center;*/
/*    padding: 20px;*/
/*  }*/
/*  .product-image img {*/
/*    width: 100%;*/
/*    max-width: 180px;*/
/*    height: auto;*/
/*    transition: 0.3s;*/
/*  }*/

/*  .overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(0, 0, 0, 0.6);*/
/*    color: white;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    opacity: 0;*/
/*    transition: 0.3s;*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*  }*/

/*  .product-card:hover .overlay {*/
/*    opacity: 1;*/
/*  }*/
.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  text-align: center;
  /*background: #f9f9f9;*/
  /*padding: 20px 10px;*/
}

.product-image img {
    width: 100%;
    max-width: 54%;
    height: auto !important;
    object-fit: contain !important;
    transition: 0.3s ease;
}
.product_cat_title{
    margin-bottom: 30px;
    text-transform: capitalize;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 59, 111, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-details {
  background-color: #fff;
  padding: 16px;
}

.product-meta {
  font-size: 14px;
  color: #888;
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  color: #003b6f;
  margin: 5px 0;
}

   .how-we-work-section {
    padding: 60px 0;
  }

  .how-we-work-section h2 {
    color: #2b3dd0; /* Matches the heading color in your image */
    font-weight: 700;
    margin-bottom: 20px;
  }

  .how-we-work-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .how-we-work-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
  }
   .progress-card {
    position: relative;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    min-height: 130px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .progress-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .progress-card .corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.3;
  }

  .progress-card h5 {
    font-weight: bold;
    font-size: 1.5rem;
  }

  .progress-card p {
    margin: 0;
    font-size: 0.95rem;
    color: black;
  }

  /* Individual color borders */
  .border-yellow {
    border-color: #e8e765;
    color: #e8e765;
  }

  .border-blue {
    border-color: #394ccf;
    color: #394ccf;
  }

  .border-green {
    border-color: #2dc653;
    color: #2dc653;
  }

  .border-pink {
    border-color: #e285e2;
    color: #e285e2;
  }
  
.benefits-section {
  background: url('../img/benefits-desktop.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #000;
}

.section-title {
  color: #1b3fc6;
  font-weight: bold;
  margin-bottom: 30px;
}

.benefits-heading {
  font-weight: 700;
  margin-bottom: 20px;
}

.benefit-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 5px solid #ccc;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.benefit-box .number {
  font-size: 20px;
  font-weight: bold;
  color: #b0b0b0;
  margin-right: 15px;
  min-width: 40px;
}

.construction-section {
  position: relative;
  background-attachment: fixed !important;
  background: url('../img/const.png') no-repeat center center;
  background-size: cover;
  color: white;
  z-index: 1;
  overflow: hidden;
}

/* Dark overlay */
.construction-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Adjust darkness here */
  z-index: -1;
}


.section-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.section-desc {
  font-size: 1rem;
  color: white;
}

.info-card {
  background-color: #f7f7f7;
  color: #000;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.95rem;
}

/* Hover effects for each card */
.info-card:nth-child(1):hover {
  background-color: #dbeafe; /* light blue */
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.info-card:nth-child(2):hover {
  background-color: #fef3c7; /* light yellow */
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(234, 179, 8, 0.3);
}

.info-card:nth-child(3):hover {
  background-color: #e0f2f1; /* teal light */
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(13, 148, 136, 0.3);
}

.info-card:nth-child(4):hover {
  background-color: #fde68a; /* amber */
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}
.get-started-heading {
  color: #1d3edc;
  font-weight: 700;
}

.left-box {
     background: url('../img/getstarted-bg.png') no-repeat center center;
  background-size: cover;
  border-radius: 6px;
  height: 100%;
  position: relative;
}

.testimonial-img-wrapper {
  margin: auto;
  border: 8px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  display: flex;
  align-items: center;
  animation: float 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.quote-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.testimonial-item {
  transition: transform 0.3s ease;
}
.testimonial-item:hover {
  transform: translateY(-5px);
}

.styled-testimonial-img {
  width: 100%;
  height: auto;
  /*border-radius: 50%;*/
  object-fit: cover;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Optional hover effect */
.testimonial-img-wrapper:hover {
  transform: scale(1.05);
}


.right-box {
  background-color: #fff;
  border-radius: 6px;
}

.badge {
  font-size: 0.75rem;
  padding: 0.35em 0.6em;
}

.section-heading-carousel {
  color: #1d3edc;
  font-weight: 700;
  text-transform: uppercase;
}

/*.associated-carousel .item img {*/
/*  max-height: 70px;*/
/*  object-fit: contain;*/
/*  margin: auto;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.associated-carousel .item img:hover {*/
/*  transform: scale(1.1);*/
/*}*/
.associated-carousel .item {
  padding: 10px;
  text-align: center;
}

.associated-carousel .item img {
  width: 100%;                /* Full width of container */
  max-width: 187px;           /* Optional: control how wide they can be */
  height:122px;               /* Fix the height */
  object-fit: contain;        /* Fit inside box without cropping */
  display: block;
  margin: 0 auto;
  background-color: #fff;     /* Optional: to give uniform white bg */
  padding: 10px;              /* Optional: space around logo */
  border-radius: 8px;         /* Optional: rounded edges */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Optional: subtle shadow */
}
.trusted-logo {
  border: 1px solid #ddd;
  background-color: #fff;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  max-height: 50px;
  object-fit: contain;
}
.btn-modern-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background:linear-gradient(to right, #003b6f, #005fa3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.btn-modern-call i {
  color: #00d1ff;
  transition: transform 0.3s ease;
}

.btn-modern-call:hover {
  background: linear-gradient(135deg, #0069d9, #00c8ff);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 191, 255, 0.3);
}

.btn-modern-call:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

/* Ripple animation */
.btn-modern-call .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-modern-call:active .ripple {
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
}

.top-whats {
    color: #fff !important;
    background-color: #198754;
    border-color: #198754;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.hero-section {
  position: relative;
  overflow: hidden;
  height: 50vh; /* Set to viewport height or as needed */
  background-image: url('../img/helmet.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

/*.bg-img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-dark overlay */
  padding: 60px 0;
}

.hero-overlay h2,
.hero-overlay p {
  color: #fff;
}

.single-banner-image {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.single-banner-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

 .product-image-new {
            position: relative;
            overflow: hidden;
        }

        .product-image-new img.main-img {
                border: 1px solid #ccc;
    padding: 27px;
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 11px;
        }

        .product-image-new:hover img.main-img {
            transform: scale(1.2);
        }

        .thumbnail-list img {
        cursor: pointer;
    width: 18%;
    margin: 4px;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 3px;

        }
  .thumbnail-list{
      display: flex !important
;
    flex-wrap: wrap;
    justify-content: center;
  }
        .thumbnail-list img.active {
            border-color: #f1c40f;
        }

        .product-section-title {
            background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
            padding: 80px 0;
            color: white;
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
        }

        .related-products img {
            height: 200px;
            object-fit: contain;
        }
        .detail-products-text .badgess{
       
    position: static;
    top: 10px;
    left: 10px;
    background-color: #ccc !important;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 5px;
    text-transform: uppercase;
    z-index: 2;
    font-weight: 700;
}
.product-price{
    font-size: 25px;
}
.quantity-wrapper {
    width: 120px;
    height: 42px;
    overflow: hidden;
}

.quantity-input {
    max-width: 40px;
    height: 100%;
    padding: 0;
    font-size: 16px;
}

 .count-icon{
         display: inline-block;
    font-weight: 1000;
   
    cursor: pointer;
   
   
    background-color: white;
    border: none;
   
    font-size: 1rem;
   
 }      
.enquiry-btn{
      text-align: center;
    background: linear-gradient(to right, #003b6f, #005fa3);
    border: 1px solid #ccc;
    padding: 8px 10px;
    border-radius: .25rem;
    color: white;
     display: inline-block;
text-decoration: none;
 transition: background-color 0.3s ease;
}
.enquiry-btn:hover{
     background: linear-gradient(to right, #005fa3, #003b6f);
     color: white;
}
.basket-btn {
  display: inline-block;
  padding: 8px 10px;
  background-color: #343a40; /* dark grey/black */
  color: #fff;
  border-radius: .25rem;
  text-decoration: none;
  
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
}

.basket-btn:hover {
  background-color: #212529; /* darker on hover */
  text-decoration: none;
  color: #fff;
}


.table th {
    font-weight: 600;
    vertical-align: middle;
}

.table td {
    vertical-align: middle;
}

.icon-box img {
  width: 60px;
  height: 60px;
  background-color: #fff3c1;
  padding: 3px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #eee;
}
.icon-box p {
  font-weight: 500;
  color: #000;
}




.filter-options {
  display: none;
  padding-left: 15px;
  padding-top: 8px;
}

.filter-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icon {
  font-size: 27px;
  font-weight: normal;
  color: #666;
  transition: transform 0.3s;
}

.product-detail-new-section {

  border-bottom: 1px solid #dcdcdc;
  padding: 1.2rem 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.breadcrumb-text {
 
  color: #6c757d;
  margin: 14px 14px 14px 0;
    font-size: 14px;
  
}

.breadcrumb-text a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;

}

.breadcrumb-text a:hover {
  color: #0056a3;
  text-decoration: underline;
}

.breadcrumb-text strong {
  color: #111;
  font-weight: 600;
}

.results-text {
  font-size: 18px;
  color: #333;
    text-align: end;
     margin: 14px 0 14px 14px ;
  font-weight: 500;
}

.product-list-head{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.product-list-side-bar{
        display: flex;
    align-items: baseline;
}
.category-section {
  background-color: #fff;
}

.category-heading {
  font-size: 16px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.category-list {
  padding-left: 0;
}

.category-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease, font-weight 0.3s;
}

.category-item:hover {
  color: #000;
  font-weight: 500;
}
.main-header-container{
    width: 100%;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #0b0c4c;
  z-index: 1050;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
  #mobileSearchOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(126 125 125 / 57%);
    z-index: 9999;
    padding: 1rem;
  }
#mobileSearchOverlay .close-btn {
    position: absolute;
    /* top: 1rem; */
    /* width: 35px; */
    border-radius: 5px;
    /* background-color: white; */
    right: 1rem;
    font-size: 1.8rem;
    /* background: none; */
    border: none;
    height: 45px;
    line-height: 10px;
}
  
.nav-link[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.nav-link[aria-expanded="false"] i {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.footer-logo{
    max-width:22%;
}

@media (max-width:427px){
    /*.custom-search-bar .form-control{*/
    /*    display: none;*/
    /*}*/
    .footer-logo{
    max-width:50%;
}
   .input-group{
               /* padding: 0px 3px; */
        width: 90%;
        /*margin-left: 36px;*/
        display: flex;
        flex-wrap: nowrap;
        
    }
    .main-header-container{
        display: flex;
        flex-wrap: nowrap;
            width: 43%;
    }
    .btn-modern-call span{
        display: none;
    }
    .btn-modern-call {
       
        display: none !important;
}

.dropdown-item{
    font-size: 10px;
}
.custom-search-bar .form-control{
        padding: 10px 11px;
}

.single-banner-image img{
    display: none;
}
.single-banner-image{
    height: 0;
}
.category-box{
    font-size: 14px;
}
.category-section{
    padding: 0 !important;
}
.mobile-menu{
    display: flex;
    justify-content: space-between;
    place-items: center;

}

}

@media (max-width:775px){
  .btn-modern-call{
               padding: 12px 14px !important;
        font-size: 13px;
        gap: 0;
    }
  
    .mobile-menu{
    display: flex;
    justify-content: space-between;
    place-items: center;

}
.custom-search-bar-new .form-control  {
    font-size: 13px;
}

.custom-search-bar-new {
    margin-right: -70px;
    margin-left: 80px;
}
.history h2{
    font-size: 22px;
    
}
.material-box img{
        height: 211px;
}
.material-badge{
    font-size: 9px;
        left: 4px;
}
.material-info h5{
        font-size: 11px;
}
.category-box{
        font-size: 15px;
}
.progress-card p{
    font-size: 13px;
}
.section-desc{
    font-size: 13px;
}
.section-heading{
        font-size: 24px;
}
.info-card{
        padding: 9px;
}
.info-card h5{
        font-size: 15px;
}
.info-card p {
    font-size: 12px;
}
.footer-section .email-footer{
    display: flex;
    
}
}
@media (max-width:320px){
    .whatsapp-button{
        display: none;
    }
}
@media (max-width: 775px) and (min-width: 765px) {
  .whatsapp-button {
    display: none;
  }
}


/* new css  */

        .blog-section {
            background: linear-gradient(to right, #005fa3, #003b6f);
            padding: 80px 0;
            color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 20px;
                color: #fff;
        }
        
        .section-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
                color: #fff;
        }
        
        .blog-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-date {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
            display: block;
        }
        
        .blog-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: #ffc107;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        .tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }

.blog-detail-header {
    padding: 60px 0 1px;
    background: rgba(0, 91, 163, 0.3);
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}
        
        .blog-title {
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.3;
            color: white;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .blog-title span {
            color: var(--accent-gold);
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
        }
        
        .blog-date {
            background: var(--light-bg);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.95rem;
            backdrop-filter: blur(5px);
        }
        
        .featured-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }
        
        .blog-content {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 20px 60px;
            color:#fff;
        }
        
        .blog-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .blog-content h2 {
            font-size: 2rem;
            margin: 60px 0 30px;
            font-weight: 700;
            color: white;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-teal);
            position: relative;
        }
        
        .blog-content h2:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--accent-gold);
        }
        
        .blog-content h3 {
            font-size: 1.6rem;
            margin: 45px 0 25px;
            font-weight: 600;
            color: var(--accent-gold);
        }
        
        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.15);
        }
        
        .specs-table {
            width: 100%;
            margin: 40px 0;
            border-collapse: collapse;
            background: var(--light-bg);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .specs-table th, .specs-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .specs-table th {
            background-color: rgba(0, 91, 163, 0.5);
            font-weight: 600;
            color: white;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .benefits-list {
            list-style-type: none;
            padding-left: 0;
            margin: 30px 0;
        }
        
        .benefits-list li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        
        .benefits-list li:before {
            content: "✓";
            color: var(--accent-teal);
            position: absolute;
            left: 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        
        @media (max-width: 768px) {
        .blog-title {
        font-size: 1.3rem;
    }
        .blog-content{
        overflow-y: scroll;
    }
    .blog-content {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 0px 60px;
}
            
            .featured-image {
                height: 350px;
            }
            
            .blog-content h2 {
                font-size: 1.2rem!important;
            }
            
            .blog-content h3 {
                font-size: 1.4rem;
            }
            .blog-section {
    padding: 40px 0;
}
.blog-section .section-title h2 {
    font-size: 2rem;
}
        }
        
        
.blg_detail_bg{
    background: linear-gradient(135deg, #005fa3, #003b6f);
            color: #f8f9fa;
            min-height: 100vh;
}



.custom-mega-menu {
  background: #fff !important;
  border-top: 4px solid #ff9202 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1)!important;
  padding: 0;
}

.abi_mega-menu_pic{
    border: 1px solid #eee;
    width: 100%;
    height: 50px;
    object-fit: contain;
    border-bottom: 1px solid #fa8f02
}

.custom-mega-container {
  padding: 0 1rem;
}

.custom-mega-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #003b6f;
  margin-bottom: 10px;
}

.custom-mega-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-mega-list li {
  border-bottom: 1px solid #ff9202;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  padding-bottom: 4px;
}

.custom-mega-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #005fa3;
}

.custom-mega-link {
     text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: -0.7s !important;
    display: block;
}

.custom-mega-link:hover {
  color: #005fa3;
  font-weight: 500;
}

.custom-mega-toggle {
  color: black !important;
  font-weight: 600;
}

.custom-mega-toggle:hover {
  color: #0d6efd !important;
  font-weight: 600;
}
#searchResult {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    z-index: 999999 !important;
}

#searchResult .list-group-item.disabled {
    background-color: #f8f9fa;
    color: #495057;
        font-size: 0.7rem;
    padding: 0.4rem 1rem;
}

.custom-search-bar-new {
    position: relative;
}

#searchResult {
    position: absolute;
    top: 100%;
    left: 0;
}
/* Shared styles for both desktop and mobile */
#mobileSearchResult .section-header {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    font-weight: bold;
    pointer-events: none;
    font-size: 0.7rem;
}

#mobileSearchResult .result-item:hover {
    background-color: #f8f9fa;
}
