

 
   .top-bar {
      background: #f2f2f2;
      font-size: 14px;
      padding: 10px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ddd;
      position: relative;
      z-index: 1;
    }

    .top-bar span {
      color: #444;
    }

    .top-bar span + span {
      border-left: 2px solid #ccc;
      padding-left: 20px;
    }

    .header-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 80px;
      background: #f2f2f2;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

.header-left img {
  height: 45px !important;
  width: 160px !important; /* Proportional width based on height */
}

    .header-center {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .header-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-item i {
      font-size: 20px;
      color: #EF3C3C;
    }

    .header-item .info-title {
      font-weight: 600;
      font-size: 14px;
      color: #111;
    }

    .header-item .info-sub {
      font-size: 13px;
      color: #444;
    }

    .header-right .quote-btn {
      background: #EF3C3C;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 3px;
      cursor: pointer;
    }

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 10010;
  background: transparent; /* Let the pseudo-element show */
  max-width: 90%;
  margin: 0 auto;
}

/* Use ::before for clip-path visual only */
.navbar-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #EF3C3C
;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 35%),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 35%)
  );
  z-index: -1; /* Send it behind content */
}

/* Important: Ensure dropdowns are visible */
.navbar-wrapper * {
  position: relative;
  z-index: 1;
}


    .navbar-wrapper.sticky-shadow {
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .navbar {
 padding-right: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  .navbar-toggle {
 display: none;
  }
    .navbar ul {
      display: flex;
      list-style: none;
      gap: 25px;
      margin-top: 23px;
    }

    .navbar ul li {
      position: relative;
    }

    .navbar ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
    }

    .navbar ul li:hover::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0px;
      width: 100%;
      height: 2px;
      background: #fff;
    }

    .navbar-icons {
      display: flex;
      align-items: center;
      color:orange;
      font-size: 18px;
      gap: 20px;
    }

    /*  */
    /* Dropdown Styles */
.navbar ul li .dropdown-menu {
  display: none;
  position: absolute;

  left: 0;
  background: #fff;
  padding: 0px 0;
  margin: 0;
  min-width: 180px;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-top: 3px solid #F7941D; /* Optional visual accent */
  transition: all 0.3s ease-in-out;
}

.navbar ul li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: #007D8A !important; /* Orange text */
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #fff0e0; /* Light orange hover */
}

/* Hide top-bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
.quote-btn {
      background: #EF3C3C;
      color: #fff;
      border: none;
      font-weight: 600;
      border-radius: 3px;
      cursor: pointer;
      width: 100%;
    }
  .header-main {
    padding: 10px 20px;
  }

  .header-left img {
    height: 60px;
  }

  .header-center {
    display: none; /* Hide center section on mobile */
  }

  .header-right {
    display: flex;
    justify-content: flex-end;
  }

  .navbar {
    padding: 10px 20px;
    justify-content: space-between;
  }

  .navbar ul {
    display: none; /* You can add a toggle later */
  }

  .navbar-toggle {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    display: block;
  }
}

/* Sticky Navbar Shadow */
.navbar-wrapper.sticky-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Sticky Navbar Logic */
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}


/* sidebar  */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  transition: left 0.4s ease;
  padding: 25px 30px;
  z-index: 10010 !important;
  overflow-y: auto;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.sidebar.active {
  left: 0;
}

.sidebar .close-btn {
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  color:#EF3C3C;
  transition: transform 0.3s;
}

.sidebar .close-btn:hover {
  transform: rotate(90deg);
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin: 20px 0;
  position: relative;
}

.sidebar ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  color: #333;
  
  transition: 0.3s ease;
  font-weight: 500;
}

/* .sidebar ul li a:hover {
  background: linear-gradient(135deg, #ffe0b2, #ffcc80);
  color: #F7941D;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
} */

.sidebar ul li.has-dropdown > a {

  font-weight: 600;
}

.sidebar ul li.has-dropdown > a .dropdown-icon {

  font-size: 14px;
  transition: transform 0.3s;
}

.sidebar ul li.active .dropdown-icon {
  transform: rotate(180deg);
}

.sidebar ul li .submenu {
  display: none;
  margin-top: 0px;
  padding-left: 20px;
}

.sidebar ul li.active .submenu {
  display: block;
}

.sidebar ul li .submenu li a {
  background: transparent;
  box-shadow: none;
  padding: 8px 15px;
  font-size: 16px;
  color: #555;
}

.sidebar ul li .submenu li a:hover {
  background: #fff5e6;
  color: #EF3C3C;
  border-radius: 8px;
}

.sidebar .navbar-icons {
  margin-top: 0px;
  display: flex;
  gap: 10px;
  padding-left: 10px;
}

.sidebar .navbar-icons i {
  font-size: 20px;
  cursor: pointer;
  color: #EF3C3C;
  transition: transform 0.3s ease, color 0.3s;
}

.sidebar .navbar-icons i:hover {
  color: #EF3C3C;
  transform: scale(1.2);
}

/* sidebar */

    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #EF3C3C;
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      z-index: 1000;
    }
 
 
 
 
 
 
 
 
 
 
 
  .subscribe {
      margin-top: -0px;
    }
.subscribe .logo {
  width: 70px !important;
  height: 35px !important;
}


.subscribe h2 {
  font-size: 22px;
  margin-bottom: 0px;
  color: #fff !important;
}
.product-intro h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #003366;
}

.product-intro p {
  font-size: 18px;
  color: #fff;
}


    .footer {
      background-color: #111;
      padding: 60px 20px 30px;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1400px;
      margin: auto;
    }
    .footer-content {
margin-bottom: -40px !important;
  color: #ffffff;           /* White text */
  text-align: center;       /* Center alignment */
  padding: 20px 10px;
  border-top: 2px solid #ffffff; /* White border at the top */
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

    .footer-column {
      flex: 1 1 230px;
      margin: 20px;
    }
    .footer h3 {
      font-size: 16px;
      color: #fff;
      text-transform: uppercase;   
      margin-bottom: 10px;
    }
    .footer h3::after {
      content: "";
      display: block;
      width: 30px;
      border-bottom: 3px solid #EF3C3C;
      margin-top: 5px;
    }
    .footer p, .footer a {
      font-size: 14px;
      color: #bbb;
      text-decoration: none;
    }
    .footer a:hover {
      color: #ff6600;
    }
    .footer .social-icons a {
      display: inline-block;
      color: #fff;
      background: #222;
      padding: 8px 10px;
      margin-right: 8px;
    }
    .footer .social-icons a:hover {
      background: #ff6600;
    }
    .footer .useful-links li {
      list-style: none;
      margin: 8px 0;
    }

    .footer .contact-info i {
      background: #EF3C3C;
      padding: 8px;
      margin-right: 10px;
      color: #fff;
    }
    .popular-post {
      display: flex;
      margin-bottom: 20px;
    }
    .popular-post img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      margin-right: 10px;
    }
    .popular-post .text {
      font-size: 13px;
    }
    .popular-post .text .date {
      display: flex;
      align-items: center;
      font-size: 12px;
      color: #999;
    }
    .popular-post .text .date i {
      margin-right: 5px;
    }
    .subscribe {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #000;
      padding: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    .subscribe input[type="email"] {
      padding: 10px;
      flex: 1;
      max-width: 300px;
      margin-right: 10px;
      border: none;
    }
    .subscribe button {
      padding: 10px 20px;
      background: #EF3C3C;
      border: none;
      color: white;
      cursor: pointer;
    }
    .useful-links{
      margin-left: -30px !important;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
      }
      .subscribe {
        flex-direction: column;
        align-items: flex-start;
      }
      .subscribe input[type="email"] {
        margin-bottom: 10px;
        width: 100%;
      }
    }


    
/* Footer mobile responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* Align footer content to the left */
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
    text-align: left; /* Left align the text */
  }

  .footer h3 {
    font-size: 14px;
  }

  .footer .social-icons {
    text-align: left; /* Align social icons to the left */
  }

  .footer .useful-links {
  text-align: left; 
  }

  .subscribe {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe input[type="email"] {
    margin-bottom: 10px;
    width: 100%;
  }

  .subscribe button {
    width: 100%;
    margin-top: 10px;
  }

  .footer .contact-info i {
    margin-right: 8px;
  }
}

/* Small mobile view (under 480px) */
@media (max-width: 480px) {
  .footer h3 {
    font-size: 12px;
  }

  .footer p, .footer a {
    font-size: 12px;
  }

  .footer-column {
    margin: 10px 0;
  }

  .subscribe button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .subscribe input[type="email"] {
    padding: 8px;
    font-size: 14px;
  }
}





