.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-color: #ec1d25;
  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;
  }
}






/* 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;
  }


}


.carousel-item{
    position: relative;
}

/* Very Light Overlay */
.carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.08) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

/* Content Position - Bottom Left */
.carousel-caption-custom{
    position: absolute;
    bottom: 22%;
    left: 5%;
    z-index: 10;
    width: 100%;
}

/* Heading */
.carousel-caption-custom h2{
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.35);
}

/* Description */
.carousel-caption-custom p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.30);
}

/* Button */
.hero-btn{
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

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

/* Mobile */
@media (max-width:768px){

    .carousel-caption-custom{
        left: 20px;
        right: 20px;
        bottom: 30px;
        width: auto;
    }

    .carousel-caption-custom h2{
        font-size: 19px;
        margin-bottom: 10px;
    }

    .carousel-caption-custom p{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width:1024px){

    .carousel-caption-custom{
        left: 50px;
        bottom: 50px;
        width: auto;
    }

    .carousel-caption-custom h2{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .carousel-caption-custom p{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
}

:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --bg-light: #f4f6f9;
}

/* SECTION */
.courses-modern {
  background: var(--bg-light);
  padding: 70px 20px;
}

/* HEADER */
.section-header h2 {
  color: var(--primary-blue);
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
}

/* CARD */
.courses-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TABLE */
.courses-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* HEADER */
.courses-table thead {
  background: var(--primary-blue);
  color: #fff;
}

.courses-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

/* BODY */
.courses-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
}

/* STRIPED */
.courses-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* HOVER EFFECT */
.courses-table tbody tr:hover {
  background: #eef2ff;
  transition: 0.3s;
}

/* FIRST COLUMN HIGHLIGHT */
.courses-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}

/* RESPONSIVE */
.table-responsive {
  overflow-x: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .courses-table {
    font-size: 13px;
  }
}


/* ================================= */





/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* FULL WIDTH FIX */
.hero-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* CAROUSEL HEIGHT */
.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 95vh;
  margin-top:40px;
}

/* IMAGE CONTAINER */
.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

/* IMAGE FIT FIX (MOST IMPORTANT 🔥) */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio + fills screen */
}

/* VIDEO FIX */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f6f9; /* fill empty space */
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(38, 52, 137, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}



/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 60vh;
  }
}

/* MOBILE */
@media (max-width: 1024px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 33vh;
	margin-top: 46px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}
/* MOBILE */
@media (max-width: 820px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 32vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 36vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 20px;
    height: 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 28vh;
  }
}
@media (max-width: 375px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 37vh;
  }
}
@media (max-width: 344px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 27vh;
  }
}
@media (max-width: 344px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 40vh;
  }
}

@media screen and (width: 1024px) and (height: 600px) {
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 89vh;
        margin-top: 46px;
    }
}
@media screen and (width: 1280px) and (height: 800px) {
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 89vh;
        margin-top: 46px;
    }
}





/*==================== New ============*/
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.clients-modern {
  background: var(--bg-light);
  padding: 0px 0;
}

/* TITLE */
.clients-modern .section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-blue);
  position: relative;
}

.clients-modern .section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* CARD */
.client-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.client-card img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: 0.3s;
}

.client-card span {
  display: block;
  font-weight: 600;
  color: var(--text-black);
}

/* HOVER */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.client-card:hover span {
  color: var(--primary-blue);
}

.client-card:hover img {
  transform: scale(1.1);
}

/* OWL NAV */
.clients-carousel .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.clients-carousel .owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  margin: 5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  border: none;
}

.clients-carousel .owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* DOTS */
.clients-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.clients-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
}

.clients-carousel .owl-dot.active span {
  background: var(--accent-red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .client-card img {
    height: 50px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.independence-section {
  background: var(--bg-light);
  padding: 20px 0;
}

/* CARD WRAPPER */
.independence-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.independence-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  border: 4px solid var(--primary-blue);
  transition: 0.3s;
}

/* HOVER EFFECT */
.independence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.independence-card:hover .independence-img {
  border-color: var(--accent-red);
  transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .independence-section {
    padding: 40px 15px;
  }

  .independence-img {
    border-width: 3px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* =========================
   SECTION
========================= */
.about-modern {
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
  padding: 20px 0;
}

/* =========================
   TITLE
========================= */
.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* =========================
   WRAPPER (GRID)
========================= */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

/* =========================
   IMAGE SECTION
========================= */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* =========================
   TEXT CONTENT
========================= */
.about-text h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 22px;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

/* =========================
   FEATURE GRID
========================= */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* FEATURE CARD */
.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
  cursor: pointer;
  background: var(--primary-blue);
  color:#fff;
}

.feature-box i {
  color: var(--accent-red);
  font-size: 18px;
}

/* HOVER EFFECT */
.feature-box:hover {
  background: #fff;
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.feature-box:hover i {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    text-align: left;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge {
    position: static;
    margin-top: 10px;
    display: inline-block;
  }
}

/* SMALL DEVICES */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .feature-box {
    padding: 10px;
    font-size: 14px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.team-modern {
  background: var(--bg-light);
  padding: 20px 0;
}

/* TITLE */
.team-modern .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
}

.team-modern .section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto;
}

/* OWL FIX (equal height cards) */
.team-carousel .owl-stage {
  display: flex;
}

/* CARD */
.member-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  min-height: 340px;
}

/* ✅ IMAGE FIX (OVAL PERFECT) */
.member-card img {
  width: 160px;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 80px / 45px; /* 🔥 oval shape */
  border: 4px solid var(--primary-blue);
  margin: 0 auto 15px;
  transition: 0.3s;
}

/* TEXT */
.member-card h4 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.member-card span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.member-card p {
  font-size: 14px;
  color: #444;
}

/* SOCIAL ICONS */
.member-card .social {
  margin-top: auto;
  padding-top: 15px;
}

.member-card .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef1f7;
  color: var(--primary-blue);
  transition: 0.3s;
  font-size: 14px;
}

.member-card .social a:hover {
  background: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
}

/* HOVER */
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.member-card:hover img {
  border-color: var(--accent-red);
  transform: scale(1.05);
}

/* OWL NAV */
.team-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}

.team-carousel .owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  margin: 5px;
  border-radius: 6px;
}

.team-carousel .owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .member-card {
    padding: 20px;
  }

  .member-card img {
    width: 140px;
    height: 372px;
  }
}

/* End The Hero Slider Css */



 :root {
          --primary-blue: #263489;
          --accent-red: #ec1d25;
          --text-black: #000000;
          --bg-light: #f4f6f9;
        }

        /* ========================= */
        /* 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;
          }
        }
         /* SECTION */
        .bg-image-section {
          position: relative;
          height: 350px;
          background: url("./../images/mnrcet_building.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 */
        .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;
          }


        }
         .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
        border-bottom: 3px solid var(--accent-red) !important;
    }
	
	
	
	
	
	
	
	





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

.mnr-matters-section{

  

    position:relative;

    padding:40px 0;

    overflow:visible;
}

/* =========================
   HEADING
========================= */

.matters-heading{

    text-align:center;

    /*max-width:950px;*/

    margin:0 auto 140px;

    position:relative;

    z-index:20;
}

.matters-heading h2{

    font-size:clamp(52px,6vw,96px);

    line-height:1.05;

    color:var(--primary-blue);

    font-weight:500;

    margin-bottom:30px;
}

.matters-heading p{

    font-size:24px;

    line-height:1.8;

    color:#59627c;

    max-width:850px;

    margin:auto;
}

/* =========================
   STICKY WRAPPER
========================= */

.matters-sticky-wrapper{

    position:relative;
}

/* =========================
   ROW
========================= */

.matters-row{

    position:sticky;

    top:100px;

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:0.8s ease;

    opacity:0;

    transform:translateY(120px) scale(0.92);

    z-index:1;
}

/* ACTIVE */

.matters-row.active{

    opacity:1;

    transform:translateY(0) scale(1);

    z-index:10;
}

/* OLD CARD */

.matters-row.hide{

    opacity:0.12;

    transform:translateY(-80px) scale(0.94);

    filter:blur(5px);
}

/* =========================
   CARD
========================= */

.matters-card{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;
}

/* =========================
   IMAGE
========================= */

.matters-image{

    width:58%;

    position:relative;

    z-index:2;
}

.matters-image img{

    width:100%;

    height:490px;

    object-fit:cover;

    border-radius:35px;

    display:block;

    box-shadow:0 25px 70px rgba(0,0,0,0.12);
}

/* =========================
   CONTENT
========================= */

.matters-content{
	
	display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:490px;

    width:42%;

    background:var(--primary-blue);

    color:#fff;

    padding:55px 50px;

    border-radius:35px;

    position:relative;

    margin-left:-90px;

    z-index:5;

    box-shadow:0 25px 70px rgba(0,0,0,0.16);
}

/* =========================
   ICON
========================= */

.icon-shape{

    position:absolute;

    width:100px;

    height:100px;

    background:var(--accent-red);

    opacity:0.08;

    top:30px;

    right:30px;

    border-radius:25px;

    transform:rotate(45deg);
}

/* =========================
   TITLE
========================= */

.matters-content h3{

   font-size:52px;

    line-height:1.1;

     margin-bottom:20px;

    font-weight:500;
}

/* =========================
   DESCRIPTION
========================= */

.matters-content p{

    font-size:18px;

    line-height:1.7;

    color:rgba(255,255,255,0.84);

    margin-bottom:30px;
}

/* =========================
   BUTTON
========================= */

.matters-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:#fff;

    color:var(--primary-blue);

    border-radius:60px;

    text-decoration:none;

     font-size:16px;

    font-weight:600;

    transition:0.4s ease;
}

.matters-btn:hover{

    background:var(--accent-red);

    color:#fff;

    transform:translateY(-5px);
}

/* =========================
   LARGE LAPTOP
========================= */

@media(max-width:1400px){

    .matters-image img{

        height:490px;
    }

    .matters-content{

        padding:70px 55px;
    }

    .matters-content h3{

        font-size:54px;
    }

}

/* =========================
   TABLET / IPAD
========================= */

@media(max-width:1199px){

    .mnr-matters-section{

        padding:100px 20px;
    }

    .matters-heading{

        margin-bottom:100px;
    }

    .matters-heading h2{

        font-size:60px;
    }

    .matters-heading p{

        font-size:20px;
    }

    .matters-row{

        top:80px;
    }

    .matters-image{

        width:55%;
    }

    .matters-image img{

        height:520px;
    }

    .matters-content{

        width:45%;

        padding:50px 40px;

        margin-left:-80px;
    }

    .matters-content h3{

        font-size:44px;
    }

    .matters-content p{

        font-size:18px;

        line-height:1.7;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .mnr-matters-section{

        padding:80px 20px;
    }

    .matters-heading{

        margin-bottom:60px;
    }

    .matters-heading h2{

        font-size:42px;
    }

    .matters-heading p{

        font-size:18px;

        line-height:1.7;
    }

    /* REMOVE STICKY */

    .matters-row{

        position:relative;

        top:auto;

        min-height:auto;

        opacity:1 !important;

        transform:none !important;

        filter:none !important;

        margin-bottom:80px;

        display:block;
    }

    .matters-card{

        flex-direction:column;
    }

    .matters-image,
    .matters-content{

        width:100%;
    }

    .matters-image img{

        height:auto;

        border-radius:25px 25px 0 0;
    }

    .matters-content{

        margin-left:0;

        padding:40px 30px;

        border-radius:0 0 25px 25px;
    }

    .matters-content h3{

        font-size:36px;
    }

    .matters-content p{

        font-size:17px;

        line-height:1.7;
    }

    .matters-btn{

        width:100%;
    }

}

/* =========================
   IPAD PRO FIX
========================= */

@media only screen 
and (min-width:992px) 
and (max-width:1200px){

    .mnr-matters-section{

        padding:20px 20px;
    }

    /* REMOVE HUGE GAP */

    .matters-row{

        min-height:70vh;

        top:40px;

        padding:20px 0;
    }

    /* CARD */

    .matters-card{

        align-items:center;
    }

    /* IMAGE */

    .matters-image img{

        height:420px;
    }

    /* CONTENT */

    .matters-content{

        padding:40px 35px;

        margin-left:-60px;
    }

    /* TITLE */

    .matters-content h3{

        font-size:36px;

        margin-bottom:20px;
    }

    /* TEXT */

    .matters-content p{

        font-size:16px;

        line-height:1.6;

        margin-bottom:25px;
    }

    /* BUTTON */

    .matters-btn{

        padding:14px 28px;

        font-size:15px;
    }

}