  
     html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      /* overflow-x: hidden !important; */
    }

 /* Floating call icon container */
    .call-floating {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
    }

    /* Button style */
    .call-btn {
      background: linear-gradient #FF6119 ;
      color: white;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 32px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      position: relative;
      animation: pulse 2s infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.btuo .btn {
    background-color: #FF6119 !important;
    color: white !important;
}
.btuo .btn i {
    background-color: #FF6119 !important;
    color: white !important;
}
.btuo .btn:hover {
    background-color: #f55a12 !important;
}
.btuo .btn i:hover {
    background-color: #f55a12 !important;
}

    /* Glow effect on hover */
    .call-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 25px #FF6119;
    }

    /* Pulse animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      }
      70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Tooltip text */
    .tooltip-text {
      position: absolute;
      bottom: 80px;
      right: 50%;
      transform: translateX(50%);
      background: #128c7e;
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.3s ease;
      white-space: nowrap;
    }
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #d2d5d9;
}
    .call-btn:hover .tooltip-text {
      opacity: 1;
    }
    /* Top Bars */
    .top-header {
      background-color: #000;
      color: #fff;
      padding: 5px 15px;
      font-size: 14px;
    }

    .top-contact {
      background-color:#022f71;
      color: #fff;
      padding: 10px 60px;
      font-size: 16px;
    }
    .container-fluid{
         padding: 0px 60px;
         margin: 0px;
    }
    @media (max-width: 768px) {
  .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
  }
}
    .navbar {
      background-color: #fff;
      z-index: 1000;
    }
    .navbar-brand{
     margin: 0px;
     padding: 0px;
    }
    .navbar-brand img{
     margin: 0px;
     padding: 0px;
    }

    .quick-query-btn {
      background-color: #000;
      color: #fff;
      padding: 6px 15px;
      border: none;
      border-radius: 4px;
    }

    /* Hover Dropdown - Desktop Only */
    @media (min-width: 992px) {
      .navbar-nav .dropdown-menu {
        opacity: 0;
        width: 215px;
        visibility: hidden;
        transform: translateY(-100px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: block !important; /* override default display:none */
      }

      .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
    }
   
  .fa-brands, .fab {
    font-weight: 400;
    font-size: 19px;
    color: #fff;
}
    /* Carousel */
   

    /* Mobile Social Icons */
    .mobile-social {
      background-color: #022f71;
    }

    /* Custom Offcanvas for Mobile */
    .custom-offcanvas {
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      background-color: #00bbd4;
      box-shadow: -2px 0 10px rgba(0,0,0,0.2);
      z-index: 1050;
      transition: right 0.3s ease-in-out;
      padding: 20px;
      overflow-y: auto;
    }

    .custom-offcanvas.open {
      right: 0;
    }

    .custom-offcanvas .nav-link {
      display: block;
      padding: 10px 0;
      color: #fff !important;
      text-decoration: none;
      font-family: nunito;
      font-weight: 500 !important;
      font-size: 20px !important;
    }
    .nav-link{
     
      color: #333;
      text-decoration: none;
      
      font-weight: 500;
      font-size: 16px;
    }
    .nav-link:hover{
      color: #fff;
      background-color: #FF6119;
      border-radius: 5px;
    }

    .offcanvas-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.3);
      z-index: 9999999;
      display: none;
    }

    .offcanvas-backdrop.show {
      display: block;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu-mobile {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 15px;
    }

    .dropdown-menu-mobile.open {
      max-height: 500px; /* enough height to show all items */
    }

    /* Dropdown toggle pointer */
    .dropdown-toggle-mobile {
      cursor: pointer;
      user-select: none;
      position: relative;
    }

    /* Add a little arrow for dropdown toggle */
    .dropdown-toggle-mobile::after {
      content: "▾";
      position: absolute;
      right: 10px;
      font-size: 12px;
      top: 50%;
      transform: translateY(-50%);
    }




    /* footer start */

.footer {
  position: relative;
  padding: 80px 0 30px;
  background: linear-gradient(rgba(10, 45, 130, 0.95), rgba(10, 45, 130, 0.95)),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') center/cover no-repeat;
  color: #fff;
}

/* Brand */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto;
}

.footer-brand i {
  font-size: 28px;
  color: white;
}

.footer-brand h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand .tagline {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  margin-right: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a i:hover {
  color: #FF6119 !important;
}

/* Titles */
.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: popins;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links i {
  color: white;
  font-size: 18px;
}

.footer-links i:hover {
  color: #FF6119 !important;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e0e7ff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FF6119 !important;
  padding-left: 5px;
}

.footer-links h4:hover {
  color: #FF6119 !important;
  padding-left: 5px;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-bottom p a {
  color: white;
}

.payment-icons i {
  font-size: 30px;
  margin-left: 10px;
  opacity: 0.9;
}


/* footer end */

/* about */
.hid{
    display: flex;
    justify-content: center;
}
#about-in{
    padding: 10px;
    padding-top: 40px;
    padding-bottom: 80px;
}
.hid h3{
    color:#022f71;
}
.hid h6{
    color:#FF6119;
}
.hid p{
        line-height: 28px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #989898;
    text-align: justify;
}
.hid1 {
   
    display: flex;
    justify-content: center;
    align-items: center;
   
    position: relative;
    z-index: 99999;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
.hid1 .jk{
    color: #fff;
    position: absolute;
    width: 100%;
    top: 50px;
    bottom: 50px;
    right: 0;
    background: #022f71;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    z-index: -1;
}
.hiu .fsi a{
    background-color: #022f71;
    color:white;
    padding: 10px;
}

.hiu .fsi a:hover{
    background-color: #0550c0;
    color:white;
    padding: 10px;
}

.goi{
    display: flex;
    gap: 20px;
}
.hiu .fsi1 a p {
    color:#000 !important;
}
.hiu .fsi1 a p i {
    gap: 10px;
    padding-left: 10px ;
}
.cod{
    display: flex;
    align-items: center;

}
.hj h6{
    color: #FF6119;
}

.hj h3{
    color: #022f71;
    padding-bottom: 40px;
}

.cod{
    padding-top: 20px;
    padding-bottom: 20px;
}
.cod .card{
    border: none !important;
    box-shadow: 1px 1px 15px #FF6119;
    overflow: hidden;
}
.cod .card a {
    color:#022f71;
}
.cod .card a:hover{
    color: #FF6119 !important;

}
.cod .card .card-title {
  color: #022f71 !important;
}
.cod .card .card-title:hover {
  color: #FF6119 !important;
}
.cod .card .opt{
  position: relative;
}

.cod .card .opt:after{
  background-color: #0550c07c !important;
      position: absolute;
    left: -100%;
    bottom: 0px;
    content: '';
    top: 0px;
    transform: scaleX(1);
    opacity: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
}

.cod .card:hover .opt:after{
  left: 0;
}

/* contact */
.callback-container {
            max-width: 90%;
            margin: 50px auto;
            background-color: #ff6600; /* Orange form background */
            padding: 40px;
            border-radius: 8px;
            color: #fff;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
                margin-top: inherit;
        }
        .callback-left {
            flex: 1 1 40%;
        }
        .callback-left h2 {
            margin: 0 0 20px;
            font-size: 28px;
            font-weight: bold;
        }
        .callback-left p {
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 16px;
        }
        .contact-info {
            margin-top: 20px;
            font-size: 14px;
        }
        .contact-info div {
            margin-bottom: 5px;
        }
        .callback-right {
            flex: 1 1 55%;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .callback-right input, .callback-right select, .callback-right textarea {
            width: calc(50% - 7.5px);
            padding: 10px;
            border: none;
            border-radius: 4px;
        }
        .callback-right textarea {
            width: 100%;
            height: 100px;
        }
        .callback-right button {
            padding: 10px 20px;
            background-color: #fff;
            color: #0d1a3b;
            border: 1px solid #0d1a3b;
            cursor: pointer;
            font-weight: bold;
            border-radius: 0 4px 4px 0;
        }
        .callback-right .submit-container {
            display: flex;
            align-items: center;
            width: 100%;
        }
/* end contact  */


.cod1 .card{
    border: none !important;
    box-shadow: 1px 1px 15px #FF6119;
    overflow: hidden;
}
.cod1 .card .opt1{
  position: relative;
}
.cod1 .card .opt1 h3{
display: block;
}
.cod1 .card:hover .opt1 h3{
display: flex;
justify-content: center;
align-items: center;
}
.cod1 .card .opt1 .ot{
  background-color: #0550c07c !important;
      position: absolute;
    bottom: -100%;
    left: 0px;
    content: '';
    right: 0px;
    transform: scaleX(1);
    opacity: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cod1 .card:hover .opt1 .ot{
  bottom: 0;
}

/* appoinment */
.banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #0550c0;
            padding: 15px 30px;
            border-radius: 6px;
            color: #fff;
            max-width: 1200px;
            margin: 20px auto;
        }

        .banner-left {
            font-size: 20px;
            font-weight: bold;
        }

        .banner-center {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 16px;
        }

        .call-icon {
            background-color: #ff6600;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            border: 2px dashed #fff;
        }

        .banner-right button {
            background-color: #ff6600;
            color: #fff;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
        }

        .separator {
            width: 1px;
            height: 40px;
            background-color: #fff;
            margin: 0 15px;
        }

        /* why choos us */
        .goh {
          background-image: url('img/lg.png');
        }


        .ink {
          display: grid;
          justify-content: center;
          align-items:center ;
         border-bottom: 4px double #FF6119 !important;
       

         padding: 15px;
    box-shadow: 1px 1px 20px #c2c0bf;
    overflow: hidden;
    border-radius: 5px;
        }
        .ink i {
          font-size: 40px;
          padding-bottom: 15px;
          padding-top: 20px;
          color: #FF6119;
        }
        .ink h3 {
          color:#022f71;
        }
        .ink p {
              line-height: 24px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #989898;
    text-align: justify;
margin-top: 0;
   
        }
        .ink:hover {
    background-color: #022f71;
    color:#e0e7ff;
        }
        .ink p:hover {
          color: white;
        }
        .ink i:hover {
          color: white;
        }

        #vision1{
          padding-top: 40px;
          padding-bottom: 40px;
        }

        /* table of about */

        .table-custom {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #555;
}

.table-custom th, .table-custom td {
    border: 1px solid #999;
    padding: 8px 12px;
    text-align: left;
}

.table-custom th {
    font-weight: bold;
    background-color: #f9f9f9;
    color: #666;
}

.table-custom td {
    background-color: #fff;
}

#dat1{
  padding-bottom: 40px ;
}

#map1{
  padding-bottom: 40px;
}
.lok h3{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #022f71;
      font-size: 28px;
    font-weight: bold;

}
#callto {
  padding-top: 40px;
}

/* address of contact page  */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffe6e0;
    color: #ff6b4a;
    font-size: 24px;
}

.contact-card h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #1a1a1a;
}

.contact-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
}


.addcon h2{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #022f71;
      font-size: 40px;
    font-weight: bold;
    padding-top: 20px;
}
/* end */

.why-choose-us {
    max-width: 1000px;
    margin: 50px auto;
    font-family: Arial, sans-serif;
    color: #022f71;
        margin-top: auto;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.why-choose-us .features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    flex: 1 1 250px;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
#goh h6 {
  color: #FF6119;
}
#lop {
  padding-bottom: 60px;
  padding-top: 40px;
}

/* product  */

.product-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .product-image {
        flex: 1 1 45%;
        text-align: center;
    }

    .product-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border: 1px solid #ccc;
        padding: 10px;
        background: #f9f9f9;
    }

    .product-details {
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 15px;
    }

    .product-details h1 {
        font-size: 28px;
        margin: 0;
        color: #333;
    }

    .price {
        font-size: 20px;
        font-weight: bold;
        color: #022f71 !important;
    }
.price a{
        color: #022f71 !important;
}
    .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .buttons button, .buttons a {
        padding: 12px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        border-radius: 4px;
        transition: 0.3s;
        text-decoration: none;
        color: #fff;
    }

    .buttons .quote-btn {
        background-color: #fff;
        color: #022f71 !important;
        border: 1px solid #022f71 !important;
    }

    .buttons .quote-btn:hover {
        background-color: #022f71 !important;
        color: #fff;
    } 

    .buttons .callback-btn {
        background-color: #FF6119;
    }

    .buttons .callback-btn:hover {
        background-color: #ff6219cb;
    }

    .buttons .inquiry-btn {
        background-color: #FF6119;
    }

    .buttons .inquiry-btn:hover {
        background-color: #ff6219cb;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }

    table tr td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

    table tr td:first-child {
        font-weight: bold;
        width: 40%;
        color: #555;
    }

    /* Responsive */
    @media(max-width: 992px) {
        .product-container {
            flex-direction: row;
        }
    }

    @media(max-width: 768px) {
        .product-container {
            flex-direction: column;
            padding: 10px;
        }

        .product-details h1 {
            font-size: 24px;
        }

        .buttons button, .buttons a {
            flex: 1 1 100%;
            text-align: center;
        }
    }

    #ppr {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    /* link of pro */
    .link-pro ol {
      list-style: none;
      font-size: 16px;
      gap: 10px;
      padding-right: 10px;
      
    }
    .link-pro ol li a{
    line-height: 2cqmax;
     list-style: none;
     text-decoration: none;
     padding-bottom: 5px;
     color: #022f71 ;
     font-weight: 500px;
     
    }
     .link-pro ol li a:hover{
      color: #FF6119;
     }
    .link-pro {
      border: 1px solid #ddd;
       box-shadow: 1px 1px 20px #c2c0bf;
       border-radius: 10px;
    
    }
    .link-pro h3 {
      padding-left: 20px;
      color: #022f71;
      padding-top: 10px;
      font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: popins;
    }

    /* form */

    .popo {
    font-family: Arial, sans-serif;
    background-color: #0b0b3c; /* dark background around form */
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  .quick-deal-form {
    background-color: #0b0b3c; /* form card background */
    padding: 30px;
    border-radius: 6px;
    width: 300px;
    box-sizing: border-box;
  }
  .quick-deal-form h2 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .quick-deal-form input,
  .quick-deal-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #2b2b5a; /* dark border similar to image */
    border-radius: 4px;
    background-color: #0b0b3c;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
  }
  .quick-deal-form input::placeholder,
  .quick-deal-form textarea::placeholder {
    color: #b0b0c0; /* placeholder color like image */
  }
  .quick-deal-form textarea {
    resize: vertical;
    min-height: 80px;
  }
  .quick-deal-form button {
    width: 100%;
    padding: 10px;
    background-color: #0646a5; /* blue button */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
  }
  .quick-deal-form button:hover {
    background-color: #0648ff;
  }
  .fofom {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .manufacturer-profile {
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.manufacturer-profile h2 {
  color: #022f71;
  font-size: 28px;
  margin-bottom: 15px;
}
.manufacturer-profile h3 {
  color: #022f71;
  margin-top: 25px;
  margin-bottom: 10px;
}
.manufacturer-profile p {
  margin-bottom: 15px;
  color: #333;
}
.manufacturer-profile strong {
  color: #000;
}