/* =====================================================
   HERO / SLIDER SECTION
   ===================================================== */

/* Slider Caption */
.carousel-caption-custom {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    color: #ffffff;
    max-width: 100%;
}

h4.banner-heading {
    font-family: 'Alata';
}

/* Slider Title */
.main-heading {
    font-size: 48px;
    font-weight: 600;
    padding: 20px 0px;
}

/* Slider Subtitle */
.slider-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Slider Buttons Wrapper */
.slider-btns {
    display: flex;
    gap: 15px;
}

/* Apply Button */
a.btn.btn-apply {
    background-color: #f6a6ad;
    color: #000;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Alata', sans-serif;
    padding: 15px 20px;
}

a.btn.btn-apply:hover {
    background-color: #ffffff;
}

/* Explore Button */
a.btn.btn-explore {
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Alata', sans-serif;
    padding: 15px 20px;
}

/* Career List */
.career-item {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

ul.career-list {
    line-height: 42px;
}

/* Carousel Indicators */
#courseSlider .carousel-indicators {
    justify-content: end;
    margin-right: 3%;
}

#courseSlider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}


/* =====================================================
   NEWS SECTION
   ===================================================== */

.news-section {
    background-color: #F8F9FC;
    padding: 60px 0;
}

/* View More Button */
.view-more-btn {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 28px;
    border-radius: 999px;
    border: 2px solid #ff0033;
    color: #ff0033;
    background: transparent;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #ff0033;
    color: #ffffff;
}


/* =====================================================
   NEWS SLIDER
   ===================================================== */

.news-slider-wrapper {
    position: relative;
}

/* Slider Container */
.news-slider {
    width: 90%;
    margin: auto;
}

/* Slider Track */
.news-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* Slider Item */
.news-item {
    flex: 0 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

/* News Card */
.news-card {
    border-radius: 12px;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* News Content */
.news-content {
    padding: 15px 0;
}

.news-category {
    font-size: 14px;
    color: #777;
    margin: 10px 0 6px;
    height: 50px;
    font-family: 'Alata', sans-serif;
}

.news-heading {
    font-size: 16px;
    font-weight: 400;
    min-height: 60px;
    /* keeps cards aligned */
    font-family: 'Alata', sans-serif;
    margin: 0 0 10px;
}

.read-more {
    font-size: 14px;
    color: #e10600;
    text-decoration: none;
}


/* =====================================================
   NEWS SLIDER ARROWS
   ===================================================== */

.news-arrow {
    position: absolute;
    top: 40%;
    width: 36px;
    padding: 0px 3px 5px 4px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: #ff0033;
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.news-arrow:hover:not(.disabled) {
    background-color: #e10600;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

.news-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}


/* =====================================================
   WHAT WE DO SECTION
   ===================================================== */

.what-we-do-section {
    background-color: #ffffff;
    padding: 60px 0;
}

/* Image Collage */
.image-collage .img-box {
    overflow: hidden;
    border-radius: 14px;
}

.image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional Image Heights */
.img-box-lg,
.img-box-sm {
    height: 100%;
}

/* Section Label */
.section-label {
    display: inline-block;
    color: #c40000;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Section Description */
.section-desc,
.paragraph-text {
    font-family: 'Alata', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 28px;
    text-align: justify;
}


/* =====================================================
   WHO WE ARE SECTION
   ===================================================== */

.who-we-are-section {
    background-color: #F8F9FC;
}

/* Description */
.who-desc {
    font-family: 'Alata', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 26px;
    margin-bottom: 25px;
}

/* Read Story Button */
.read-story-btn {
    padding: 10px 24px;
    border: 1.5px solid #e60023;
    color: #e60023;
    border-radius: 30px;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.read-story-btn:hover {
    background-color: #e60023;
    color: #ffffff;
}

/* Image */
.who-image img {
    border-radius: 16px;
    max-width: 100%;
}


/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */

ul.why-list {
    line-height: 32px;
}

span.why-icon i {
    color: #F70F28;
    padding-right: 20px;
}

/* =====================================================
   KPI SECTION
   ===================================================== */
/* Ranking Section */
.ranking-section {
    background: linear-gradient(90deg,
            #8E1921 0%,
            #DE0211 100%);
    color: #fff;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Desktop: 5 items */
    gap: 0;
}

.ranking-item {
    padding: 0px 25px;
}

.ranking-icon {
    margin-bottom: 20px;
}

/* Divider */
.ranking-item {
    position: relative;
}

.ranking-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 70%;
    width: 2px;
    background: linear-gradient(180deg, #bd000d00 0%, #FF5864 47%, #bd000d00 100%);
}

/* KPI SECTION END */

/* MOUs Section Start */
/* Cards */
.partnership-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.card-text {
    font-size: 20px;
    height: 70px;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.card-body {
    padding: 22px;
}


.read-more {
    font-size: 14px;
    color: #e30613;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more span {
    font-size: 16px;
}

/* View More Button */
.view-more-btn {
    border: 1px solid #e30613;
    color: #e30613;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    background: transparent;
}

.view-more-btn:hover {
    background: #e30613;
    color: #fff;
}

/* MOU Banner Section CSS */
.mou-banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Image wrapper */
.mou-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Full width image */
.mou-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.mou-banner-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    background: linear-gradient(180deg,
            rgba(123, 0, 0, 0.85) 0%,
            rgba(53, 0, 0, 0.9) 100%);
}

/* Content */
.mou-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    top: 120px;
}

/* Testimonial Section Start */
.testimonial-section {
  background: #fafafa;
}

/* Card */
/* 3 lines only */
.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more link */
.read-more-link {
    color: #b00020;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 6px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Image */
.testimonial-img {
    border-radius: 50%;
}
.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


/* Image */
.testimonial-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.testimonial-name {
    margin-top: 20px;
    text-transform: capitalize;
    font-family: 'Alata';
}

/* Owl preview effect */
.testimonial-owl .owl-item {
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.testimonial-owl .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
}

/* Navigation */
.testimonial-owl .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.testimonial-owl .owl-nav button {
  font-size: 32px;
  color: #000;
  background: transparent;
}

/* Button */
.explore-btn {
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  padding: 10px 30px;
  border-radius: 30px;
  text-transform: uppercase;
}

.explore-btn:hover {
  background: #ff4d4d;
  color: #fff;
}

/* Mobile */
@media(max-width: 991px) {
  .testimonial-owl .owl-item {
    opacity: 1;
    transform: scale(1);
  }

  .testimonial-card {
    padding: 25px;
  }
}

/* Testimonial Section End */

/* Event Card CSS */
/* Card */
.event-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px #E0E0E0;
    transition: 0.3s ease;
    height: 100%;

}

.event-card:hover {
    transform: translateY(-6px);
}