/* ===== Training & Internship Hero Section ===== */
.training-hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('./images/Building Future Leaders Through Hands-On Experience and Industry Expertise.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.training-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.training-hero-content {
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.training-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.training-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .training-hero-title {
    font-size: 2.2rem;
  }

  .training-hero-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .training-hero-title {
    font-size: 1.9rem;
  }

  .training-hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .training-hero-title {
    font-size: 1.6rem;
  }

  .training-hero-subtitle {
    font-size: 0.95rem;
  }
}





/* ===== Program Structure Section ===== */
.program-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.program-container {
  max-width: 1000px;
  margin: 0 auto;
}

.program-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;            /* Center heading */
  display: block;
  margin: 0 auto 50px auto;      /* Center horizontally */
  max-width: 900px;
}

.program-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;     /* Center underline */
  border-radius: 2px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .program-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .program-title {
    font-size: 2rem;
  }

  .program-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .program-title {
    font-size: 1.7rem;
  }

  .program-item {
    font-size: 0.9rem;
  }
}



/* ===== Engineering & Core Technology Focus Areas ===== */
.focus-section {
  padding: 80px 20px;
  background: #f0f8ff; /* Light blue background for a different style */
  font-family: "Poppins", sans-serif;
}

.focus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.focus-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.focus-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.focus-item {
  background: #fff;
  border-left: 5px solid skyblue; /* Accent line for style */
  padding: 25px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.focus-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.focus-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .focus-title {
    font-size: 2.2rem;
  }

  .focus-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .focus-title {
    font-size: 2rem;
  }

  .focus-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .focus-title {
    font-size: 1.7rem;
  }

  .focus-item h3 {
    font-size: 1.1rem;
  }

  .focus-item p {
    font-size: 0.9rem;
  }
}


/* ===== IT & Digital Innovation Section ===== */
.it-section {
  padding: 80px 20px;
  background: #e6f2ff; /* Light tech-blue background for distinct style */
  font-family: "Poppins", sans-serif;
}

.it-container {
  max-width: 1200px;
  margin: 0 auto;
}

.it-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.it-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.it-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.it-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  border-left: 5px solid #00aaff; /* Accent line for IT theme */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-item:nth-child(even) {
  border-left-color: #0099cc; /* Alternating accent for variety */
}

.it-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.it-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.it-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .it-title {
    font-size: 2.2rem;
  }

  .it-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .it-title {
    font-size: 2rem;
  }

  .it-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .it-title {
    font-size: 1.7rem;
  }

  .it-item h3 {
    font-size: 1.1rem;
  }

  .it-item p {
    font-size: 0.9rem;
  }
}


/* ===== Master Soft Skills Section ===== */
.softskills-section {
  padding: 80px 20px;
  background: #fff0f5; /* Light lavender for uniqueness */
  font-family: "Poppins", sans-serif;
}

.softskills-container {
  max-width: 1200px;
  margin: 0 auto;
}

.softskills-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.softskills-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.softskills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.softskills-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  border-left: 5px solid skyblue; /* Changed from pink to sky blue */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.softskills-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.softskills-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.softskills-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .softskills-title {
    font-size: 2.2rem;
  }

  .softskills-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .softskills-title {
    font-size: 2rem;
  }

  .softskills-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .softskills-title {
    font-size: 1.7rem;
  }

  .softskills-item h3 {
    font-size: 1.1rem;
  }

  .softskills-item p {
    font-size: 0.9rem;
  }
}



/* ===== Program Highlights Section ===== */
.highlights-section {
  padding: 80px 20px;
  background: #f0f8ff; /* Light sky-blue background */
  font-family: "Poppins", sans-serif;
}

.highlights-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.highlights-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.highlights-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.highlights-list li {
  position: relative;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  padding-left: 25px;
  margin-bottom: 15px;
}

/* Sky blue bullet */
.highlights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: skyblue;
  border-radius: 50%;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .highlights-title {
    font-size: 2.2rem;
  }

  .highlights-list li {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .highlights-title {
    font-size: 2rem;
  }

  .highlights-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .highlights-title {
    font-size: 1.7rem;
  }

  .highlights-list li {
    font-size: 0.95rem;
  }
}




/* ===== Ideal Candidates Section ===== */
.candidates-section {
  padding: 80px 20px;
  background: #fff; /* White background for contrast */
  font-family: "Poppins", sans-serif;
}

.candidates-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.candidates-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.candidates-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.candidate-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.candidate-icon {
  font-size: 2rem;
  color: skyblue;
  flex-shrink: 0;
}

.candidate-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .candidates-title {
    font-size: 2.2rem;
  }

  .candidate-item p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .candidates-title {
    font-size: 2rem;
  }

  .candidate-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .candidates-title {
    font-size: 1.7rem;
  }

  .candidate-item p {
    font-size: 0.95rem;
  }
}



/* ===== CTA / Contact Section ===== */
.cta-section {
  padding: 80px 20px;
  
  font-family: "Poppins", sans-serif;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

.cta-intro p {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

.cta-commitment h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: skyblue;
  margin-bottom: 15px;
  text-align: center;
}

.cta-commitment p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.cta-contact h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: skyblue;
  text-align: center;
  margin-bottom: 20px;
}

.cta-contact p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.cta-contact a {
  color: skyblue;
  text-decoration: none;
}

.cta-contact a:hover {
  text-decoration: underline;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .cta-intro h2 {
    font-size: 2.2rem;
  }

  .cta-commitment h3,
  .cta-contact h3 {
    font-size: 1.6rem;
  }

  .cta-intro p,
  .cta-commitment p,
  .cta-contact p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-intro h2 {
    font-size: 2rem;
  }

  .cta-commitment h3,
  .cta-contact h3 {
    font-size: 1.5rem;
  }

  .cta-intro p,
  .cta-commitment p,
  .cta-contact p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cta-intro h2 {
    font-size: 1.7rem;
  }

  .cta-commitment h3,
  .cta-contact h3 {
    font-size: 1.3rem;
  }

  .cta-intro p,
  .cta-commitment p,
  .cta-contact p {
    font-size: 0.9rem;
  }
}
