 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE 10+ */

    }

    /* For WebKit (Chrome, Safari) */
    body::-webkit-scrollbar {
  display: none;
}

/* Show scrollbars for dropdowns */
.dropdown-menu::-webkit-scrollbar {
  display: block;
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

    .hero-section {
      background-size: cover;
      background-image: url("/assets/Microteck.bg.jpg");
      background-position: center;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 2rem;
      width: 100%;
    }

    .tubular {
      font-size: 1.5rem;
      text-align: center;
      font-weight: 400px;

    }

    .header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .header p {
      font-size: 1.2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    span {
      color: rgb(78, 171, 211);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .battery-section {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      padding: 25px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .battery-image {
      flex: 0 0 200px;
      margin-right: 25px;
      margin-bottom: 15px;
    }

    .battery-image img {
      width: 100%;
      height: auto;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .battery-content {
      flex: 1;
      min-width: 250px;
    }

    .section-title {
      color: rgb(63, 63, 63);
      font-size: 1.2rem;
      margin-bottom: 15px;
      text-transform: uppercase;
      /* border-bottom: 2px solid #0066cc; */
      padding-bottom: 10px;
      font-weight: 400px;
    }

    .section-content {
      font-size: 1.1rem;
      line-height: 1.8;
    }


     @media (max-width: 980px) {
      .hero-section  {
        height: 500px;
      }
    }

    @media (max-width: 768px) {
      .header h1 {
        font-size: 2rem;
      }

      .header p {
        font-size: 1rem;
      }

      .section-content {
        font-size: 1rem;
      }

      .battery-image {
        flex: 0 0 150px;
        margin-right: 15px;
      }

      .hero-section {
        height: 280px;
      }
    }

    @media (max-width: 600px) {

      .battery-section {
        flex-direction: column;
        text-align: center;
      }

      .battery-image {
        margin-right: 0;
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 150px;
      }

      .hero-section {
        height: 250px;
      }
    }

    @media (max-width: 480px) {
     
      .header h1 {
        font-size: 1.5rem;
      }

      .tubular,
      .section-title {
        font-size: 1rem;
        text-align: center;
        font-weight: 400px;

      }

      .battery-section {
        padding: 15px;
      }

       .hero-section {
        height: 200px;
      }
    }

    @media (max-width: 300px) {
      
      .header h1 {
        font-size: 1.2rem;
      }

      .header p {
        font-size: 0.9rem;
      }

      .section-title {
        font-size: 1.1rem;
        padding-bottom: 5px;
        margin-bottom: 10px;
      }

      .section-content {
        font-size: 0.9rem;
      }

      .container {
        padding: 10px;
      }

      .battery-image {
        width: 120px;
      }
    }

    

    /* Header Section */

    /* Navigation */

    .header {
      background: #e6e2e2;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* padding: 1rem 0; */
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-right: 20px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: black;
      font-size: 20px;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background-color 0.2s;
    }

    .nav-links a:hover {
      color: #022f56;
    }

    /* Mobile menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #1e3a8a;
    }

    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-top: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
      display: block;
      text-align: center;
    }

    .mobile-nav-links {
      list-style: none;
      padding: 1rem;
    }

    .mobile-nav-links li {
      margin-bottom: 8px;
    }

    .mobile-nav-links a {
      display: block;
      padding: 12px;
      text-decoration: none;
      color: #1e3a8a;
      border-radius: 6px;
      transition: background-color 0.2s;
    }

    .mobile-nav-links a:hover {
      background-color: #f1f5f9;
    }

    .mobile-login {
      margin-top: 1rem;
    }

    .mobile-login .login-btn {
      width: 100%;
    }

    /* Reset default styles */
    .nav-links,
    .dropdown-menu {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* Dropdown styles */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
  max-height: 230px; /* adjust height as needed */
  overflow-y: auto;
  display: none; /* Hidden by default */
  position: absolute;
  background: white;
  z-index: 1000;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  /* Firefox scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

    .dropdown-menu li a {
      display: block;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu li a:hover {
      background-color: #f0f0f0;
    }

    /* Show menu when .open class is added */
    .dropdown.open .dropdown-menu {
      display: block;
    }

    /* *** */

    @media (max-width: 1104px) {

      .nav-links,
      .login-btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }
    }

    @media (max-width: 768px) {

      .nav-links,
      .login-btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }
    }

    /* *** */

    /* Footer Section */

    /* Footer */
    .footer {
      background: #021d3b;
      color: white;
      padding: 3rem 0 1rem;
    }

    #foot {
      padding-left: 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: rgb(215, 145, 91);
    }

    .footer-section p,
    .footer-section li {
      color: #cbd5e1;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-section a:hover {
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 1rem;
      text-align: center;
      color: #94a3b8;
      font-size: 0.9rem;
    }

    @media (max-width: 900px) {
      #foot {
        margin-right: 3rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .footer-bottom {
        font-size: 10px;
      }
    }

    /* *** */