.bottom-slider-section {
  background: var(--bg-light);
  padding: 0;
}

.slider-row {
  display: flex;
  width: 100%;
}

.slider-item {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  position: relative;
  transition: 0.3s;
  border-right: 1px solid #eee;
}

/* REMOVE LAST BORDER */
.slider-item:last-child {
  border-right: none;
}

/* HOVER */
.slider-item:hover {
  background: linear-gradient(135deg, #263489, #4c6ef5);
  color: #fff;
}
.slider-item:hover img {
   animation: jump 0.6s ease;
  filter: brightness(0) invert(1);
}
/* ICON */
.slider-item img {
  width: 55px;
  margin-bottom: 15px;
  transition: 0.3s;
   animation: jump 1.8s ease-in-out infinite;
}

/* TEXT */
.slider-item h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: 0.3s;
}
@keyframes jump {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-10px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
/* HOVER TEXT */
.slider-item:hover h2 {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slider-row {
    flex-wrap: wrap;
  }

  .slider-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 480px) {
  .slider-item {
    flex: 1 1 100%;
  }
}
/* SECTION */
.about-modern {
  padding: 50px 0 ;
  background: #abccfd;
  position: relative;
}



/* TEXT */
.text-content h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: var(--primary-blue);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-read {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-read:hover {
  background: var(--accent-red);
  color: #fff;
}

/* IMAGE BOX */
.image-box {
  position: relative;
}

.image-box img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 28px;
  }

  .about-modern {
    padding: 50px 0 0;
  }


}

/* SECTION */
.bg-image-section {
  position: relative;
  height: 350px;
  background: url("../assets/images/bg_mnrdch.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* LIGHT BLUISH OVERLAY */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(38, 52, 137, 0.75) 0%,
    rgba(38, 52, 137, 0.45) 40%,
    rgba(38, 52, 137, 0.15) 70%,
    rgba(38, 52, 137, 0) 100%
  );
}

/* TEXT AREA */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* TITLE */
.hero-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

/* BUTTON */
.btn-hero {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-red);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #fff;
  color: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bg-image-section {
    height: 280px;
  }

  .hero-text h2 {
    font-size: 24px;
  }
}
/* Section (different look) */
.courses-section {
  background: linear-gradient(135deg, #ffffff, #eef2ff);
  padding: 80px 0;
  position: relative;
}

/* Add top accent strip */
.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
}

/* Title */
.course-title {
  color: var(--text-black);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}



/* Card */
.course-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #e5e7eb;
}

/* Hover */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Image with overlay */
.course-img {
  position: relative;
}

.course-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Overlay */
.course-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6));
}

/* Content */
.course-content {
  background: var(--primary-blue); /* dark background */
  padding: 22px;
  color: #ffffff; /
}

/* Title */
.course-content h3 {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Duration */
.course-content p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #e5e7eb;
}

/* Box (different style) */
.course-box {
  background: #ffffff;
  color: var(--text-black);
  padding: 15px;
  border-radius: 10px;
  margin-top: 12px;
}

/* Box heading */
.course-box b {
  color: var(--primary-blue);
}

/* List */
.course-box li {
  color: var(--text-black);
}

/* Bullet icon */
.course-box li::before {
  color: var(--accent-red);
}

/* List */
.course-box ul {
  padding-left: 18px;
  margin-top: 8px;
}

.course-box li {
  margin-bottom: 6px;
  font-size: 14px;
  position: relative;
}

/* Custom icon bullet */
.course-box li::before {
  content: "✔";
  color: var(--accent-red);
  font-size: 12px;
  margin-right: 8px;
}

/* Remove default bullet */
.course-box li::marker {
  content: "";
}

/* Responsive */
@media (max-width: 768px) {
  .course-title {
    font-size: 26px;
  }

  .course-img img {
    height: 180px;
  }

  .course-content {
    padding: 18px;
  }
}
/* Section */
.testimonials-section {
  /*background: var(--primary-blue);*/
  padding: 80px 0;
}

/* Title */
.testimonial-title {
  color: var(--text-black);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}


/* Swiper container */
.testimonial-swiper {
  padding: 20px 10px;
}

/* Slide spacing */
.testimonial-swiper .swiper-slide {
  height: auto;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Image */
.testimonial-img {
  margin-bottom: 15px;
}

.testimonial-img img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-red);
}

/* Quote text */
.testimonial-card p {
  font-size: 15px;
  color: var(--text-black);
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
}

/* Quote icon effect */
.testimonial-card p::before {
  content: "“";
  font-size: 40px;
  color: var(--accent-red);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.2;
}

/* Name */
.testimonial-card h6 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
}

/* Optional: center active slide highlight */
.swiper-slide-active .testimonial-card {
  border: 2px solid var(--primary-blue);
}

/* ========================= */
/* 📱 RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 1024px) {
  .testimonial-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-img img {
    width: 70px;
    height: 70px;
  }

  .testimonial-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimonial-img img {
    width: 60px;
    height: 60px;
  }

  .testimonial-card {
    padding: 18px;
  }
}
/* ========================= */
/* SECTION */
/* ========================= */
.news-modern {
  padding: 80px 0;
  background: var(--bg-light);
}

/* ========================= */
/* CARD */
/* ========================= */
.news-card {
  background: #f9fafc;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

/* ========================= */
/* TITLE */
/* ========================= */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
}

.card-title::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 4px;
}

/* ========================= */
/* NEWS LIST */
/* ========================= */
.news-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

/* PDF ICON STYLE */
.news-item i {
  background: rgba(236,29,37,0.1);
  color: var(--accent-red);
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  min-width: 36px;
  text-align: center;
}

/* NEWS TEXT */
.news-item p {
  margin: 0;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
}

/* DATE */
.news-item span {
  font-size: 12px;
  color: #777;
}

/* ========================= */
/* MEDIA SECTION */
/* ========================= */
.media-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-blue);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.media-item:hover {
  transform: translateY(-3px);
  background: #1f2d75;
}

/* DATE BOX */
.date-box {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  min-width: 55px;
}

.date-box span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.date-box small {
  font-size: 11px;
}

/* MEDIA TEXT */
.media-item p {
  margin: 0;
  font-size: 13.5px;
  color: #fff;
  line-height: 1.4;
}

/* ========================= */
/* LINKS */
/* ========================= */
a {
  text-decoration: none;
  color: var(--text-black);
  transition: 0.3s;
}

a:hover {
  color: var(--accent-red);
}

/* MEDIA LINKS WHITE */
.media-item a {
  color: #fff;
}

.media-item a:hover {
  text-decoration: underline;
}

/* ========================= */
/* BUTTON */
/* ========================= */
.btn-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  border: 1px solid var(--primary-blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-blue);
  transition: all 0.3s ease;
}

/* HOVER → ACCENT RED */
.btn-link:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}

/* ========================= */
/* SOCIAL CARD */
/* ========================= */
.social-card {
  padding: 15px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .news-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .card-title {
    font-size: 18px;
  }

  .media-item {
    flex-direction: row;
  }

  .news-modern {
    padding: 60px 0;
  }
}