    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
    }

    .hero-section {
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 15px;
      color: white;
            background: linear-gradient(135deg, #0B2E33, #93B1B5);
    }
    
       .hero-content {
      text-align: center;
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      color: #e9f0f1;
      margin-bottom: 25px;
    }

    .hero-description {
      font-size: 1.125rem;
      color: #f0f5f6;
      line-height: 1.7;
      padding: 0 100px;
    }

    .btn-enroll {
      display: inline-block;
      padding: 12px 32px;
      background: linear-gradient(135deg, #2DCD7C, #0B2E33);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(45, 205, 124, 0.3);
      transition: all 0.35s ease;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      margin-top: 30px;
    }

    .btn-enroll:hover {
      background: linear-gradient(135deg, #0B2E33, #2DCD7C);
      box-shadow: 0 10px 25px rgba(11, 46, 51, 0.4);
      transform: scale(1.05);
      color: white;
    }

    .btn-enroll::after {
      content: ' →';
      margin-left: 8px;
      transition: margin-left 0.3s ease;
    }

    .btn-enroll:hover::after {
      margin-left: 16px;
    }

    .hero-img {
      animation: float 3s ease-in-out infinite;
      max-width: 100%;
      height: auto;
    }

    @keyframes float {
      0% { transform: translatey(0px); }
      50% { transform: translatey(-10px); }
      100% { transform: translatey(0px); }
    }

    @media (max-width: 767.98px) {
      .hero-title {
        font-size: 2.4rem;
      }
    }

.trainingFeaturesSection{
    background-color: white;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .detail-course-h2{
    padding: 10px;
    font-size: 40px;
    padding-left: 40px;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 20px;
  }

  .detail-course-featuresContainer{
    padding: 10.8px;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
  }

/* Card Container */
.detail-course-feature-card {
    width: 270px;
    height: 270px;
     background: #0B2E33;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(1, 16, 13, 0.3);
    position: relative;
    text-align: center;
    transition: 0.3s ease-in-out;
    color: white;
}

/* Floating Icon */
.detail-course-feature-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(181, 180, 185, 0.3);
}

.detail-course-feature-icon img {
    width: 80px;
    height: 80px;
    /* filter: invert(1); */
}

/* Card Content */
.detail-course-card-content {
    margin-top: 60px;

}

.detail-course-feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.detail-course-feature-card p {
    font-size: 14px;
     color: white;
    margin: 17px 0;
}

 /* course details section  */
 
   .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      color: #0B2E33;
    }

    .course-card {
      /* background: rgba(7, 61, 18, 0.182); */
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.020);
      transition: all 0.3s ease;
      height: 100%;
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .course-title {
      background-color: #0B2E33;
      color: white;
      padding: 15px 20px;
      font-weight: 700;
      font-size: 1.2rem;
      border-radius: 15px;
      text-align: center;
      margin-bottom: 25px;
      box-shadow: 0 0 15px rgba(45, 205, 124, 0.3);
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .info-box {
      flex: 1 1 calc(50% - 1rem);
      background: white;
      border-radius: 12px;
      padding: 12px 18px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      font-size: 1rem;
      font-weight: 500;
    }

    .info-box span {
      font-weight: 700;
      color: #0B2E33;
    }

    .fee-box {
      flex: 1 1 100%;
      background: white;
      border-radius: 12px;
      padding: 12px 18px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 10px;
    }

    .apply-btn {
      display: inline-block;
      margin-top: 25px;
      background: linear-gradient(135deg, #2DCD7C, #0B2E33);
      color: #fff;
      padding: 12px 30px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(45, 205, 124, 0.3);
      transition: 0.3s ease;
    }

    .apply-btn:hover {
      background: linear-gradient(135deg, #0B2E33, #2DCD7C);
      transform: scale(1.05);
      color: white;
    }

    @media (max-width: 767.98px) {
      .info-box {
        flex: 1 1 100%;
      }

      .fee-box {
        margin-bottom: 20px;
      }
    }