
/* Mobile Styles */
@media (max-width: 768px) {
  .product-section {
    padding: 40px 15px; /* Less padding for mobile */
  }

  .product-container {
    width: 100%; /* Full width for small screens */
    padding: 0 10px;
  }

  .product-grid {
    flex-direction: column; /* Stack vertically */
    gap: 20px;
    align-items: center;
  }

  .product-card {
    width: 100%; /* Take full width of container */
    max-width: 400px; /* Optional limit for readability */
    padding: 15px;
  }

  .product-card img {
    height: 180px; /* Slightly smaller image on mobile */
  }

  .product-card h3 {
    font-size: 1rem; /* Adjust heading size */
  }

  .product-card p {
    font-size: 0.9rem; /* Slightly smaller text */
  }

  .spec-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .newsletter-section {
  background-color: #99c03c;
  padding: 80px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.newsletter-container {
  padding: 40px 0;
  margin: 0 auto;
  
}
.newsletter-section h3 {
  font-size: 35px;
}
.newsletter-section h3 span {
  font-size: 35px;
}
.newsletter-form input[type="email"] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; 
  width: 100%;
}
.newsletter-form button {width: 100%; padding: 20px; }
}
@media (max-width: 991px) {
  /* Remove margin from ml20 helper */
  .ml20 {
    margin-right: 0 !important;
  }

  /* Mobile Navbar Styles */
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    border-top: 5px solid #080402;
    z-index: 99;
    gap: 20px;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a,
  .dropdown-toggle {
    text-decoration: none;
    color: #080402;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    height: auto;
  }

  .nav-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }

  .navbar-cta {
    display: none;
  }

  /* Dropdown behavior for mobile (toggle with JS) */
  .dropdown-menu {
    display: none;
    position: static;
    background: #fff;
    border-top: 5px solid #000;
    box-shadow: none;
    padding: 10px 0;
    min-width: 100%;
    animation-name: opacity;
    animation-duration: 0.3s;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  /* Step Boxes Mobile */
  .step-boxes {
    padding: 40px 20px;
    background-color: #f9f9f9;
  }

  .step-boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .step-boxes-iner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    color: white;
    width: 100%;
    flex: 1 1 100%;
    box-sizing: border-box;
    transition: transform 0.2s;
    margin: 0;
  }

  .step-boxes-iner:hover {
    transform: translateY(-5px);
  }
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 80px 20px;
  }
  .newsletter-section {
  background-color: #99c03c;
  padding: 80px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.newsletter-container {
  padding: 40px 0;
  margin: 0 auto;
  
}
.newsletter-form input[type="email"] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; 
  width: 100%;
}
.newsletter-form button {width: 100%;}
}

@media (max-width: 480px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}
