 /* training page Specific Styles */
  .training-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2C3E50;
  }

  /* Header Branding Section Split Layout */
  .training-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    text-align: left;
  }

  .hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .training-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: bold;
    color:var(--color-blue);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .training-main-title span {
    background: linear-gradient(120deg, #540D6E, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .training-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
  }

  .hero-image-block img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  /* Split Seminars Grid Layout */
  .seminars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0 60px 0;
  }

  .seminar-card {
    background: #FFFFFF;
    border: 3px solid #E2E8F0;
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
  }
  
.seminar-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    color: var(--color-blue);
    font-weight: bold;
  }
  
  
.seminar-card .emphasis {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 25px;
    font-weight: 500;
  }

    
  /* --- 1. ONLINE CARD (Brand Blue Theme) --- */
.card-online { 
  border-color: #EBF5FB; 
}
.card-online:hover { 
  border-color: var(--color-blue); 
  box-shadow: 0 15px 30px rgba(0, 167, 225, 0.15); /* Using your blue for the soft glow */
}
.card-online .badge { 
  background: #E0F2FE; 
  color: #0369A1; 
}
.card-online .btn-reg { 
  background: var(--color-blue); 
}
.card-online .btn-reg:hover { 
  background: #008ec2; /* Sleek darker blue shift for hover */
  box-shadow: 0 6px 15px rgba(0, 167, 225, 0.3); 
}
  
  /* --- 2. IN-PERSON CARD (Brand Green Theme) --- */
.card-inperson { 
  border-color: #F4FBF3; /* Soft minty-white border instead of purple-white */
}
.card-inperson:hover { 
  border-color: var(--color-green); 
  box-shadow: 0 15px 30px rgba(140, 198, 63, 0.15); /* Using your green for the soft glow */
}
.card-inperson .badge { 
  background: #DCFCE7; /* Light green background badge */
  color: #15803D;      /* Deep forest green text */
}
.card-inperson .btn-reg { 
  background: var(--color-green); /* Changed from purple to your brand green */
}
.card-inperson .btn-reg:hover { 
  background: #73a932; /* Sleek deeper green shift for hover */
  box-shadow: 0 6px 15px rgba(140, 198, 63, 0.3); 
}
.card-inperson h3 { 
    color: var(--color-green);
    font-weight: bold;
  }
  

  .badge {
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  

  .meta-row {
    border-top: 1px solid #F1F5F9;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .meta-item {
    font-size: 1.05rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-reg {
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.2s ease;
    display: block;
  }
  .btn-reg:hover {
    transform: translateY(-2px);
  }

  /* Overview Features Highlights Layout */
  .overview-banner {
    background: var(--color-cream);
    border: 2px solid var(--color-yellow);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 60px;
    text-align: left;
  }

  .overview-title {
    color: #92400E;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .overview-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #78350F;
    margin-bottom: 25px;
  }

  .details-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #FCD34D;
    padding-top: 20px;
  }

  .detail-tag {
    font-size: 1.05rem;
    color: #78350F;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Program Tracks Info Section */
  .program-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue);
    margin-bottom: 35px;
    text-align: center;
  }

  .program-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
    align-items: stretch;
  }

  .program-block {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .program-block h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 800;
  }

  .block-non-english h4 { color: var(--color-green); }
  .block-english h4 { color: var(--color-blue); }

  .program-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 20px;
  }

  .btn-inline-more {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 2px solid;
    display: inline-block;
    transition: opacity 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
  }
  .btn-inline-more:hover {
    opacity: 0.7;
  }
  .block-non-english .btn-inline-more { border-color: var(--color-green); color: var(--color-green); }
  .block-english .btn-inline-more { border-color: var(--color-blue); color: var(--color-blue); }

  /* Bottom Form Structural Styles */
  .contact-section {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
  }

  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
  }

  .form-control:focus {
    outline: none;
    border-color: #3B82F6;
  }

  .btn-submit {
    background: var(--color-blue);
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
  }

  .btn-submit:hover {
    background: #2563EB;
  }

  /* Responsive Breaks */
  @media (max-width: 900px) {
    .training-hero {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 25px;
    }
    .program-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .training-container { padding: 20px 15px; }
    .overview-banner, .program-block, .contact-section { padding: 25px; }
    .details-row { flex-direction: column; gap: 10px; }
  }
 
 
 /* --- SEMINAR BANNER SPLIT LAYOUT --- */

/* The new flex container layout wrapper */
.overview-split-content {
  display: flex;
  flex-direction: column; /* Stacks layout on mobile first */
  gap: 30px;
  align-items: center; /* Centers items vertically relative to each other */
  margin-top: 20px;
}

/* Give the text side slightly more proportional presence */
.overview-left-block {
  flex: 1.4;
}

/* Give the image wrapper room to grow */
.overview-right-block {
  flex: 1;
  width: 100%; /* Full width on mobile */
}

/* Fluid responsive rules for the image tag itself */
.overview-image {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover; /* Crops cleanly if aspect ratio changes */
  border-radius: 12px; /* Smooth rounded corners matching your cards */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- Responsive Desktop Adjustments --- */
@media (min-width: 768px) {
  .overview-split-content {
    flex-direction: row; /* Snaps side-by-side on tablet and desktop */
  }
  
  .overview-right-block {
    width: auto; /* Relies on the flex weight ratio on desktop instead */
  }
}