@media screen and (max-width: 480px){
  .header{
    display: none;
  }
  body{
    margin-top: 0;
  }
  .mobile-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 7rem;
    position: sticky;
    left: 0;
    z-index: 99;
    right: 0;
    top: 0;
  }
  .mobile-header-logo-container{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 20px;
  }
  .mobile-header-logo-text {
    font-size: 1.9rem;
    line-height: 18px;
    font-weight: 600;
    font-family: TEKO;
    color: #fff;
    margin-top: 10px;
  }
  .mobile-header-logo{
    width: 70px;
    border-radius: 20px;
    border: 3px solid rgb(147, 105, 0);
  }
  .nav-list{
    list-style: none;
    background-color: #0c0c0c;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    align-items: center;
    padding: 2rem 0;
    gap: 0px;
    top: 0;
    height: 100vh;
    transition: .5s ease-in-out;
    transform: translateX(-50rem);
  }
  .nav-list.open{
    transform: translateX(0);
  }
  .nav-list li{
    margin: 1rem 0;
  }
  .scroll-animation {
  opacity: 0;
  transform: translateX(-15%);
  transition: opacity 1s ease-out, transform .5s ease-out;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateX(0);
}
  .bar{
    background-color: rgb(255, 255, 255);
    width: 30px;
    height: 4px;
    border-radius: 20px;
    z-index: 7;
  }
  .hamburger{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 1rem;
    background-color:  #003366;
    gap: 5px;
    border: 1px solid  #003366;
    z-index: 99;
  }
  @keyframes rotate-hamburger {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
    .hamburger.active {
      animation: rotate-hamburger 0.5s ease-in-out;
    }

    .hamburger .bar{
      transition: all 0.3s ease;
    }
    .hamburger.active .bar:nth-child(1){
      transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active .bar:nth-child(2){
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(3){
      transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title{
      font-family: "Gasoek One", serif;
      color: #f9f9f9;
      font-size: 2rem;
      font-weight: 200;
    }

    /* HERO */
    .hero{
      margin: 0;
      height: 25vh;
      padding: 0 1rem;
    }

    .hero-title{
      color: #f9f9f9;
      font-family: TEKO, arial;
      font-size: 2rem;
      font-weight: 600;
      text-align: center;
     }

      /* LEARN MORE  */
    .service-learn-more {
      display: flex;
      flex-direction: row-reverse;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      background-color: #ccc;
      border-radius: 0px;
      margin: 0;
      padding: 0;
   }

    body{
      background-color: #ccc;
    }

    .content-container {
      flex: 1;
      padding: 1rem;
      padding: 0;
      border-radius: 0rem;
    }

    .service-description {
      font-size: 1rem;
      line-height: 1.6;
      color: #fff;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
      text-align: justify;
    }


    .service-list .list{
      list-style: none;
      margin-left: 0;
      font-size: 1rem;
      line-height: 1.4rem;
    }

    .service-list{
      padding: 2rem;
    }

    .highlight{
    font-weight: 600;
    margin-left: -0.5rem;
    }

    strong{
      color: #FF6600;
    }

    .service-subtitle{
      font-family: TEKO, arial;
      font-size: 2rem;
      margin: 0;
      text-decoration: none;
      padding: 0 2.5rem;
      margin-bottom: -2.5rem;
    }

    .content-title{
      font-size: 2rem;
      text-underline-offset: 5px;
    }

    .mining-title{
      font-size: 1.5rem;
      text-decoration: none;
    }

    .image-container {
      display: none;
    }

    
   /* footer style */
   .footer-bar{
    font-size: 0.7rem;
  }
  .quick-link-title{
    text-align: center;
    margin: 0;
    font-size: 1.8rem;
    text-align: left;
  }
  .quick-link a {
    color: #f9f9f9;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: justify;
    margin-left: 0;
    font-size: 0.8rem;
  }
  .email,
  .tel{
    margin-left: 0;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    color: #fff;
    text-align: center;
    padding-bottom: 2rem;
  }
  .footer .footer-bar {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
  .footer .quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer .quick-link a {
    color: #f9f9f9;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer .email,
  .footer .tel {
    margin: 0.5rem 0;
  }
  .icons{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
  }

  .header-logo-container{
      display: none;
    }
  }

  @media (min-width: 481px) and (max-width: 767px){
    .header{
      display: none;
    }
    body{
      margin-top: 0;
    }
    .mobile-header{
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      height: 7rem;
      position: sticky;
      left: 0;
      z-index: 99;
      right: 0;
      top: 0;
    }

    .mining-title{
      font-size: 1.5rem;
      text-decoration: none;
    }

    .mobile-header-logo-container{
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-left: 20px;
    }
    .mobile-header-logo-text {
      font-size: 1.9rem;
      line-height: 18px;
      font-weight: 600;
      font-family: TEKO;
      color: #fff;
      margin-top: 10px;
    }
    .mobile-header-logo{
      width: 70px;
      border-radius: 20px;
      border: 3px solid rgb(147, 105, 0);
    }
    .nav-list{
      list-style: none;
      background-color: #0c0c0c;
      display: flex;
      flex-direction: column;
      position: absolute;
      z-index: 5;
      left: 0;
      right: 0;
      align-items: center;
      padding: 2rem 0;
      gap: 0px;
      top: 0;
      height: 100vh;
      transition: .5s ease-in-out;
      transform: translateX(-50rem);
    }
    .nav-list.open{
      transform: translateX(0);
    }
    .nav-list li{
      margin: 1rem 0;
    }
    .scroll-animation {
    opacity: 0;
    transform: translateX(-15%);
    transition: opacity 1s ease-out, transform .5s ease-out;
  }
  
  .scroll-animation.visible {
    opacity: 1;
    transform: translateX(0);
  }
    .bar{
      background-color: rgb(255, 255, 255);
      width: 30px;
      height: 4px;
      border-radius: 20px;
      z-index: 7;
    }
    .hamburger{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 20px;
      cursor: pointer;
      margin-right: 1rem;
      background-color:  #003366;
      gap: 5px;
      border: 1px solid  #003366;
      z-index: 99;
    }
    @keyframes rotate-hamburger {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
      .hamburger.active {
        animation: rotate-hamburger 0.5s ease-in-out;
      }
  
      .hamburger .bar{
        transition: all 0.3s ease;
      }
      .hamburger.active .bar:nth-child(1){
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .hamburger.active .bar:nth-child(2){
        opacity: 0;
      }
      .hamburger.active .bar:nth-child(3){
        transform: rotate(45deg) translate(-5px, -6px);
      }
  
      .hero-title{
        font-family: "Gasoek One", serif;
        color: #f9f9f9;
        font-size: 2rem;
        font-weight: 200;
      }
  
      /* HERO */
      .hero{
        margin: 0;
        height: 25vh;
      }
  
      .hero-title{
        color: #f9f9f9;
        font-family: TEKO, arial;
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
       }
  
        /* LEARN MORE  */
      .service-learn-more {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        background-color: #ccc;
        border-radius: 0px;
        margin: 0;
        padding: 0;
     }
  
      body{
        background-color: #ccc;
      }
  
      .content-container {
        flex: 1;
        padding: 1rem;
        padding: 0;
        border-radius: 0rem;
      }
  
      .service-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #fff;
        margin-bottom: 1rem;
        font-family: 'Poppins', sans-serif;
        text-align: justify;
      }
  
  
      .service-list .list{
        list-style: none;
        margin-left: 0;
        font-size: 1rem;
        line-height: 1.4rem;
      }
  
      .service-list{
        padding: 2rem;
      }
  
      .highlight{
      font-weight: 600;
      margin-left: -0.5rem;
      }
  
      strong{
        color: #FF6600;
      }
  
      .service-subtitle{
        font-family: TEKO, arial;
        font-size: 2rem;
        margin: 0;
        text-decoration: none;
        padding: 0 2.5rem;
        margin-bottom: -2.5rem;
      }
  
      .content-title{
        font-size: 2rem;
        text-underline-offset: 5px;
      }
  
      .image-container {
        display: none;
      }
  
      
     /* footer style */
     .footer-bar{
      font-size: 0.7rem;
    }
    .quick-link-title{
      text-align: center;
      margin: 0;
      font-size: 1.8rem;
      text-align: left;
    }
    .quick-link a {
      color: #f9f9f9;
      text-decoration: none;
      margin-bottom: 10px;
      text-align: justify;
      margin-left: 0;
      font-size: 0.8rem;
    }
    .email,
    .tel{
      margin-left: 0;
    }
    
    .footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      color: #fff;
      text-align: center;
      padding-bottom: 2rem;
    }
    .footer .footer-bar {
      font-size: 0.8rem;
      margin-top: 1rem;
    }
    .footer .quick-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer .quick-link a {
      color: #f9f9f9;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer .email,
    .footer .tel {
      margin: 0.5rem 0;
    }
    .icons{
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      justify-content: center;
    }
  
    .header-logo-container{
      display: none;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px){
          
    .header{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 3rem;
      background-color: #0c0c0c;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 999;
    }

    .header-btn,
    .dropbtn{
     transition: all .5s ease-in-out;
     font-size: 16px;
     font-family: poppins, arial;
     color: #fefefe;
     margin-top: 3rem;
    }

    .mining-title{
      font-size: 1.5rem;
      text-decoration: none;
    }

      
    .header-logo{
      width: 80px;
      border-radius: 20px;
      border: 3px solid rgb(134, 96, 0);
    }

    .header-logo-container{
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 1rem;
    }

    .header-logo-text{
      font-size: 1.5rem;
      line-height: 20px;
      font-weight: 600;
      font-family: TEKO;
      color: #fff;
      margin-top: 10px;
      display: none;
    }
    
    .dropdown-list{
      font-size: 18px;
      font-family: TEKO, arial;
      font-weight: 300;
    }
    

    .email-button{
      display: none;
    }

    .learn-more-image{
      display: none;
    }

    body{
      margin-top: 8rem;
    }

    
    /* HERO */
    .hero{
      margin: 0;
      height: 20vh;
    }

  .hero-title{
    color: #f9f9f9;
    font-family: TEKO, arial;
    font-size: 3.3rem;
    font-weight: 600;
    }

    
    /* LEARN MORE  */
    .service-learn-more {
      display: flex;
      flex-direction: row-reverse;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      background-color: #ccc;
      border-radius: 0px;
      margin: 0;
      padding: 0;
    }

    body{
      background-color: #ccc;
    }

    .content-container {
      flex: 1;
      padding: 1rem;
      padding: 0;
      border-radius: 0rem;
    }

    .service-description {
      font-size: 1rem;
      line-height: 1.6;
      color: #fff;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
      text-align: justify;
    }


    .service-list .list{
      list-style: none;
      margin-left: 0;
      font-size: 1rem;
      line-height: 1.4rem;
    }

    .service-list{
      padding: 2rem;
    }

    .highlight{
    font-weight: 600;
    margin-left: -0.5rem;
    }

    strong{
      color: #FF6600;
    }

    .service-subtitle{
      font-family: TEKO, arial;
      font-size: 2rem;
      margin: 0;
      text-decoration: none;
      padding: 0 2.5rem;
      margin-bottom: -2.5rem;
    }

    .content-title{
      font-size: 2rem;
      text-underline-offset: 5px;
    }

    .image-container {
      display: none;
    }

    .footer-logo{
      display: none;
    }
  }

  @media (min-width: 1024px) and (max-width: 1439px){
          
    .header{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 3rem;
      background-color: #0c0c0c;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 999;
    }

    .mining-title{
      font-size: 1.5rem;
      text-decoration: none;
    }

    .header-btn,
    .dropbtn{
     transition: all .5s ease-in-out;
     font-size: 16px;
     font-family: poppins, arial;
     color: #fefefe;
     margin-top: 3rem;
    }

      
    .header-logo{
      width: 80px;
      border-radius: 20px;
      border: 3px solid rgb(134, 96, 0);
    }

    .header-logo-container{
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 1rem;
    }

    .header-logo-text{
      font-size: 1.5rem;
      line-height: 20px;
      font-weight: 600;
      font-family: TEKO;
      color: #fff;
      margin-top: 10px;
      display: none;
    }
    
    .dropdown-list{
      font-size: 18px;
      font-family: TEKO, arial;
      font-weight: 300;
    }
    

    .email-button{
      display: none;
    }

    .learn-more-image{
      display: none;
    }

    body{
      margin-top: 8rem;
    }

    
    /* HERO */
    .hero{
      margin: 0;
      height: 20vh;
    }

  .hero-title{
    color: #f9f9f9;
    font-family: TEKO, arial;
    font-size: 3.8rem;
    font-weight: 600;
    }

    .service-learn-more{
      margin: 0;
      padding: 0;
    }
   
    .content-container {
      flex: 1;
      padding: 1rem;
      padding: 0;
      border-radius: 0rem;
    }

    .service-description {
      font-size: 1rem;
      line-height: 1.6;
      color: #fff;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
      text-align: justify;
    }


    .service-list .list{
      list-style: none;
      margin-left: 0;
      font-size: 1rem;
      line-height: 1.4rem;
    }

    .service-list{
      padding: 2rem;
    }

    .highlight{
    font-weight: 600;
    margin-left: -0.5rem;
    }

    strong{
      color: #FF6600;
    }

    .service-subtitle{
      font-family: TEKO, arial;
      font-size: 2rem;
      margin: 0;
      text-decoration: none;
      padding: 0 2.5rem;
      margin-bottom: -2.5rem;
    }

    .content-title{
      font-size: 2rem;
      text-underline-offset: 5px;
    }

    .image-container {
      display: none;
    }

    .footer-logo{
      display: none;
    }
  }

  @media (min-width: 1440px){
    
  }