/* ================== INTERNSHIP PAGE ================== */

/* Subtitle under main heading */
.subtitle {
  text-align: center;
  color: #114d5f;
  margin-bottom: 40px;
}

/* Who Can Join Section */
.who-join {
  margin-bottom: 50px;
}
.who-join ul { 
  list-style: square; 
  padding-left: 20px; 
}

.cta {
  display: inline-block;
  background: #114d5f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
}
.cta:hover { 
  background: #0b3640; 
}

/* Program Details Grid */
.program-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #176890;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 60px;
}
.program-details h3 { 
  margin-bottom: 12px; 
}

/* Testimonials */
.intern-testimonials {
  margin-bottom: 50px;
}
.testimonial {
  margin-bottom: 25px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}
.testimonial img {
  width: 100px;
  display: block;
  margin-bottom: 8px;
}

/* Videos Section */
.videos h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #114d5f;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* ================== RESPONSIVE ================== */
@media(max-width: 900px) {
  .program-details {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
