/* ==============================
   INTERNSHIP HERO SECTION
============================== */

.internship-hero {
  width: 100%;
  height: 420px;

  background: url("../images/banners/internship-banner.jpg") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* Dark overlay */
.internship-overlay {
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* Title */
.internship-overlay h1 {
  font-size: 55px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

/* Breadcrumb */
.internship-overlay p {
  font-size: 15px;
  color: #ddd;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 768px) {

  .internship-hero {
    height: 300px;
  }

  .internship-overlay h1 {
    font-size: 38px;
  }

  .internship-overlay p {
    font-size: 14px;
  }
}



/* ==============================
   INTERNSHIP CONTENT SECTION (DARK MODE)
============================== */

.internship-content {
  padding: 80px 12%;
  background: #0d0d0d;   /* Dark Background */
  color: white;
}

.internship-box {
  max-width: 900px;
}

/* Small heading */
.internship-box h5 {
  color: orange;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Main heading */
.internship-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

/* Paragraphs */
.internship-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;   /* Soft gray text */
  margin-bottom: 20px;
}

/* Links at bottom */
.internship-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Internship Links */
.internship-links a {
  font-size: 15px;
  font-weight: 600;
  color: orange;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover effect */
.internship-links a:hover {
  color: white;
  padding-left: 6px;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 768px) {

  .internship-content {
    padding: 60px 8%;
  }

  .internship-box h2 {
    font-size: 28px;
  }

  .internship-box p {
    font-size: 14px;
  }
}




/* ==============================
   INSTRUCTORS SECTION (DARK MODE)
================================= */

.instructors {
  padding: 80px 20px;
  text-align: center;

  /* ✅ Dark Background */
  background: #0b0b0b;
}

.instructors h5 {
  color: orange;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.instructors h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;

  /* ✅ White Heading */
  color: white;
}

/* Trainer Row */
.instructor-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Trainer Card */
.trainer-card {
  text-align: center;
}

/* Image */
.trainer-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;

  /* ✅ Dark Mode Border */
  border: 3px solid orange;
}

/* Name */
.trainer-card h3 {
  margin-top: 18px;
  font-size: 18px;
  color: orange;
}

/* Role */
.trainer-card p {
  font-size: 14px;
  color: #bbb;
}

/* LinkedIn Icon */
.linkedin-icon {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  color: #0077b5;
  transition: 0.3s;
}

.linkedin-icon:hover {
  transform: scale(1.2);
  color: orange;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .instructors h2 {
    font-size: 26px;
  }

  .instructor-row {
    gap: 35px;
  }

  .trainer-card img {
    width: 140px;
    height: 140px;
  }
}



/* ==============================
   TESTIMONIAL SLIDER SECTION
============================== */

.testimonial-slider {
  padding: 80px 20px;
  text-align: center;
  background: #0d0d0d;
  color: white;
}

.testimonial-slider h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-slider p {
  color: #aaa;
  margin-bottom: 40px;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

/* Track */
.slider-track {
  display: flex;
  gap: 20px;
  animation: scrollSlider 40s linear infinite;
}

/* Review Card */
.review-card {
  min-width: 320px;
  background: #111;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

.review-card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 15px;
  color: orange;
  font-size: 14px;
}

/* Auto Scroll Animation */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 90%;
  }

  .slider-track {
    animation-duration: 60s;
  }
}




/* ===============================
   CALL BANNER SECTION (DARK FIX)
================================ */

.call-banner {
  padding: 60px 20px;

  /* ✅ Dark Background */
  background: #0d0d0d;

  display: flex;
  justify-content: center;
}

.call-box {
  width: 100%;
  max-width: 1100px;

  /* ✅ Dark Blue Premium Gradient */
  background: linear-gradient(to right, #001a66, #0033cc);

  padding: 35px 40px;
  border-radius: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  /* ✅ Soft Shadow for Dark UI */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.call-text h2 {
  font-size: 28px;
  color: white;
  margin: 0;
}

.call-text p {
  margin-top: 8px;
  color: #ddd;
  font-size: 15px;
}

/* ✅ Button */
.call-btn {
  background: orange;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: white;
  color: black;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .call-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .call-text h2 {
    font-size: 22px;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }
}