/* 1st Section */
/* Training Hero Section */
.training-hero {
  background: var(--primary-color); /* dark blue */
  color: var(--text-light);
  padding: 30px 20px;
  
}

.training-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.training-text {
  flex: 1;
  max-width: 50%;
}

.training-text .label {
  display: inline-block;
  background: #02963C;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.training-text h1 {
  font-family: Cambria, serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.training-text p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--text-light);
}

.training-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.training-image img {
  /* width: 350px;
  height: 350px; */
  object-fit: cover;
  border-radius: 0%; /* circle */
}

/* Responsive */
@media (max-width: 992px) {
  .training-hero__content {
    flex-direction: column;
    text-align: center;
  }
  .training-text, .training-image {
    max-width: 100%;
  }
  .training-image img {
    width: 280px;
    height: 280px;
  }
}










/* Partnership Section */
.partnership-section {
  background: var(--text-light);
  padding: 80px 20px;
  
}

/* Global container */
.container-1300 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.partnership-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  
}

.partnership-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
}

.partnership-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.partnership-text {
  flex: 1;
  max-width: 50%;
}

.partnership-text h2 {
  font-family: Cambria, serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.partnership-text h2 .highlight {
  color: var(--highlight-color); /* global green */
  font-family: cambria, serif !important;
  font-size: 28px;
  font-weight: 700;
}

.partnership-text p {

  line-height: 1.6;
  margin-bottom: 15px;
}

.partnership-text ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.partnership-text ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(-paragraph-color);
}

/* Responsive */
@media (max-width: 992px) {
  .partnership-content {
    flex-direction: column;
    text-align: center;
  }
  .partnership-text, 
  .partnership-image {
    max-width: 100%;
  }
  .partnership-image img {
    max-width: 300px;
  }
  .partnership-text ul {
    text-align: left;
    display: inline-block;
  }
}
















/* Courses Section */
.courses-section {
  background: var(--text-light);
  padding: 60px 20px;
}

.courses-section h2 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);

}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.course-card {
  background: none;
   display: inline-block;   /* shrink-wrap around content */
  text-align: left;
}
  
.course-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.course-card img {   
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 30px;
  
}


.course-card h3 {
  color: var(--primary-color);
}


.course-card h3,
.course-card p {
  margin: 0 0 10px;
  width: 100%;       /* lock text to container */
  box-sizing: border-box;
  text-align: justify;
}



.course-card .btn {
  display: inline-block;
  background: var(--highlight-color);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.course-card .btn:hover {
  background: var(--highlight-colorhover);
}



/* Responsive */
@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}











/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: var(--text-light); /* light bluish background */
}

.benefits-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Benefit Card */
.benefit-card {
  background: var(--primary-color); /* dark navy */
  color: var(--text-light);
  padding: 40px 40px;
  border-radius: 12px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  
  
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-align: justify;
  
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}









/* Learn More Section */
.get-section {
  background-color: var(--primary-color); /* dark blue */
  color: var(--text-light);
  text-align: center;
  padding: 20px 20px;
  padding-bottom: 50px;
}

.get-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.get-section p {
  color: var(--text-light);
  opacity: 0.9;
  margin: 0;
}

.get-section a{
  margin-top: 20px;
}
