/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Titillium Web;
  }
  
  /* Fullscreen Layout */
  .fullscreen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .header {
    background-color: #ffffff;
    box-shadow: 0 0 10px 1px #51515164 ;
  }

  .header a {
    text-decoration: none;
  }

  .h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 15px;
  }
  
  /* Logo Styling */
  .logo {
    max-height: 55px;
    margin-right: 8px;
    margin-top: 7px;
    transition: 1s;
  }

  .logo h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 700;
    font-family: Titillium Web;
    color: #528e4f;
    transition: 1s;
}
  
/* Menu Box Styling */
  .menu-box {
    width: 100%;
    height: 120px;  /* Rectangular Shape */
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .menu-box i {
    color: #007bff;
    margin: 3px 0 0 0;
    font-size: 45px;
  }
  
  .menu-box p {
    margin-top: 0px;
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Hover Effect */
  .menu-box:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);  /* Increase size by 10% */
  }
  
  /* Footer Styling 
  .footer {
    margin-top: auto;
  }*/
  
  /* Responsive Grid: Adjusts Columns for Screen Sizes */

/* Desktop: 6 boxes in a row */
@media (min-width: 1024px) {
    .menu-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  /* Tablet: 3 boxes in a row */
  @media (min-width: 768px) and (max-width: 1023px) {
    .menu-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Mobile: 2 boxes in a row */
  @media (max-width: 767px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Footer Styles */
  .footer {
    background-color: #215429;
    text-align: center;
    color: white;
    padding: 5px 0;
    letter-spacing: 1px;
  }

  .footer a {
    color: rgb(116, 243, 5);
  }

  .footer a:hover {
    color: rgb(255, 255, 255);
  }

  /*-------------------------
    Form area 
  ---------------------------*/
  .formbox {
    margin-bottom: 50px;
  }

  .formbox a {
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 1px;
    font-family: Titillium Web;
  }

  .form {
    margin: 10px 15px 10px 15px;
  }

  .form .heading {
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-size: 18px;
    font-weight: 700;
    color: #215429;
    background-color: #4a3030;
  }

  .form .dalam {
    background-color: #007bff11;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-color: #a7d2ff;
    margin-top: 5px;
  }

  .form .soalan {
    background-color: #36373811;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    border-color: #a7d2ff;
    margin-top: 5px;
  }

  .form .checkbox {
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-left: 10px;
  }

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/  
  .features .feature-icons {
    margin-top: 120px;
  }
  
  .features .feature-icons h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .features .feature-icons h3 {
      font-size: 28px;
    }
  }
  
  .features .feature-icons .content .icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: 1s;
  }
  
  .features .feature-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 3px 0;
    color: #215429;
  }
  
  .features .feature-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: #0245bc;
    margin-right: 10px;
  }
  
  .features .feature-icons .content .icon-box p {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 0;
  }