body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.slider-container {
  overflow: hidden;
}

.image-slider {
  display: flex;
  transition: transform 0.5s ease;
  /* no fixed width here unless controlled in JS or media queries */
}

   .image-box {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-box:hover {
  transform: scale(1.08);
}

.image-box img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
  height: auto;
  display: block;
}

    /* Desktop View */
    @media (min-width: 768px) {
      .image-slider {
        overflow: visible;
        transform: none !important;
        animation: none !important;
        flex-wrap: nowrap;
        justify-content: space-between;
      }

      .image-box {
        flex: 1 1 18%;
        max-width: 18%;
      }
    }

  .btec-section {
    background-color: #503A9D;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  .btec-section h2 {
    font-size: 1.5em;
    font-weight: bold;
  	color: white;
    margin-bottom: 40px;
  }

  .btec-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .btec-card {
    background-color: #fff;
    color: #333;
    border-radius: 12px;
    padding: 30px 20px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .btec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }

  .btec-card img {
    height: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }

  .btec-card:hover img {
    transform: scale(1.1);
  }

  .btec-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .btec-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .btec-card {
      width: 100%;
      max-width: 90%;
    }
  }

  .hnd-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }

  .hnd-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .hnd-section h2 span {
    color: #c4112e; /* blue highlight */
  }

  .hnd-section p {
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
  }

  .hnd-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }

  .hnd-col {
    flex: 1;
    min-width: 250px;
  }

  .hnd-col ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  .hnd-col ul li {
    margin-bottom: 15px;
    color: #222;
    font-size: 0.95rem;
  }

  .hnd-col ul li a {
    color: #0070c0;
    text-decoration: none;
    font-weight: bold;
  }
	
	
	
.hnd-col-white {
    flex: 1;
    min-width: 250px;
  }

  .hnd-col-white ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  .hnd-col-white ul li {
    margin-bottom: 15px;
    color: #FFF;
    font-size: 0.95rem;
  }

  .hnd-col-white ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
  }	

  .hnd-col ul li a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .hnd-columns {
      flex-direction: column;
      text-align: center;
    }

    .hnd-col ul {
      padding-left: 0;
      list-style-position: inside;
    }

    .hnd-col {
      margin-bottom: 30px;
    }
  }

  .module-section {
    font-family: Arial, sans-serif;
    background-color: #fff;
    max-width: 80%;
    margin: auto;
  }

  .module-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
  }

  .module-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .module-item {
    width: 50%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    font-size: 0.95rem;
	background-color:#EBEBEB;
  }

  .colored {
    background-color: #ffc107;
    color: #fff;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .module-item {
      width: 100%;
    }
  }