/* Full-screen Hero Section */
.export-hero {
    height: 100vh;
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url("../img/export.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
  }
  
  /* Text Styles for Hero Section */
  .export-hero h1 {
    font-size: 3rem;
    font-weight: 700; /* Bold */
    color: #1B5E20; /* Dark Green color */
  }
  
  .export-hero p {
    font-size: 2rem;
    font-weight: 400; /* Normal weight */
    color: #37474F; /* Grayish Blue color */
  }
  
  .export-hero-content {
    position: relative;
    z-index: 2;
  }
  
  /* Scroll Down Icon */
  .scroll-down {
    position: absolute;
    bottom: 10%; /* Position it at the bottom */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .scroll-down a {
    text-decoration: none;
    color: #007c3e; /* Green color for icon */
    font-size: 4rem; /* Adjust size as needed */
    animation: bounce 2s infinite;
  }
  
  /* Adjust animation for the icon */
  @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
  }
  
  
  
    /* Equipment Solutions Section */
  .equipment-solutions-section {
    font-family: 'Arial', sans-serif; /* Customize with the exact font used */
    color: #333333; /* Base text color */
    padding: 40px 20px;
  }
  
  .equipment-solutions-section h3 {
    font-size: 32px;
    font-weight: normal;
  }
  
  .heading-main {
    color: #000000; /* Black color for EQUIPMENT */
  }
  
  .heading-highlight {
    color: #007c3e; /* Green color for SOLUTIONS */
  }
  
  .underline {
    width: 60px;
    height: 4px;
    background-color: #007c3e; /* Green underline */
    margin: 10px auto 20px auto;
  }
  
  .equipment-solutions-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  