.volamex-section {
    padding: 60px 20px;
  }
  
  .volamex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .volamex-card {
    background-color: transparent;
    border-radius: 2px;
    text-align: center;
    padding: 15px;
    width: 100%;
    max-width: 340px;
    border: solid 1px #79797991;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .volamex-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  .volamex-card-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  .volamex-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .volamex-card-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .volamex-card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #043c5a;
    color: #fff;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .volamex-card-btn:hover {
    background-color: #0c4275;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .volamex-container {
      flex-direction: column;
      align-items: center;
    }
  }








  /* ===== VOLAMEX BRANDS SECTION ===== */

.volamex-brands-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .volamex-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .volamex-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
  }
  
  .volamex-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .volamex-brand-item {
    display: block;
    width: 12%; /* changed from 18% to 20% */
    min-width: 120px;
    transition: transform 0.3s ease;
  }
  
  .volamex-brand-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .volamex-brand-item:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
  }
  
  .volamex-view-link {
    margin-top: 40px;
  }
  
  .volamex-view-link a {
    padding: 12px 30px;
    border: 1px solid #043c5a;
    border-radius: 2px;
    text-decoration: none;
    color: #043c5a;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .volamex-view-link a:hover {
    background-color: #043c5a;
    color: #fff;
  }
  
  /* === Responsive === */
  @media (max-width: 991.98px) {
    .volamex-brand-item {
      width: 30%;
    }
  }
  
  @media (max-width: 767.98px) {
    .volamex-brand-item {
      width: 30%;
    }
  
    .volamex-heading {
      font-size: 22px;
    }
  }
  








  /* ===== VOLAMEX FOOTER BANNER ===== */

.volamex-footer-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    color: #fff;
  }
  
  .volamex-footer-overlay {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .volamex-footer-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #043c5a;
  }
  
  .volamex-footer-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444444;
  }
  
  .volamex-footer-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #043c5a;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    border-radius:5px;
  }
  
  .volamex-footer-btn:hover {
    background-color: #143d64;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 767.98px) {
    .volamex-footer-title {
      font-size: 26px;
    }
  
    .volamex-footer-subtitle {
      font-size: 16px;
    }
  }
  
  



 /* ===== about top banner ===== */

  .volamex-about-section {
    max-width: 1920px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }
  
  .volamex-about-image {
    width: 70%;
    height: 100%;
  }
  
  .volamex-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .volamex-about-text {
    width: 30%;
    padding: 40px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* changed from center to top */
  }
  
  .volamex-about-text h1,
  .volamex-about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: rgb(0, 51, 160);
    margin: 0 0 20px;
  }
  
  .volamex-about-text h1 {
    font-size: 55px;
  }
  
  .volamex-about-text h2 {
    font-size: 25px;
    color: rgba(0, 0, 0, 0.87);
  }
  
  /* Responsive */
  @media (max-width: 991.98px) {
    .volamex-about-section {
      flex-direction: column;
      height: auto;
    }
  
    .volamex-about-image,
    .volamex-about-text {
      width: 100%;
      height: auto;
    }
  
    .volamex-about-text {
      padding: 20px 15px;
      text-align: center;
    }
  
    .volamex-about-text h1 {
      font-size: 28px;
    }
  
    .volamex-about-text h2 {
      font-size: 18px;
    }
  }
  




  .fusionx-aboutus-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-aboutus-wrapper {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .fusionx-aboutus-left,
  .fusionx-aboutus-right {
    flex: 1;
    min-width: 300px;
  }

  .fusionx-aboutus-img {
    width: 100%;
    /* Removed shadow */
  }

  .fusionx-aboutus-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-aboutus-title {
    font-size: 32px;
    color: #043c5a;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-aboutus-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-weight: 400;
  }

  .fusionx-aboutus-btn {
    background-color: #043c5a;
    color: white;
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-aboutus-btn:hover {
    background-color: #003f7d;
  }

  @media (max-width: 768px) {
    .fusionx-aboutus-wrapper {
      flex-direction: column;
      text-align: left;
    }

    .fusionx-aboutus-right {
      padding-top: 30px;
    }

    .fusionx-aboutus-title {
      font-size: 26px;
    }

    .fusionx-aboutus-text {
      font-size: 15px;
    }

    .fusionx-aboutus-btn {
      width: 100%;
      max-width: 220px;
    }
  }









  .fusionx-products-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-products-container {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .fusionx-product-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    border-radius: 2px;
    background-color: #ffffff;
    transition: transform 0.2s ease;
  }

  .fusionx-product-card:hover {
    transform: translateY(-5px);
  }

  .fusionx-product-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 2px;
  }

  .fusionx-product-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-product-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .fusionx-product-btn,
  .fusionx-product-btn-outline {
    padding: 8px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .fusionx-product-btn {
    background-color: #043c5a;
    color: white;
    border: none;
  }

  .fusionx-product-btn:hover {
    background-color: #003f7d;
  }

  .fusionx-product-btn-outline {
    background-color: transparent;
    border: 1px solid #043c5a;
    color: #043c5a;
  }

  .fusionx-product-btn-outline:hover {
    background-color: #043c5a;
    color: #fff;
  }

  @media (max-width: 768px) {
    .fusionx-product-title {
      font-size: 16px;
    }

    .fusionx-product-btn,
    .fusionx-product-btn-outline {
      font-size: 13px;
    }
  }

