
/* ==============================
   PAGE BANNER FIX (ABOUT US)
============================== */

.page-banner {
  height: 320px;
  width: 100%;
  background: url("../images/banners/internship-banner.jpg") no-repeat center;
  position: relative;
}

/* Dark Overlay */
.banner-overlay {
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: rgba(0, 0, 0, 0.6);
}

/* Banner Title */
.banner-overlay h1 {
  font-size: 45px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

/* Breadcrumb */
.banner-overlay p {
  font-size: 15px;
  color: #ddd;
}

/* Mobile Responsive */
@media(max-width: 768px){

  .page-banner {
    height: 220px;
  }

  .banner-overlay {
    padding-left: 8%;
  }

  .banner-overlay h1 {
    font-size: 30px;
  }
}

/* ==============================
   ABOUT PAGE (DARK MODE)
============================== */

.about-section {
  padding: 80px 12%;
  background: #0d0d0d;
  color: white;
  font-family: Arial, sans-serif;
}

/* Container Layout */
.about-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ==============================
   LEFT CONTENT
============================== */

.about-left h5 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: orange;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 18px;
}

/* ==============================
   RIGHT BOXES
============================== */

.about-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-box {
  background: #111;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.about-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: orange;
  margin-bottom: 12px;
}

.about-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* Mission List */
.about-box ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-box ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ddd;
}

/* ==============================
   CORE VALUES SECTION
============================== */

.core-values {
  margin-top: 60px;
  padding: 35px;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 165, 0, 0.12);
}

.core-values h3 {
  font-size: 20px;
  font-weight: 700;
  color: orange;
  margin-bottom: 20px;
}

.core-values ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.core-values ul li {
  font-size: 14px;
  color: #ccc;
  background: #0d0d0d;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.core-values ul li b {
  color: orange;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 768px) {

  .about-section {
    padding: 60px 8%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-left p {
    font-size: 14px;
  }

  .about-box {
    padding: 20px;
  }

  .core-values {
    padding: 25px;
  }

  .core-values ul {
    grid-template-columns: 1fr;
  }
}




/* ==============================
   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 Now Banner Dark Mode
============================== */

.call-banner-section {
  padding: 80px 10%;
  background: #111;
}

.call-banner {
  background: linear-gradient(135deg, #001a66, #0033cc);
  border-radius: 18px;
  padding: 35px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.call-banner::before,
.call-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.call-banner::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}

.call-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* Left Side */
.call-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.call-banner-left i {
  font-size: 42px;
  color: orange;
}

.call-banner-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Button */
.call-btn {
  padding: 14px 34px;
  background: orange;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 2;
}

.call-btn:hover {
  background: #ff9900;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
  .call-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .call-banner-left {
    flex-direction: column;
  }

  .call-banner-left h2 {
    font-size: 22px;
  }
}