/* CSS for Training Options Page */
:root {
    --primary-color: #00b0cf;
    --secondary-color: #008ba3;
    --accent-color: #ff0000;
    --light-bg: #f8f9fa;
    --dark-text: #000000;
    --light-text: #555555;
    --white: #ffffff;
  }
  
  body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
  }
  
  .tg-title h2 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .tg-title {
    text-align: start;
  }

  li{
   list-style: none !important;
  }
  .lead{
    text-transform: capitalize;
  }

  input[type=checkbox], input[type=radio] {
    margin: 5px;
    margin-top: 1px\9;
    line-height: normal;
}
  
  .tg-sectionhead .tg-description p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
  }
  
  @media (max-width: 480px) {
    .tg-logo {
      float: left;
      display: block;
      margin: 0 auto 20px;
    }
    
    .tg-title h2 {
      font-size: 24px;
    }
  }
  
  /* Training Options Container */
  .training-options-container {
    margin: 30px 0;
  }

  .training-option {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
  }

  .online-training {
    border-top-color: #00b0cf;
  }

  .physical-training {
    border-top-color: #ff0000;
  }

  .training-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .training-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  .training-header h3 {
    margin: 0 0 10px 0;
    color: var(--dark-text);
    font-size: 20px;
    display: flex;
    align-items: center;
  }

  .training-header h3 i {
    margin-right: 10px;
    font-size: 18px;
  }

  .price-tag {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    align-self: flex-start;
  }

  .training-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }

  .training-details li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
  }

  .training-details li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 16px;
  }

  .training-benefits {
    background: var(--light-bg);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    text-decoration: capitalize;
  }

  .btn-physical, .btn-online {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
  }

  .btn-physical {
    background-color: #ff0000;
    color: white;
    border: none;
  }

  .btn-online {
    background-color: #00b0cf;
    color: white;
    border: none;
  }

  .btn-physical:hover {
    background-color: #cc0000;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
  }

  .btn-online:hover {
    background-color: #008ba3;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
  }
  
  /* Form Styling */
  .form-group label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
    display: block;
    font-size: 15px;
  }
  
  .form-control {
    border-radius: 6px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: all 0.3s;
    font-size: 15px;
    width: 100%;
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 176, 207, 0.1);
  }
  
  /* Radio and Checkbox Styling */
  .form-check {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }
  
  .form-check-input {
    margin-right: 8px;
    margin-top: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }
  
  .form-check-label {
    margin-bottom: 0;
    font-size: 15px;
  }
  
  /* Button Styling */
  .tg-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
  }
  
  .tg-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 176, 207, 0.3);
    color: var(--white);
  }
  
  /* Info Boxes */
  .info-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
  }
  
  .info-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 18px;
  }
  
  /* Checkbox Grid Layout */
  .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  /* Responsive Adjustments */
  @media (min-width: 576px) {
    .training-header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    
    .training-header h3 {
      margin-bottom: 0;
    }
    
    .checkbox-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-physical, .btn-online, .tg-btn {
      width: auto;
      display: inline-block;
    }
  }
  
  @media (min-width: 768px) {
    .training-option {
      margin-bottom: 0;
    }
    
    .tg-title h2 {
      font-size: 32px;
    }
    
    .training-header h3 {
      font-size: 22px;
    }
    
    .checkbox-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  /* Required Field Indicator */
  .required:after {
    content: " *";
    color: var(--accent-color);
  }
  
  /* Font Awesome Icons */
  .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }

  /* Header Styles */
  #mmb-header {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    position: relative;
    z-index: 1000;
  }
  
  /* App Download Banner */
  .mmb-app-banner {
    background: #7a43b6;
    padding: 8px 0;
    display: none;
  }
  
  .mmb-app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 14px;
  }
  
  .mmb-app-link img {
    height: 30px;
  }
  
  /* Main Navigation */
  .mmb-main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
  }
  
  .mmb-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .mmb-logo img {
    height: 35px;
    width: auto;
  }
  
  /* Mobile Toggle */
  .mmb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  .mmb-toggle-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  /* Navigation Links */
  .mmb-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mmb-nav-list li {
    margin: 0 10px;
  }
  
  .mmb-nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 5px;
    transition: color 0.3s;
  }
  
  .mmb-nav-list a:hover {
    color: #00b0cf;
  }
  
  /* User Actions */
  .mmb-user-actions {
    display: flex;
    align-items: center;
  }
  
  .mmb-user-dropdown {
    position: relative;
  }
  
  .mmb-user-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: background 0.3s;
  }
  
  .mmb-user-btn:hover {
    background: #f5f5f5;
  }
  
  .mmb-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
  }
  
  .mmb-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mmb-user-name {
    font-size: 14px;
    margin-right: 5px;
  }
  
  .mmb-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
  }
  
  .mmb-user-dropdown:hover .mmb-dropdown-menu {
    display: block;
  }
  
  .mmb-dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .mmb-dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .mmb-dropdown-item:hover {
    background: #f5f5f5;
  }
  
  .mmb-auth-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .mmb-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
  }
  
  .mmb-btn {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .mmb-btn-outline {
    border: 1px solid #00b0cf;
    color: #00b0cf;
  }
  
  .mmb-btn-outline:hover {
    background: #00b0cf;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .mmb-app-banner {
      display: block;
    }
    
    .mmb-nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: white;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
      transition: left 0.3s;
      z-index: 1001;
      padding-top: 60px;
      overflow-y: auto;
    }
    
    .mmb-nav.active {
      left: 0;
    }
    
    .mmb-nav-list {
      flex-direction: column;
    }
    
    .mmb-nav-list li {
      margin: 0;
    }
    
    .mmb-nav-list a {
      display: block;
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
    }
    
    .mmb-mobile-toggle {
      display: block;
      z-index: 1002;
    }
    
    .mmb-mobile-toggle.active .mmb-toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    
    .mmb-mobile-toggle.active .mmb-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    
    .mmb-mobile-toggle.active .mmb-toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    
    .mmb-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      display: none;
    }
    
    .mmb-overlay.active {
      display: block;
    }
  }
  
  @media (max-width: 576px) {
    .mmb-auth-links {
      gap: 10px;
    }
    
    .mmb-link {
      font-size: 12px;
    }
    
    .mmb-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
    
    .mmb-user-name {
      display: none;
    }
    
    .mmb-user-avatar {
      margin-right: 0;
    }
  }
