.mgmNoticeBoardMainWrap {
  width: 100%;
  padding: 70px 20px;
}

.mgmNoticeBoardContainer {
  max-width: 1200px;
  margin: auto;
}

.mgmNoticeBoardTopHeading {
  text-align: center;
  margin-bottom: 60px;
}

.mgmNoticeBoardTopHeading h1 {
  font-size: 42px;
  color: #0b4b8c;
  margin-bottom: 12px;
  font-weight: 700;
}

.mgmNoticeBoardTopHeading p {
  font-size: 16px;
  color: #666;
}

/* =========================
   NOTICE LIST
========================= */

.mgmNoticeBoardListWrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* =========================
   NOTICE CARD
========================= */

.mgmSingleNoticeCard {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border-left: 5px solid #0b4b8c;
}

.mgmSingleNoticeCard:hover {
  transform: translateY(-5px);
}

.mgmNoticeLeftArea {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.mgmNoticeDateBox {
  min-width: 90px;
  height: 90px;
  background: #245587;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.mgmNoticeDateBox h2 {
  font-size: 27px;
  line-height: 0;
  color: #fff !important;
}

.mgmNoticeDateBox span {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 1px;
}

.mgmNoticeContentArea h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 10px;
}

.mgmNoticeContentArea p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.mgmNoticeBtnUnique {
  text-decoration: none;
  background: #0b4b8c;
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  white-space: nowrap;
}

.mgmNoticeBtnUnique:hover {
  background: #072d57;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .mgmNoticeBoardTopHeading h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .mgmSingleNoticeCard {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmNoticeLeftArea {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmNoticeBoardTopHeading h1 {
    font-size: 28px;
  }

  .mgmNoticeContentArea h3 {
    font-size: 20px;
  }

  .mgmNoticeBoardMainWrap {
    padding: 50px 15px;
  }
}
s .mgmHomeworkMainWrapper {
  width: 100%;
  padding: 70px 20px;
}

.mgmHomeworkContainer {
  max-width: 1200px;
  margin: auto;
}

.mgmHomeworkTopHeading {
  text-align: center;
  margin-bottom: 55px;
}

.mgmHomeworkTopHeading h1 {
  font-size: 42px;
  color: #0c4a8d;
  margin-bottom: 12px;
  font-weight: 700;
}

.mgmHomeworkTopHeading p {
  color: #666;
  font-size: 16px;
}

/* =========================
   HOMEWORK GRID
========================= */

.mgmHomeworkGridBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   HOMEWORK CARD
========================= */

.mgmHomeworkSingleCard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.mgmHomeworkSingleCard:hover {
  transform: translateY(-7px);
}

.mgmHomeworkCardHeader {
  background: #0c4a8d;
  color: #fff;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.mgmHomeworkClassName {
  font-size: 24px;
  font-weight: 600;
}

.mgmHomeworkDateBox {
  background: #fff;
  color: #0c4a8d;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.mgmHomeworkContentArea {
  padding: 28px;
}

.mgmHomeworkSubject {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}

.mgmHomeworkSubject:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mgmHomeworkSubject h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.mgmHomeworkSubject p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.mgmHomeworkDownloadBtn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  background: #0c4a8d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.mgmHomeworkDownloadBtn:hover {
  background: #072d57;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .mgmHomeworkGridBox {
    grid-template-columns: 1fr;
  }

  .mgmHomeworkTopHeading h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .mgmHomeworkMainWrapper {
    padding: 50px 15px;
  }

  .mgmHomeworkTopHeading h1 {
    font-size: 28px;
  }

  .mgmHomeworkClassName {
    font-size: 20px;
  }

  .mgmHomeworkSubject h3 {
    font-size: 18px;
  }
}

.mgmDownloadsPageWrap {
  width: 100%;
  padding: 70px 20px;
}

.mgmDownloadsContainer {
  max-width: 1200px;
  margin: auto;
}

.mgmDownloadsHeading {
  text-align: center;
  margin-bottom: 55px;
}

.mgmDownloadsHeading h1 {
  font-size: 42px;
  color: #0b4a8b;
  margin-bottom: 12px;
  font-weight: 700;
}

.mgmDownloadsHeading p {
  color: #666;
  font-size: 16px;
}

/* =========================
   DOWNLOAD BOX
========================= */

.mgmDownloadsGridBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mgmSingleDownloadCard {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border-left: 5px solid #0b4a8b;
}

.mgmSingleDownloadCard:hover {
  transform: translateY(-6px);
}

.mgmDownloadLeftSide {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mgmDownloadIconBox {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 16px;
  background: #0b4a8b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

.mgmDownloadTextArea h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #111;
}

.mgmDownloadTextArea p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.mgmDownloadBtnUnique {
  text-decoration: none;
  background: #0b4a8b;
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  white-space: nowrap;
}

.mgmDownloadBtnUnique:hover {
  background: #062d57;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .mgmDownloadsGridBox {
    grid-template-columns: 1fr;
  }

  .mgmDownloadsHeading h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .mgmSingleDownloadCard {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmDownloadLeftSide {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmDownloadsHeading h1 {
    font-size: 28px;
  }

  .mgmDownloadsPageWrap {
    padding: 50px 15px;
  }
}

.mgmRecentUpdateWrapper {
  width: 100%;
  padding: 70px 20px;
}

.mgmRecentUpdateContainer {
  max-width: 1200px;
  margin: auto;
}

.mgmRecentUpdateHeading {
  text-align: center;
  margin-bottom: 50px;
}

.mgmRecentUpdateHeading h1 {
  font-size: 42px;
  color: #0d4c92;
  font-weight: 700;
  margin-bottom: 10px;
}

.mgmRecentUpdateHeading p {
  color: #666;
  font-size: 16px;
}

.mgmRecentUpdateGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mgmRecentUpdateCard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.mgmRecentUpdateCard:hover {
  transform: translateY(-8px);
}

.mgmRecentUpdateImage {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.mgmRecentUpdateImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.mgmRecentUpdateCard:hover img {
  transform: scale(1.08);
}

.mgmRecentUpdateContent {
  padding: 25px;
}

.mgmRecentUpdateDate {
  display: inline-block;
  background: #0d4c92;
  color: #fff;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.mgmRecentUpdateContent h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #111;
  line-height: 1.4;
}

.mgmRecentUpdateContent p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mgmRecentUpdateButton {
  display: inline-block;
  text-decoration: none;
  background: #0d4c92;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  transition: 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.mgmRecentUpdateButton:hover {
  background: #082f5e;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
  .mgmRecentUpdateGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgmRecentUpdateHeading h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .mgmRecentUpdateGrid {
    grid-template-columns: 1fr;
  }

  .mgmRecentUpdateWrapper {
    padding: 50px 15px;
  }

  .mgmRecentUpdateHeading h1 {
    font-size: 28px;
  }

  .mgmRecentUpdateContent h3 {
    font-size: 20px;
  }
}

.mgmAffiliationMainBlue92 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmAffiliationContainerBlue92 {
  max-width: 1250px;
  margin: auto;
}

/* HERO SECTION */

.mgmAffiliationHeroBlue92 {
  background: linear-gradient(135deg, #001f54, #034078);
  padding: 80px 50px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 65px;
  color: #fff;
}

.mgmAffiliationHeroBlue92::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.mgmAffiliationHeroBlue92::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmAffiliationHeroContentBlue92 {
  position: relative;
  z-index: 2;
}

.mgmAffiliationHeroBlue92 h1 {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mgmAffiliationHeroBlue92 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.96;
}

/* TAGS */

.mgmAffiliationTagsBlue92 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.mgmAffiliationTagBlue92 {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* TABLE WRAP */

.mgmAffiliationTableWrapBlue92 {
  background: #fff;
  padding: 40px;
  border-radius: 35px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5eef8;
  overflow-x: auto;
}

/* TITLE */

.mgmAffiliationTableTitleBlue92 {
  font-size: 38px;
  color: #001f54;
  font-weight: 800;
  margin-bottom: 28px;
}

/* TABLE */

.mgmAffiliationTableBlue92 {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.mgmAffiliationTableBlue92 th {
  background: #034078;
  color: #fff;
  padding: 18px;
  text-align: left;
  font-size: 15px;
}

.mgmAffiliationTableBlue92 td {
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #edf2f8;
  color: #444;
}

.mgmAffiliationTableBlue92 tr:nth-child(even) {
  background: #f8fbff;
}

.mgmAffiliationLabelBlue92 {
  font-weight: 700;
  color: #001f54;
  width: 35%;
}

/* BOTTOM NOTE */

.mgmAffiliationBottomBlue92 {
  margin-top: 60px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .mgmAffiliationMainBlue92 {
    padding: 55px 15px;
  }

  .mgmAffiliationHeroBlue92 {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .mgmAffiliationHeroBlue92 h1 {
    font-size: 38px;
  }

  .mgmAffiliationHeroBlue92 p {
    font-size: 15px;
  }

  .mgmAffiliationTableWrapBlue92 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmAffiliationTableTitleBlue92 {
    font-size: 28px;
  }

  .mgmAffiliationTableBlue92 th,
  .mgmAffiliationTableBlue92 td {
    padding: 14px;
    font-size: 14px;
  }
}

.mgmResultsMainUltra93 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmResultsContainerUltra93 {
  max-width: 1280px;
  margin: auto;
}

/* HERO SECTION */

.mgmResultsHeroUltra93 {
  background: linear-gradient(135deg, #001f54, #023e8a);
  padding: 85px 50px;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
  color: #fff;
}

.mgmResultsHeroUltra93::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -140px;
  right: -120px;
}

.mgmResultsHeroUltra93::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -90px;
  left: -90px;
}

.mgmResultsHeroContentUltra93 {
  position: relative;
  z-index: 2;
}

.mgmResultsHeroUltra93 h1 {
  font-size: 62px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mgmResultsHeroUltra93 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 880px;
  opacity: 0.95;
}

/* TOP STATS */

.mgmResultsStatsUltra93 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.mgmResultsStatCardUltra93 {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.mgmResultsStatCardUltra93 h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 800;
}

.mgmResultsStatCardUltra93 p {
  font-size: 14px;
  opacity: 0.9;
}

/* RESULTS GRID */

.mgmResultsGridUltra93 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.mgmResultsCardUltra93 {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e4edf8;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.mgmResultsCardUltra93:hover {
  transform: translateY(-8px);
}

.mgmResultsCardUltra93::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #edf5ff, #f8fbff);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* ICON */

.mgmResultsIconUltra93 {
  width: 85px;
  height: 85px;
  border-radius: 26px;
  background: linear-gradient(135deg, #034078, #1282a2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* TITLE */

.mgmResultsCardUltra93 h2 {
  font-size: 30px;
  color: #001f54;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.mgmResultsCardUltra93 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* LIST */

.mgmResultsListUltra93 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.mgmResultsListItemUltra93 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fbff;
  padding: 8px 7px;
  border-radius: 18px;
  border: 1px solid #e5eef8;
}

.mgmResultsTickUltra93 {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #034078;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmResultsListItemUltra93 span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* RESULT TABLE */

.mgmResultsTableWrapUltra93 {
  margin-top: 70px;
  background: #fff;
  padding: 40px;
  border-radius: 35px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5eef8;
  overflow-x: auto;
}

.mgmResultsTableTitleUltra93 {
  font-size: 38px;
  color: #001f54;
  margin-bottom: 28px;
  font-weight: 800;
}

.mgmResultsTableUltra93 {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.mgmResultsTableUltra93 th {
  background: #034078;
  color: #fff;
  padding: 18px;
  font-size: 15px;
  text-align: left;
}

.mgmResultsTableUltra93 td {
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #edf2f8;
}

.mgmResultsTableUltra93 tr:nth-child(even) {
  background: #f8fbff;
}

/* BOTTOM NOTE */

.mgmResultsBottomUltra93 {
  margin-top: 70px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 42px;
  border-radius: 34px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .mgmResultsGridUltra93 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgmResultsStatsUltra93 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mgmResultsMainUltra93 {
    padding: 55px 15px;
  }

  .mgmResultsHeroUltra93 {
    padding: 50px 25px;
    border-radius: 28px;
  }

  .mgmResultsHeroUltra93 h1 {
    font-size: 40px;
  }

  .mgmResultsHeroUltra93 p {
    font-size: 15px;
  }

  .mgmResultsStatsUltra93 {
    grid-template-columns: 1fr;
  }

  .mgmResultsGridUltra93 {
    grid-template-columns: 1fr;
  }

  .mgmResultsCardUltra93 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmResultsIconUltra93 {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .mgmResultsCardUltra93 h2 {
    font-size: 24px;
  }

  .mgmResultsTableWrapUltra93 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmResultsTableTitleUltra93 {
    font-size: 28px;
  }
}

.mgmEduTourMain88 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmEduTourContainer88 {
  max-width: 1250px;
  margin: auto;
}

/* HERO */

.mgmEduTourHero88 {
  background: linear-gradient(135deg, #001f54, #034078);
  padding: 80px 50px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 65px;
  color: #fff;
}

.mgmEduTourHero88::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.mgmEduTourHero88::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmEduTourHeroContent88 {
  position: relative;
  z-index: 2;
}

.mgmEduTourHero88 h1 {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mgmEduTourHero88 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.96;
}

/* TAGS */

.mgmEduTourTags88 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.mgmEduTourTag88 {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* GRID */

.mgmEduTourGrid88 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.mgmEduTourCard88 {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5eef9;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mgmEduTourCard88:hover {
  transform: translateY(-8px);
}

.mgmEduTourCard88::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #edf5ff, #f7fbff);
  border-radius: 50%;
  top: -45px;
  right: -45px;
}

/* TOP */

.mgmEduTourTop88 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.mgmEduTourIcon88 {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #034078, #1282a2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  flex-shrink: 0;
}

.mgmEduTourHeading88 h2 {
  font-size: 30px;
  color: #001f54;
  margin-bottom: 8px;
  font-weight: 700;
}

.mgmEduTourHeading88 span {
  display: inline-block;
  padding: 8px 16px;
  background: #edf5ff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #034078;
}

/* CONTENT */

.mgmEduTourCard88 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* LIST */

.mgmEduTourList88 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.mgmEduTourListItem88 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fbff;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #e4edf8;
}

.mgmEduTourTick88 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #034078;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmEduTourListItem88 span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* BOTTOM NOTE */

.mgmEduTourBottom88 {
  margin-top: 65px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 42px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmEduTourGrid88 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmEduTourMain88 {
    padding: 55px 15px;
  }

  .mgmEduTourHero88 {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .mgmEduTourHero88 h1 {
    font-size: 38px;
  }

  .mgmEduTourHero88 p {
    font-size: 15px;
  }

  .mgmEduTourCard88 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmEduTourTop88 {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmEduTourIcon88 {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .mgmEduTourHeading88 h2 {
    font-size: 24px;
  }
}

.mgmAnnualBlueWrap91 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmAnnualBlueContainer91 {
  max-width: 1250px;
  margin: auto;
}

/* HERO */

.mgmAnnualBlueHero91 {
  background: linear-gradient(135deg, #001f54, #034078);
  padding: 80px 50px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 65px;
  color: #fff;
}

.mgmAnnualBlueHero91::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.mgmAnnualBlueHero91::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmAnnualBlueHeroContent91 {
  position: relative;
  z-index: 2;
}

.mgmAnnualBlueHero91 h1 {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mgmAnnualBlueHero91 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.96;
}

/* HIGHLIGHT STRIP */

.mgmAnnualBlueHighlight91 {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.mgmAnnualBlueBadge91 {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* GRID */

.mgmAnnualBlueGrid91 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.mgmAnnualBlueCard91 {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5eef9;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mgmAnnualBlueCard91:hover {
  transform: translateY(-8px);
}

.mgmAnnualBlueCard91::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #e9f2ff, #f7fbff);
  border-radius: 50%;
  top: -45px;
  right: -45px;
}

/* TOP */

.mgmAnnualBlueTop91 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.mgmAnnualBlueIcon91 {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #034078, #1282a2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  flex-shrink: 0;
}

.mgmAnnualBlueHeading91 h2 {
  font-size: 30px;
  color: #001f54;
  margin-bottom: 8px;
  font-weight: 700;
}

.mgmAnnualBlueHeading91 span {
  display: inline-block;
  padding: 8px 16px;
  background: #edf5ff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #034078;
}

/* CONTENT */

.mgmAnnualBlueCard91 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* LIST */

.mgmAnnualBlueList91 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.mgmAnnualBlueListItem91 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fbff;
  padding: 7px 14px;
  border-radius: 18px;
  border: 1px solid #e4edf8;
}

.mgmAnnualBlueTick91 {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #034078;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmAnnualBlueListItem91 span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* BOTTOM NOTE */

.mgmAnnualBlueBottom91 {
  margin-top: 65px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 42px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmAnnualBlueGrid91 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmAnnualBlueWrap91 {
    padding: 55px 15px;
  }

  .mgmAnnualBlueHero91 {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .mgmAnnualBlueHero91 h1 {
    font-size: 38px;
  }

  .mgmAnnualBlueHero91 p {
    font-size: 15px;
  }

  .mgmAnnualBlueCard91 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmAnnualBlueTop91 {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmAnnualBlueIcon91 {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .mgmAnnualBlueHeading91 h2 {
    font-size: 24px;
  }
}

.mgmCultureMainFusion82 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #fff7f1, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmCultureContainerFusion82 {
  max-width: 1250px;
  margin: auto;
}

/* HERO SECTION */

.mgmCultureHeroFusion82 {
  background: linear-gradient(135deg, #7b2cbf, #ff6b35);
  padding: 80px 50px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 65px;
  color: #fff;
}

.mgmCultureHeroFusion82::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mgmCultureHeroFusion82::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmCultureHeroContentFusion82 {
  position: relative;
  z-index: 2;
}

.mgmCultureHeroFusion82 h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mgmCultureHeroFusion82 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* ACTIVITY GRID */

.mgmCultureGridFusion82 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ACTIVITY CARD */

.mgmCultureCardFusion82 {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  border: 1px solid #f1e8ff;
  position: relative;
}

.mgmCultureCardFusion82:hover {
  transform: translateY(-8px);
}

/* TOP BAR */

.mgmCultureTopFusion82 {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #fff0ea, #f8ecff);
  border-bottom: 1px solid #f2e5ff;
}

.mgmCultureIconFusion82 {
  width: 75px;
  height: 75px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff6b35, #7b2cbf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  flex-shrink: 0;
}

.mgmCultureHeadingFusion82 h2 {
  font-size: 30px;
  color: #3c096c;
  margin-bottom: 8px;
  font-weight: 700;
}

.mgmCultureHeadingFusion82 span {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #7b2cbf;
}

/* CONTENT */

.mgmCultureContentFusion82 {
  padding: 30px;
}

.mgmCultureContentFusion82 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

/* FEATURE BOXES */

.mgmCultureFeaturesFusion82 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mgmCultureFeatureFusion82 {
  background: #fff7f3;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #ffe3d6;
}

.mgmCultureDotFusion82 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmCultureFeatureFusion82 span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* BOTTOM NOTE */

.mgmCultureBottomFusion82 {
  margin-top: 65px;
  background: linear-gradient(135deg, #ff6b35, #7b2cbf);
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmCultureGridFusion82 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmCultureMainFusion82 {
    padding: 55px 15px;
  }

  .mgmCultureHeroFusion82 {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .mgmCultureHeroFusion82 h1 {
    font-size: 36px;
  }

  .mgmCultureHeroFusion82 p {
    font-size: 15px;
  }

  .mgmCultureTopFusion82 {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmCultureIconFusion82 {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .mgmCultureHeadingFusion82 h2 {
    font-size: 24px;
  }

  .mgmCultureContentFusion82 {
    padding: 22px;
  }
}

.mgmSportsArenaUltra91 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #eef6ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmSportsContainerUltra91 {
  max-width: 1250px;
  margin: auto;
}

/* HERO */

.mgmSportsHeroUltra91 {
  background: linear-gradient(135deg, #001f54, #034078);
  padding: 75px 45px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  color: #fff;
}

.mgmSportsHeroUltra91::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mgmSportsHeroUltra91::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmSportsHeroContentUltra91 {
  position: relative;
  z-index: 2;
}

.mgmSportsHeroUltra91 h1 {
  font-size: 54px;
  margin-bottom: 18px;
  font-weight: 800;
}

.mgmSportsHeroUltra91 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* SPORTS GRID */

.mgmSportsGridUltra91 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* SPORTS CARD */

.mgmSportsCardUltra91 {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  border: 1px solid #edf1f7;
}

.mgmSportsCardUltra91:hover {
  transform: translateY(-8px);
}

/* TOP */

.mgmSportsTopUltra91 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.mgmSportsIconUltra91 {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #034078, #1282a2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  flex-shrink: 0;
}

.mgmSportsTitleUltra91 h2 {
  font-size: 30px;
  color: #001f54;
  margin-bottom: 8px;
  font-weight: 700;
}

.mgmSportsTitleUltra91 span {
  display: inline-block;
  padding: 8px 16px;
  background: #e7f2ff;
  color: #034078;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

/* CONTENT */

.mgmSportsCardUltra91 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

/* FEATURES */

.mgmSportsFeatureListUltra91 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mgmSportsFeatureItemUltra91 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fbff;
  padding: 9px 18px;
  border-radius: 16px;
  border: 1px solid #e6eef8;
}

.mgmSportsCheckUltra91 {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #034078;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmSportsFeatureItemUltra91 span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* NOTE */

.mgmSportsBottomNoteUltra91 {
  margin-top: 60px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 38px;
  border-radius: 28px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmSportsGridUltra91 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmSportsArenaUltra91 {
    padding: 55px 15px;
  }

  .mgmSportsHeroUltra91 {
    padding: 45px 25px;
    border-radius: 24px;
  }

  .mgmSportsHeroUltra91 h1 {
    font-size: 36px;
  }

  .mgmSportsHeroUltra91 p {
    font-size: 15px;
  }

  .mgmSportsCardUltra91 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmSportsTopUltra91 {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmSportsIconUltra91 {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .mgmSportsTitleUltra91 h2 {
    font-size: 24px;
  }
}

.mgmParentMain121 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8fbff, #edf4ff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmParentContainer121 {
  max-width: 1250px;
  margin: auto;
}

/* HERO */

.mgmParentHero121 {
  position: relative;
  background: linear-gradient(135deg, #14213d, #003566);
  padding: 75px 45px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 60px;
  color: #fff;
}

.mgmParentHero121::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.mgmParentHero121::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmParentHeroContent121 {
  position: relative;
  z-index: 2;
}

.mgmParentHero121 h1 {
  font-size: 56px;
  margin-bottom: 18px;
  font-weight: 800;
}

.mgmParentHero121 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* GRID */

.mgmParentGrid121 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* CARD */

.mgmParentCard121 {
  background: #fff;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #edf1f7;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.mgmParentCard121:hover {
  transform: translateY(-8px);
}

.mgmParentBadge121 {
  display: inline-block;
  padding: 10px 22px;
  background: #003566;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
}

.mgmParentCard121 h2 {
  font-size: 30px;
  color: #14213d;
  margin-bottom: 22px;
  font-weight: 700;
}

/* LIST */

.mgmParentList121 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mgmParentItem121 {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #f7fbff;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #e4edf8;
}

.mgmParentIcon121 {
  min-width: 20px;
  height: 20px;
  background: #003566;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.mgmParentItem121 p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* TABLE */

.mgmParentTableWrap121 {
  background: #fff;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  overflow-x: auto;
  margin-bottom: 45px;
}

.mgmParentTableTitle121 {
  font-size: 34px;
  color: #14213d;
  margin-bottom: 25px;
  font-weight: 700;
}

.mgmParentTable121 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  overflow: hidden;
  border-radius: 18px;
}

.mgmParentTable121 th {
  background: #003566;
  color: #fff;
  padding: 18px;
  font-size: 16px;
  text-align: left;
}

.mgmParentTable121 td {
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #edf1f7;
}

.mgmParentTable121 tr:nth-child(even) td {
  background: #f7fbff;
}

/* NOTE */

.mgmParentNote121 {
  background: linear-gradient(135deg, #003566, #14213d);
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmParentGrid121 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmParentMain121 {
    padding: 50px 15px;
  }

  .mgmParentHero121 {
    padding: 45px 25px;
    border-radius: 25px;
  }

  .mgmParentHero121 h1 {
    font-size: 36px;
  }

  .mgmParentHero121 p {
    font-size: 15px;
  }

  .mgmParentCard121 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmParentCard121 h2 {
    font-size: 25px;
  }

  .mgmParentTableWrap121 {
    padding: 20px;
  }

  .mgmParentTableTitle121 {
    font-size: 26px;
  }
}

.mgmUniformMain111 {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f9fbff, #edf4ff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmUniformContainer111 {
  max-width: 1250px;
  margin: auto;
}

/* HERO */

.mgmUniformHero111 {
  position: relative;
  background: linear-gradient(135deg, #1d3557, #003566);
  padding: 70px 45px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 60px;
  color: #fff;
}

.mgmUniformHero111::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.mgmUniformHero111::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmUniformHeroContent111 {
  position: relative;
  z-index: 2;
}

.mgmUniformHero111 h1 {
  font-size: 56px;
  margin-bottom: 18px;
  font-weight: 800;
}

.mgmUniformHero111 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* GRID */

.mgmUniformGrid111 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* CARD */

.mgmUniformCard111 {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid #edf1f7;
}

.mgmUniformCard111:hover {
  transform: translateY(-8px);
}

.mgmUniformBadge111 {
  display: inline-block;
  padding: 10px 22px;
  background: #003566;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
}

.mgmUniformCard111 h2 {
  font-size: 32px;
  color: #1d3557;
  margin-bottom: 25px;
  font-weight: 700;
}

/* ITEM LIST */

.mgmUniformList111 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mgmUniformItem111 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f7fbff;
  padding: 9px 18px;
  border-radius: 18px;
  border: 1px solid #e4edf8;
}

.mgmUniformIcon111 {
  min-width: 25px;
  height: 25px;
  background: #003566;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.mgmUniformItem111 p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* TABLE */

.mgmUniformTableWrap111 {
  background: #fff;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  overflow-x: auto;
  margin-bottom: 45px;
}

.mgmUniformTableTitle111 {
  font-size: 34px;
  color: #1d3557;
  margin-bottom: 25px;
  font-weight: 700;
}

.mgmUniformTable111 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  overflow: hidden;
  border-radius: 18px;
}

.mgmUniformTable111 th {
  background: #003566;
  color: #fff;
  padding: 18px;
  font-size: 16px;
  text-align: left;
}

.mgmUniformTable111 td {
  padding: 18px;
  font-size: 15px;
  border-bottom: 1px solid #edf1f7;
}

.mgmUniformTable111 tr:nth-child(even) td {
  background: #f7fbff;
}

/* NOTE */

.mgmUniformNote111 {
  background: linear-gradient(135deg, #003566, #1d3557);
  padding: 38px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmUniformGrid111 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmUniformMain111 {
    padding: 50px 15px;
  }

  .mgmUniformHero111 {
    padding: 45px 25px;
    border-radius: 25px;
  }

  .mgmUniformHero111 h1 {
    font-size: 36px;
  }

  .mgmUniformHero111 p {
    font-size: 15px;
  }

  .mgmUniformCard111 {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .mgmUniformCard111 h2 {
    font-size: 26px;
  }

  .mgmUniformTableWrap111 {
    padding: 20px;
  }

  .mgmUniformTableTitle111 {
    font-size: 26px;
  }
}

.mgmFeeMain101 {
  width: 100%;
  padding: 20px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmFeeContainer101 {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */

.mgmFeeHeader101 {
  background: linear-gradient(135deg, #002b5b, #004e92);
  padding: 60px 40px;
  border-radius: 35px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 45px;
}

.mgmFeeHeader101::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mgmFeeHeader101::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.mgmFeeHeaderContent101 {
  position: relative;
  z-index: 2;
}

.mgmFeeHeader101 h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 15px;
}

.mgmFeeHeader101 p {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.mgmFeeHeader101 h2 {
  font-size: 34px;
  margin-top: 15px;
  font-weight: 700;
}

/* SESSION BADGE */

.mgmFeeSession101 {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #fff;
  color: #002b5b;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
}

/* TABLE CARD */

.mgmFeeTableCard101 {
  background: #fff;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf5;
  overflow-x: auto;
}

/* TABLE */

.mgmFeeTable101 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  overflow: hidden;
  border-radius: 20px;
}

.mgmFeeTable101 thead {
  background: #003f88;
  color: #fff;
}

.mgmFeeTable101 th {
  padding: 22px;
  font-size: 22px;
  text-align: left;
  font-weight: 700;
}

.mgmFeeTable101 td {
  padding: 22px;
  font-size: 18px;
  border-bottom: 1px solid #edf1f7;
}

.mgmFeeTable101 tr:nth-child(even) td {
  background: #f7fbff;
}

.mgmFeeClass101 {
  font-weight: 600;
  color: #002b5b;
}

.mgmFeeAmount101 {
  font-weight: 700;
  color: #004e92;
  font-size: 22px;
}

/* FOOTER NOTE */

.mgmFeeNote101 {
  margin-top: 40px;
  background: linear-gradient(135deg, #004e92, #002b5b);
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .mgmFeeMain101 {
    padding: 50px 15px;
  }

  .mgmFeeHeader101 {
    padding: 45px 20px;
    border-radius: 24px;
  }

  .mgmFeeHeader101 h1 {
    font-size: 34px;
  }

  .mgmFeeHeader101 p {
    font-size: 15px;
  }

  .mgmFeeHeader101 h2 {
    font-size: 24px;
  }

  .mgmFeeSession101 {
    font-size: 14px;
    padding: 12px 20px;
  }

  .mgmFeeTableCard101 {
    padding: 18px;
  }

  .mgmFeeTable101 th {
    font-size: 16px;
    padding: 16px;
  }

  .mgmFeeTable101 td {
    font-size: 15px;
    padding: 16px;
  }

  .mgmFeeAmount101 {
    font-size: 18px;
  }
}

.mgmAdmissionMain94 {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f7fbff, #edf5ff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmAdmissionContainer94 {
  max-width: 1200px;
  margin: auto;
}

/* HERO */

.mgmAdmissionHero94 {
  background: linear-gradient(135deg, #003566, #00509d);
  padding: 70px 45px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  margin-bottom: 55px;
  color: #fff;
}

.mgmAdmissionHero94::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mgmAdmissionHero94::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmAdmissionHeroContent94 {
  position: relative;
  z-index: 2;
}

.mgmAdmissionHero94 h1 {
  font-size: 52px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mgmAdmissionHero94 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* CARD */

.mgmAdmissionCard94 {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 35px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #edf1f7;
}

/* TITLE */

.mgmAdmissionTitle94 {
  font-size: 32px;
  color: #003566;
  margin-bottom: 28px;
  font-weight: 700;
}

/* GRID */

.mgmAdmissionGrid94 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* INFO BOX */

.mgmAdmissionInfo94 {
  background: #f8fbff;
  padding: 28px;
  border-radius: 22px;
  border-left: 5px solid #00509d;
  transition: 0.3s ease;
}

.mgmAdmissionInfo94:hover {
  transform: translateY(-5px);
}

.mgmAdmissionInfo94 h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #003566;
}

.mgmAdmissionInfo94 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* LIST */

.mgmAdmissionList94 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mgmAdmissionListItem94 {
  background: #f7fbff;
  padding: 20px 24px;
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #e4edf8;
}

.mgmAdmissionIcon94 {
  min-width: 42px;
  height: 42px;
  background: #00509d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.mgmAdmissionListItem94 p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* TABLE */

.mgmAdmissionTableWrap94 {
  overflow-x: auto;
}

.mgmAdmissionTable94 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.mgmAdmissionTable94 th {
  background: #00509d;
  color: #fff;
  padding: 16px;
  font-size: 15px;
  text-align: left;
}

.mgmAdmissionTable94 td {
  padding: 16px;
  font-size: 15px;
  border-bottom: 1px solid #edf1f7;
  background: #fff;
}

.mgmAdmissionTable94 tr:nth-child(even) td {
  background: #f7fbff;
}

/* NOTE */

.mgmAdmissionNote94 {
  background: linear-gradient(135deg, #00509d, #003566);
  padding: 38px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmAdmissionGrid94 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmAdmissionMain94 {
    padding: 50px 15px;
  }

  .mgmAdmissionHero94 {
    padding: 45px 25px;
    border-radius: 24px;
  }

  .mgmAdmissionHero94 h1 {
    font-size: 34px;
  }

  .mgmAdmissionHero94 p {
    font-size: 15px;
  }

  .mgmAdmissionCard94 {
    padding: 25px 20px;
  }

  .mgmAdmissionTitle94 {
    font-size: 24px;
  }
}

.mgmTcMain84 {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #eef4ff, #ffffff);
  font-family: Arial, sans-serif;
}

.mgmTcContainer84 {
  max-width: 1100px;
  margin: auto;
}

/* HERO */

.mgmTcHero84 {
  background: linear-gradient(135deg, #002147, #004e92);
  padding: 65px 40px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.mgmTcHero84::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.mgmTcHero84::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.mgmTcHeroContent84 {
  position: relative;
  z-index: 2;
}

.mgmTcHero84 h1 {
  font-size: 48px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mgmTcHero84 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

/* CARD */

.mgmTcCard84 {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 35px;
  border: 1px solid #edf1f7;
}

.mgmTcTitle84 {
  font-size: 30px;
  color: #002147;
  margin-bottom: 25px;
  font-weight: 700;
}

/* GRID */

.mgmTcGrid84 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* INFO BOX */

.mgmTcInfo84 {
  background: #f7fbff;
  padding: 25px;
  border-radius: 20px;
  border-left: 5px solid #004e92;
  transition: 0.3s ease;
}

.mgmTcInfo84:hover {
  transform: translateY(-5px);
}

.mgmTcInfo84 h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #002147;
}

.mgmTcInfo84 p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* PROCESS TIMELINE */

.mgmTcTimeline84 {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}

.mgmTcStep84 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #f9fbff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #e5edf7;
}

.mgmTcNumber84 {
  min-width: 55px;
  height: 55px;
  background: #004e92;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.mgmTcStep84 h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #002147;
}

.mgmTcStep84 p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* TABLE */

.mgmTcTableWrap84 {
  overflow-x: auto;
  margin-top: 10px;
}

.mgmTcTable84 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.mgmTcTable84 th {
  background: #004e92;
  color: #fff;
  padding: 16px;
  font-size: 15px;
  text-align: left;
}

.mgmTcTable84 td {
  padding: 16px;
  font-size: 15px;
  border-bottom: 1px solid #edf1f7;
  background: #fff;
}

.mgmTcTable84 tr:nth-child(even) td {
  background: #f7fbff;
}

/* NOTE */

.mgmTcNote84 {
  background: linear-gradient(135deg, #004e92, #002147);
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmTcGrid84 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmTcMain84 {
    padding: 50px 15px;
  }

  .mgmTcHero84 {
    padding: 45px 25px;
    border-radius: 24px;
  }

  .mgmTcHero84 h1 {
    font-size: 34px;
  }

  .mgmTcHero84 p {
    font-size: 15px;
  }

  .mgmTcCard84 {
    padding: 25px 20px;
  }

  .mgmTcTitle84 {
    font-size: 24px;
  }

  .mgmTcStep84 {
    flex-direction: column;
  }
}

.mgmCalendarMain92 {
  width: 100%;
  padding: 80px 20px;
  background: #f2f2f2;
  font-family: Arial, sans-serif;
}

.mgmCalendarContainer92 {
  max-width: 1171px;
  margin: auto;
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

/* HEADER */

.mgmCalendarHeader92 {
  text-align: center;
  margin-bottom: 45px;
}

.mgmCalendarHeader92 h1 {
  font-size: 52px;
  font-weight: 800;
  color: #000;
  margin-bottom: 18px;
}

.mgmCalendarHeader92 p {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
}

.mgmCalendarHeader92 h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

/* TABLE */

.mgmCalendarTable92 {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.mgmCalendarTable92 tr {
  border: 1px solid #bdbdbd;
}

.mgmCalendarTable92 td {
  padding: 22px;
  vertical-align: top;
  font-size: 18px;
  line-height: 1.9;
  color: #222;
}

/* MONTH COLUMN */

.mgmCalendarMonth92 {
  width: 220px;
  font-weight: 700;
  font-size: 24px;
  background: #f7f7f7;
  color: #000;
  border-right: 1px solid #bdbdbd;
}

/* EVENT COLUMN */

.mgmCalendarEvents92 {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .mgmCalendarMain92 {
    padding: 40px 12px;
  }

  .mgmCalendarContainer92 {
    padding: 25px 15px;
    overflow-x: auto;
  }

  .mgmCalendarHeader92 h1 {
    font-size: 34px;
  }

  .mgmCalendarHeader92 p {
    font-size: 16px;
  }

  .mgmCalendarHeader92 h2 {
    font-size: 24px;
  }

  .mgmCalendarTable92 {
    min-width: 700px;
  }

  .mgmCalendarTable92 td {
    padding: 16px;
    font-size: 15px;
  }

  .mgmCalendarMonth92 {
    font-size: 18px;
    width: 160px;
  }
}
.mgmExamMain91 {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8fbff, #eef5ff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmExamContainer91 {
  max-width: 1250px;
  margin: auto;
}

/* HERO SECTION */

.mgmExamHero91 {
  background: linear-gradient(135deg, #001f54, #034078);
  padding: 75px 45px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  color: #fff;
}

.mgmExamHero91::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.mgmExamHero91::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmExamHeroContent91 {
  position: relative;
  z-index: 2;
}

.mgmExamHero91 h1 {
  font-size: 52px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mgmExamHero91 p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 850px;
  opacity: 0.95;
}

.mgmExamBadge91 {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  background: #fff;
  color: #001f54;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
}

/* TIMELINE */

.mgmExamTimeline91 {
  position: relative;
  padding-left: 40px;
}

.mgmExamTimeline91::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #034078;
  border-radius: 20px;
}

/* EXAM CARD */

.mgmExamCard91 {
  position: relative;
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  margin-bottom: 35px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #edf1f7;
  transition: 0.4s ease;
}

.mgmExamCard91:hover {
  transform: translateY(-6px);
}

.mgmExamCard91::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 38px;
  width: 22px;
  height: 22px;
  background: #034078;
  border: 5px solid #dbe9ff;
  border-radius: 50%;
}

/* TOP */

.mgmExamTop91 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.mgmExamTitle91 {
  font-size: 30px;
  font-weight: 700;
  color: #001f54;
}

.mgmExamDate91 {
  padding: 12px 20px;
  background: #034078;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* TABLE */

.mgmExamTableWrap91 {
  overflow-x: auto;
}

.mgmExamTable91 {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.mgmExamTable91 th {
  background: #034078;
  color: #fff;
  padding: 16px;
  font-size: 15px;
  text-align: left;
}

.mgmExamTable91 td {
  padding: 16px;
  font-size: 15px;
  border-bottom: 1px solid #edf1f7;
  background: #fff;
}

.mgmExamTable91 tr:nth-child(even) td {
  background: #f7fbff;
}

/* GUIDELINES */

.mgmExamGuide91 {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mgmExamGuideCard91 {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #034078;
  transition: 0.3s ease;
}

.mgmExamGuideCard91:hover {
  transform: translateY(-5px);
}

.mgmExamGuideCard91 h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #001f54;
}

.mgmExamGuideCard91 p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* FOOTER NOTE */

.mgmExamNote91 {
  margin-top: 60px;
  background: linear-gradient(135deg, #034078, #001f54);
  padding: 38px;
  border-radius: 28px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmExamGuide91 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmExamMain91 {
    padding: 50px 15px;
  }

  .mgmExamHero91 {
    padding: 45px 25px;
    border-radius: 25px;
  }

  .mgmExamHero91 h1 {
    font-size: 34px;
  }

  .mgmExamHero91 p {
    font-size: 15px;
  }

  .mgmExamTimeline91 {
    padding-left: 25px;
  }

  .mgmExamCard91 {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .mgmExamCard91::before {
    left: -24px;
  }

  .mgmExamTitle91 {
    font-size: 24px;
  }
}

.mgmHolidayMain88 {
  width: 100%;
  padding: 40px 20px;
  background: #f6f9ff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmHolidayContainer88 {
  max-width: 1250px;
  margin: auto;
}

/* HERO SECTION */

.mgmHolidayHero88 {
  background: linear-gradient(135deg, #4b0082, #7b2cbf);
  padding: 70px 40px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  color: #fff;
}

.mgmHolidayHero88::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mgmHolidayHero88::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mgmHolidayHeroContent88 {
  position: relative;
  z-index: 2;
}

.mgmHolidayHero88 h1 {
  font-size: 52px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mgmHolidayHero88 p {
  font-size: 18px;
  max-width: 850px;
  line-height: 1.9;
  opacity: 0.95;
}

/* YEAR BADGE */

.mgmHolidayYear88 {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #4b0082;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 25px;
}

/* HOLIDAY GRID */

.mgmHolidayGrid88 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* HOLIDAY CARD */

.mgmHolidayCard88 {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  border: 1px solid #edf1f7;
}

.mgmHolidayCard88:hover {
  transform: translateY(-8px);
}

.mgmHolidayTop88 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.mgmHolidayName88 {
  font-size: 28px;
  font-weight: 700;
  color: #4b0082;
}

.mgmHolidayDate88 {
  background: #7b2cbf;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* DETAILS */

.mgmHolidayDetails88 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mgmHolidayInfo88 {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  background: #f7f3ff;
  border-radius: 18px;
  font-size: 15px;
  color: #444;
  gap: 20px;
}

.mgmHolidayInfo88 strong {
  color: #4b0082;
}

/* NOTE */

.mgmHolidayNote88 {
  margin-top: 55px;
  background: linear-gradient(135deg, #7b2cbf, #4b0082);
  padding: 38px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmHolidayGrid88 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mgmHolidayMain88 {
    padding: 50px 15px;
  }

  .mgmHolidayHero88 {
    padding: 45px 25px;
    border-radius: 25px;
  }

  .mgmHolidayHero88 h1 {
    font-size: 34px;
  }

  .mgmHolidayHero88 p {
    font-size: 15px;
  }

  .mgmHolidayCard88 {
    padding: 25px 22px;
    border-radius: 24px;
  }

  .mgmHolidayTop88 {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgmHolidayName88 {
    font-size: 24px;
  }

  .mgmHolidayInfo88 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mgmTimingMainWrap77 {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f4f8ff, #ffffff);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.mgmTimingContainer77 {
  max-width: 1200px;
  margin: auto;
}

/* HERO */

.mgmTimingHero77 {
  position: relative;
  background: linear-gradient(135deg, #002b5b, #00509d);
  padding: 70px 40px;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 50px;
  color: #fff;
}

.mgmTimingHero77::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.mgmTimingHero77::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.mgmTimingHeroContent77 {
  position: relative;
  z-index: 2;
}

.mgmTimingHero77 h1 {
  font-size: 48px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mgmTimingHero77 p {
  font-size: 18px;
  max-width: 850px;
  line-height: 1.8;
  opacity: 0.95;
}

/* TIMING CARDS */

.mgmTimingGrid77 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.mgmTimingCard77 {
  background: #fff;
  border-radius: 28px;
  padding: 35px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid #edf1f7;
}

.mgmTimingCard77:hover {
  transform: translateY(-8px);
}

.mgmTimingBadge77 {
  display: inline-block;
  padding: 10px 18px;
  background: #00509d;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.mgmTimingCard77 h2 {
  font-size: 28px;
  color: #002b5b;
  margin-bottom: 15px;
}

.mgmTimingTime77 {
  font-size: 27px;
  font-weight: 700;
  color: #00509d;
  margin-bottom: 6px;
}

.mgmTimingCard77 p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* SCHOOL SCHEDULE */

.mgmScheduleWrap77 {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  margin-bottom: 45px;
}

.mgmScheduleTitle77 {
  font-size: 34px;
  color: #002b5b;
  margin-bottom: 30px;
  text-align: center;
}

.mgmScheduleTable77 {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.mgmScheduleTable77 th {
  background: #00509d;
  color: #fff;
  padding: 18px;
  font-size: 16px;
  text-align: left;
}

.mgmScheduleTable77 td {
  padding: 18px;
  border-bottom: 1px solid #edf1f7;
  font-size: 15px;
  background: #fff;
}

.mgmScheduleTable77 tr:nth-child(even) td {
  background: #f7fbff;
}

/* NOTE */

.mgmTimingNote77 {
  background: linear-gradient(135deg, #00509d, #003566);
  padding: 35px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmTimingGrid77 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mgmTimingMainWrap77 {
    padding: 50px 15px;
  }

  .mgmTimingHero77 {
    padding: 45px 25px;
    border-radius: 25px;
  }

  .mgmTimingHero77 h1 {
    font-size: 34px;
  }

  .mgmTimingHero77 p {
    font-size: 15px;
  }

  .mgmTimingGrid77 {
    grid-template-columns: 1fr;
  }

  .mgmTimingCard77 {
    padding: 28px 24px;
  }

  .mgmTimingCard77 h2 {
    font-size: 24px;
  }

  .mgmTimingTime77 {
    font-size: 30px;
  }

  .mgmScheduleWrap77 {
    padding: 25px 18px;
    overflow-x: auto;
  }

  .mgmScheduleTitle77 {
    font-size: 28px;
  }

  .mgmScheduleTable77 {
    min-width: 650px;
  }
}

.mgmDisclosureContainerX91 {
  max-width: 1200px;
  margin: auto;
}

/* TOP HEADER */

.mgmDisclosureHeroX91 {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  /* padding: 60px 30px; */
  border-radius: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mgmDisclosureHeroX91 h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.mgmDisclosureHeroX91 p {
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  opacity: 0.95;
}

/* SECTION CARD */

.mgmDisclosureCardX91 {
  background: #fff;
  padding: 25px;
  border-radius: 22px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf1f7;
  transition: 0.3s ease;
}

.mgmDisclosureCardX91:hover {
  transform: translateY(-4px);
}

.mgmDisclosureTitleX91 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #0d47a1;
  position: relative;
  padding-left: 18px;
}

.mgmDisclosureTitleX91::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 32px;
  background: #1565c0;
  border-radius: 20px;
}

/* TABLE */

.mgmDisclosureTableWrapX91 {
  overflow-x: auto;
}

.mgmDisclosureTableX91 {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.mgmDisclosureTableX91 th {
  background: #1565c0;
  color: #fff;
  padding: 16px;
  font-size: 15px;
  text-align: left;
}

.mgmDisclosureTableX91 td {
  padding: 15px;
  border-bottom: 1px solid #e6ebf2;
  font-size: 15px;
  background: #fff;
}

.mgmDisclosureTableX91 tr:nth-child(even) td {
  background: #f7faff;
}

/* INFO BOX */

.mgmInfoGridX91 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mgmInfoBoxX91 {
  background: #f8fbff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dce8f7;
  transition: 0.3s;
}

.mgmInfoBoxX91:hover {
  background: #eef5ff;
}

.mgmInfoBoxX91 h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d47a1;
}

.mgmInfoBoxX91 p {
  font-size: 15px;
  color: #555;
}

/* SAFETY LIST */

.mgmSafetyListX91 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.mgmSafetyItemX91 {
  background: #f8fbff;
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
  border-left: 5px solid #1565c0;
}

/* FOOTER NOTE */

.mgmDisclosureNoteX91 {
  background: #0d47a1;
  padding: 30px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mgmInfoGridX91 {
    grid-template-columns: 1fr;
  }

  .mgmSafetyListX91 {
    grid-template-columns: 1fr;
  }

  .mgmDisclosureHeroX91 h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .mgmDisclosureWrapperX91 {
    padding: 40px 15px;
  }

  .mgmDisclosureHeroX91 {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .mgmDisclosureHeroX91 h1 {
    font-size: 28px;
  }

  .mgmDisclosureHeroX91 p {
    font-size: 15px;
  }

  .mgmDisclosureCardX91 {
    padding: 22px;
    border-radius: 18px;
  }

  .mgmDisclosureTitleX91 {
    font-size: 24px;
  }

  .mgmDisclosureTableX91 th,
  .mgmDisclosureTableX91 td {
    padding: 12px;
    font-size: 14px;
  }
}

.enquiry-btn {
  position: fixed;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #ff5722;
  color: #fff;
  padding: 8px 35px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 1px 1px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #e64a19;
  right: -25px;
}
/* Modal Form css here  */
.modal-dialog.modal-lg{
    max-width: 900px;
}
.modal-backdrop{
  display: none;
}
.zx-modal-content{
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}
.zx-close-btn{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #0d1b4c;
    color: #fff;
    z-index: 99;
    transition: 0.3s;
    font-size: 14px;
}
.zx-close-btn:hover{
    background: #ff9800;
    transform: rotate(90deg);
}
.zx-modal-image{
    height: 100%;
    background: #fff;
    overflow: hidden;
}
.zx-modal-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}
.zx-form-wrapper{
    padding: 16px 20px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zx-mini-title{
    color: #ff9800;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: inline-block;
}
.zx-main-title{
    font-size: 24px;
    font-weight: 800;
    color: #0d1b4c;
    margin-bottom: 6px;
    line-height: 1.2;
}
.zx-form-text{
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}
.zx-form-group{
    position: relative;
    margin-bottom: 8px;
}
.zx-form-group i{
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d1b4c;
    font-size: 13px;
}
.zx-form-group input,
.zx-form-group select{
    width: 100%;
    max-width: 100%;   /* FORM FIELD CHHOTA */
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-left: 40px;
    padding-right: 14px;
    background: #f8f8f8;
    font-size: 12px;
    outline: none;
    transition: 0.3s;
    color: #333;
}
.zx-form-group input:focus,
.zx-form-group select:focus{
    border-color: #0d1b4c;
    background: #fff;
    box-shadow: none;
}
.zx-form-group input::placeholder{
    color: #888;
}
.zx-submit-btn{
    width: 100%;
    max-width: 460px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #ff9800;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.zx-submit-btn:hover{
    background: #0d1b4c;
}
@media(max-width:991px){

    .modal-dialog.modal-lg{
        max-width: 95%;
        margin: 12px auto;
    }
    .zx-modal-image{
        display: none;
    }
    .zx-form-wrapper{
        padding: 24px 18px;
    }
    .zx-main-title{
        font-size: 24px;
    }
    .zx-form-text{
        font-size: 13px;
        margin-bottom: 15px;
    }
    .zx-form-group{
        margin-bottom: 12px;
    }
    .zx-form-group input,
    .zx-form-group select{
        height: 44px;
        font-size: 13px;
    }
    .zx-submit-btn{
        height: 46px;
        font-size: 14px;
    }
    .zx-close-btn{
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }
}
/* Modal Form css end here  */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 70px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: 0.3s ease;
  animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.bnk-offer-section {
  width: 100%;
  padding: 80px 7%;
  background: linear-gradient(90deg, #0b1022 0%, #0a1020 100%);
  overflow: hidden;
}

.bnk-offer-heading-wrap {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 70px;
}

.bnk-offer-line {
  width: 4px;
  height: 86px;
  background: #506189;
  border-radius: 10px;
  margin-top: 2px;
}

.bnk-offer-subtitle {
  color: #ff9f1a;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bnk-offer-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  color: #fff !important;
}

/* ===== GRID ===== */

.bnk-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 70px;
}

.bnk-offer-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: 0.35s ease;
}

.bnk-offer-card:hover {
  transform: translateY(-6px);
}

.bnk-offer-icon {
  min-width: 82px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.bnk-offer-icon i {
  font-size: 34px;
  color: #1f3f96;
}

.bnk-offer-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
  color: #fff !important;
}

.bnk-offer-content p {
  font-size: 16px;
  color: #b8c2d3;
  max-width: 420px;
  font-weight: 300;
  margin: 0px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .bnk-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bnk-offer-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .bnk-offer-section {
    padding: 70px 22px;
  }

  .bnk-offer-heading-wrap {
    gap: 18px;
    margin-bottom: 50px;
  }

  .bnk-offer-line {
    height: 70px;
  }

  .bnk-offer-title {
    font-size: 42px;
  }

  .bnk-offer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bnk-offer-card {
    gap: 18px;
  }

  .bnk-offer-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
  }

  .bnk-offer-icon i {
    font-size: 28px;
  }

  .bnk-offer-content h3 {
    font-size: 24px;
  }

  .bnk-offer-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .bnk-offer-title {
    font-size: 34px;
  }

  .bnk-offer-subtitle {
    font-size: 14px;
  }

  .bnk-offer-content h3 {
    font-size: 22px;
  }

  .bnk-offer-card {
    flex-direction: column;
  }
}

.header-main6 {
  padding: 6px;
}

.social-sticky {
  position: fixed;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.social-sticky a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Animation */
.social-sticky a::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.25);
  top: -130%;
  left: -130%;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}

.social-sticky a:hover::before {
  top: -10%;
  left: -10%;
}

.social-sticky a:hover {
  transform: scale(1.15) rotate(6deg);
}

/* Platform Colors */
.facebook {
  background: #1877f2;
}
.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.youtube {
  background: #ff0000;
}
.twitter {
  background: #1987bd;
}
.whatsapp {
  background: #d32525;
}

/* ===========================
   Mobile Responsive
   =========================== */

@media (max-width: 768px) {
  .social-sticky {
    top: auto;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .social-sticky a {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
}

.appointment-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Sidebar Button */
.appointment-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 204px;
  background: linear-gradient(135deg, #0d6efd, #198754);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, sans-serif;
  border-radius: 3px 0 0 3px;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Vertical Text */
.appointment-sidebar span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

/* Hover Effect */
.appointment-sidebar a:hover {
  width: 70px;
  background: linear-gradient(135deg, #198754, #0d6efd);
}

.bgstysd {
  background: #eb7d0d !important;
}
.fint {
  font-size: 17px;
  margin-bottom: 4px !important;
}

.sssfonne {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 100;
}

/* Toggle Button */
.clikcbox-toggle {
  position: fixed;
  right: 5px;
  top: 79%;
  background: #15274e;
  color: #fff;
  padding: 14px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 42px;
  font-size: 33px;
}

/* Main Box */
.clikcbox {
  position: fixed;
  right: -340px;
  top: 72%;
  transform: translateY(-50%);
  width: 320px;
  background: #fff;
  padding: 17px;
  z-index: 9999;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Active */
.clikcbox.active {
  right: 63px;
}

/* Close Button */
.clikcbox-close {
  position: absolute;
  left: -12px;
  top: -9px;
  background: #dc3545;
  color: #ffffff;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 100px;
  padding: 1px 7px;
}

/* Grid */
.clikcbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Items */
.box-item {
  background: #15274e;
  color: #fff;
  text-decoration: none;
  padding: 13px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  border-radius: 8px;
}

.box-item i {
  font-size: 22px;
}
.s9oos li {
  padding: 1px 0 3px 25px !important;
  margin: 0px 0px 0px 0px !important;
}
.s9oos li > i:first-child {
  top: 4px !important;
}

.box-item.full {
  grid-column: span 2;
}

.modal {
  z-index: 99999999999 !important;
}
.sty6yv {
  padding: 13px 12px !important;
  text-align: center !important;
}
.changHight {
  height: 41px !important;
  padding-left: 11px !important;
  border-radius: 7px !important;
}
.yu7us {
  top: 13px !important;
}
.fbnvoc {
  padding: 16px 2px !important;
}
.dtxt {
  font-size: 18px;
  margin-bottom: 0px !important;
}
.modaltxt {
  font-size: 14px !important;
  margin-top: 4px !important;
  margin-bottom: 0px !important;
}
.esrrvers {
  padding-top: 11px;
  padding-bottom: 9px;
  margin-bottom: 7px;
}

.contsection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px dashed #1e90ff;
}

.cntbox {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px dashed #1e90ff;
}

.cntbox:last-child {
  border-right: none;
}

.cntbox i {
  font-size: 36px;
  color: #1e90ff;
  margin-bottom: 12px;
}

.cntbox h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0px;
}

.cntbox p {
  font-size: 15px;
  color: #555;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  .contsection {
    grid-template-columns: repeat(2, 1fr);
  }

  .cntbox {
    border-right: 1px dashed #1e90ff;
    border-bottom: 1px dashed #1e90ff;
  }

  .cntbox:nth-child(2),
  .cntbox:nth-child(4) {
    border-right: none;
  }

  .cntbox:nth-child(3),
  .cntbox:nth-child(4) {
    border-bottom: none;
  }
}

/* Sidebar CTA Container */
.sidebar-cta {
  background: linear-gradient(135deg, #15274e, #27477d);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #333;
  transition: transform 0.3s ease;
}

.sidebar-cta:hover {
  transform: translateY(-5px);
}

/* Heading */
.sidebar-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fff;
}

/* Description */
.sidebar-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

/* CTA Buttons */
.cta-btnsss {
  display: inline-block;
  margin: 3px 3px;
  padding: 4px 19px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btnsss {
  background-color: #ff6b6b;
  color: #fff;
}

.cta-btnsss:hover {
  background-color: #ff4b4b;
}

.online-btn {
  background-color: #6bc1ff;
  color: #fff;
}

.online-btn:hover {
  background-color: #2196f3;
}

/* CTA Info */
.cta-info {
  margin-top: 20px;
  text-align: left;
  font-size: 0.9rem;
  color: #fff;
}

.cta-info p {
  margin: 5px 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .sidebar-cta {
    padding: 20px;
  }

  .sidebar-cta h3 {
    font-size: 1.5rem;
  }

  .cta-btnsss {
    width: 100%;
    margin: 10px 0;
  }
}

.career-jobs {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  text-align: center;
}

.career-jobs h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a73e8;
}

.jobs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Job Card */
.job-card {
  border: 1px solid #1a73e8;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: left;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.job-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1a73e8;
}

.bookmark {
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
}

.company,
.location {
  margin: 2px 0;
  color: #555;
  font-size: 0.95rem;
  text-align: justify;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 11px 0;
}

.job-info span {
  background-color: #f1f3f4;
  color: #555;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 5px;
}

.full-time {
  background-color: #e6f4ea;
  color: #34a853;
}

.remote {
  background-color: #f1f3f4;
  color: #555;
}

.flexible {
  background-color: #f1f3f4;
  color: #555;
}

.salary {
  background-color: #f1f3f4;
  color: #555;
}

/* Apply Link */
.apply-link {
  text-decoration: none;
  font-weight: bold;
  color: #1a73e8;
  display: inline-block;
  margin-top: 2px;
  font-size: 0.9rem;
}

.apply-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .job-card {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .job-card {
    width: 100%;
  }
}

.appynowcss {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  padding: 50px 20px;
}

.appynowcss .apply-container {
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.appynowcss .apply-container:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.appynowcss h2 {
  text-align: center;
  color: #007bff;
  margin-bottom: 10px;
}

.appynowcss p {
  text-align: center;
  color: #6c757d;
  margin-bottom: 30px;
}

.appynowcss .form-group {
  margin-bottom: 20px;
}

.appynowcss label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.appynowcss input[type="text"],
.appynowcss input[type="email"],
.appynowcss input[type="tel"],
.appynowcss input[type="file"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 14px;
  transition: 0.3s;
}

.appynowcss input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.appynowcss button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.appynowcss button:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .appynowcss .apply-container {
    padding: 20px;
  }
}

.mgmPatna_btn {
  margin-bottom: 23px;
  margin-top: 17px;
  text-align: left;
  margin-left: 18px !important;
}
.collbstn {
  border: none;
  border-radius: 100px;
  padding: 7px 18px;
}
.collbstncolor {
  border: none;
  padding: 7px 18px;
  background: #d99725;
  border-radius: 100px;
}

/* Admissions Highlights Section */
.admissions_HighlightsCss {
  background: #f9fafb;
  padding: 30px 15px;
  font-family: "Poppins", sans-serif;
}

.admissions_HighlightsCss .containerStylecss {
  /*max-width: 1200px;
  margin: 0 auto;*/
  text-align: center;
}

.admissions_HighlightsCss .section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.admissions_HighlightsCss .highlights-slider {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.admissions_HighlightsCss .highlight-card {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  flex: 0 0 90%;
  scroll-snap-align: start;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333333;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.admissions_HighlightsCss .highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.admissions_HighlightsCss .cta-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.admissions_HighlightsCss .cta-buttons .btn {
  padding: 6px 33px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admissions_HighlightsCss .cta-buttons .apply-now {
  background: #342870;
  color: #fff;
}

.admissions_HighlightsCss .cta-buttons .apply-now:hover {
  background: #0056b3;
}

.admissions_HighlightsCss .cta-buttons .download {
  background: #28a745;
  color: #fff;
}

.admissions_HighlightsCss .cta-buttons .download:hover {
  background: #1e7e34;
}

.admissions_HighlightsCss .cta-buttons .enquire {
  background: #ffc107;
  color: #1a1a1a;
}

.admissions_HighlightsCss .cta-buttons .enquire:hover {
  background: #e0a800;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .admissions_HighlightsCss .highlights-slider {
    flex-direction: row;
    gap: 20px;
  }

  .admissions_HighlightsCss .highlight-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .admissions_HighlightsCss .highlight-card {
    flex: 0 0 22%;
  }
}

.p_Highlights {
  background: #f5f8fa;
  padding: 40px 15px;
  font-family: "Poppins", sans-serif;
}

.p_Highlights .p_Highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.p_Highlights .section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.p_Highlights .highlights-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 10px;
}

.p_Highlights .highlight-card {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.p_Highlights .highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.p_Highlights .cta-buttons {
  margin-top: 25px;
}

.p_Highlights .cta-buttons .btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  background: #007bff;
  color: #fff;
  transition: all 0.3s ease;
}

.p_Highlights .cta-buttons .btn:hover {
  background: #0056b3;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .p_Highlights .highlights-cards {
    flex-direction: row;
    gap: 20px;
  }

  .p_Highlights .highlight-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .p_Highlights .highlight-card {
    flex: 0 0 30%;
  }
}

/* Latest News / Announcements Section */
.lasteNews {
  padding: 34px 0px 47px;
  font-family: "Poppins", sans-serif;
}

.lasteNews .lasteNews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lasteNews .section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}

.lasteNews .news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lasteNews .news-card {
  background: #ffffff;
  padding: 15px 20px;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #333333;
  transition: all 0.3s ease;
}

.lasteNews .news-card:hover {
  background: #f0f8ff;
  transform: translateY(-3px);
}
.esSiox {
  margin-bottom: 2px;
  font-size: 15px;
  text-align: left;
  padding: 10px 18px;
  border-top: 1px solid #ddd;
  line-height: 22px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .lasteNews .news-list {
    flex-direction: row;
    gap: 15px;
  }

  .lasteNews .news-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .lasteNews .news-card {
    flex: 0 0 30%;
  }
}

/* Section */
.seminar-section {
  padding: 13px 5px;
}

/* Titles */
.main-titlesss {
  font-size: 34px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.section-titlesss {
  font-size: 24px;
  color: #1a237e;
  margin-bottom: 20px;
}

/* Intro */
.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

/* Feature Box */
.feature-box {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
  font-size: 20px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.feature-box ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.feature-box ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .main-titlesss {
    font-size: 28px;
  }

  .section-titlesss {
    font-size: 22px;
  }

  .feature-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .main-titlesss {
    font-size: 24px;
  }

  .intro-text {
    font-size: 14px;
  }

  .feature-box h3 {
    font-size: 18px;
  }
}

.course-section {
  padding: 0px 2px;
}

/* Container */
.course-container {
  background: #ffffff;
  padding: 11px;
}

/* H1 */
.course-title {
  font-size: 34px;
  color: #0d47a1;
  margin-bottom: 10px;
}

/* College Name */
.course-college {
  font-size: 20px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 4px;
}

/* Affiliation */
.course-affiliation {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

/* Admission */
.course-admission {
  font-size: 16px;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 30px;
}

/* H2 */
.section-heading {
  font-size: 24px;
  color: #0d47a1;
  margin-bottom: 15px;
  border-left: 5px solid #0d47a1;
  padding-left: 12px;
}

/* Lists */
.course-list,
.facility-list,
.mission-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.course-list li,
.facility-list li,
.mission-list li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Vision Text */
.vision-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .course-container {
    padding: 25px;
  }

  .course-title {
    font-size: 28px;
  }

  .section-headingsss {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .course-title {
    font-size: 24px;
  }

  .course-college {
    font-size: 18px;
  }

  .section-heading {
    font-size: 20px;
  }

  .course-admission {
    font-size: 14px;
  }
}

.admission-section {
}

/* H1 */
.admission-title {
  font-size: 34px;
  color: #0d47a1;
  margin-bottom: 15px;
}

/* Intro P */
.admission-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

/* H2 */
.admission-subtitle {
  font-size: 24px;
  color: #1a237e;
  margin-bottom: 18px;
  border-left: 5px solid #0d47a1;
  padding-left: 12px;
}

/* Process Box */
.process-box {
  background: #f9fbff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 35px;
}

.process-step {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Eligibility */
.eligibility-box {
  background: #ffffff;
  border: 1px solid #e3e7f1;
  padding: 22px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.eligibility-heading {
  font-size: 20px;
  color: #0d47a1;
  margin-bottom: 8px;
}

.eligibility-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Note */
.admission-note {
  font-size: 14px;
  color: #444;
  background: #fff3e0;
  padding: 15px;
  border-radius: 6px;
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .admission-container {
    padding: 25px;
  }

  .admission-title {
    font-size: 28px;
  }

  .admission-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .admission-title {
    font-size: 24px;
  }

  .admission-intro {
    font-size: 14px;
  }

  .eligibility-heading {
    font-size: 18px;
  }
}

.fee_sholar {
  border-left: 5px solid var(--primary);
  padding: 15px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 14px;
}

/* ---------- Buttons ---------- */
.fee_sholar .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s ease;
}

.fee_sholar .btn:hover {
  background: #6f1521;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .fee_sholar .page-header h1 {
    font-size: 24px;
  }

  .fee_sholar .section h2 {
    font-size: 20px;
  }

  .fee_sholar table th,
  .fee_sholar table td {
    font-size: 14px;
  }
}

.tp-section {
  padding: 1.5rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.tp-section h2 {
  margin-bottom: 1rem;
  color: #003366;
  font-size: 1.4rem;
}

.tp-section ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.tp-section ul li {
  margin-bottom: 0.5rem;
}

/* Intro */
.intro p {
  font-size: 1rem;
}

/* Activities */
.activity-card {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.activity-card h3 {
  color: #0059b3;
  margin-bottom: 0.4rem;
}

/* Recruiters */
.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.recruiter-grid span {
  background: #e6f0ff;
  padding: 0.8rem;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
}

/* Highlight */
.highlight {
  background: #eef5ff;
  border-left: 5px solid #0059b3;
}

/* Message */
.message blockquote {
  background: #fff;
  padding: 1.2rem;
  border-left: 4px solid #003366;
  font-style: italic;
}

.tp-section.internships {
  background: #fff;
  border-top: 4px solid #0059b3;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.tp-section.internships h2 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.tp-section.internships p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #444;
}

.tp-section.internships h3 {
  margin-top: 1.4rem;
  font-size: 1.3rem;
  color: #0059b3;
}

.internship-type-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.internship-card {
  background: #eef5ff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.internship-card h4 {
  color: #003366;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

/* Alumni Section */
.tp-section.alumni {
  background: #f9fbff;
  border-top: 4px solid #003366;
  margin-top: 2rem;
}

.tp-section.alumni h2 {
  color: #003366;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.tp-section.alumni h3 {
  color: #0059b3;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.alumni-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1rem;
}

.alumni-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.alumni-card h4 {
  color: #003366;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Alumni CTA */
.alumni-cta {
  background: linear-gradient(135deg, #003366, #0059b3);
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}

.alumni-cta h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.alumni-cta p {
  margin-bottom: 1rem;
}

/* Latest News Section */
.latest-news {
  background: #ffffff;
  border-top: 4px solid #0059b3;
  margin-top: 2rem;
}

.latest-news h2 {
  color: #003366;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* News Grid */
.news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* News Card */
.news-card {
  background: #f4f8ff;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-date {
  font-size: 0.85rem;
  color: #0059b3;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.news-card h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 0.4rem;
}

.news-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.8rem;
}

/* Read More */
.news-link {
  align-self: flex-start;
  text-decoration: none;
  font-weight: 600;
  color: #0059b3;
}

.news-link:hover {
  text-decoration: underline;
}

.news-details {
  background: #ffffff;
  margin-top: 1.5rem;
}

.news-title {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 0.6rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Image */
.news-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* Content */
.news-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

.news-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: #0059b3;
}

.news-content ul {
  padding-left: 1.2rem;
}

.news-content ul li {
  margin-bottom: 0.4rem;
}

/* Back Button */
.back-btn-wrap {
  margin-top: 2rem;
}

/* Announcements Section */
.announcements {
  background: #f9fbff;
  border-top: 4px solid #003366;
  margin-top: 2rem;
}

.announcements h2 {
  font-size: 1.6rem;
  color: #003366;
}

.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

/* Announcement Item */
.announcement-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

/* Badge */
.announce-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: bold;
  background: #ccc;
  color: #fff;
  white-space: nowrap;
}

.announce-badge.new {
  background: #28a745;
}

.announce-badge.important {
  background: #dc3545;
}

/* Content */
.announce-content h3 {
  font-size: 1.05rem;
  color: #003366;
  margin-bottom: 0.3rem;
}

.announce-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.4rem;
}

.announce-date {
  font-size: 0.85rem;
  color: #666;
}

/* View Link */
.announce-link {
  margin-left: auto;
  align-self: center;
  font-weight: 600;
  color: #0059b3;
  text-decoration: none;
}

.announce-link:hover {
  text-decoration: underline;
}

.announce-title {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 0.6rem;
}

/* Meta */
.announce-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Full Content */
.announce-full-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.announce-full-content h3 {
  color: #0059b3;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.announce-full-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.announce-full-content ul li {
  margin-bottom: 0.4rem;
}

.event-calendar {
  background: #ffffff;
  border-top: 4px solid #0059b3;
  margin-top: 2rem;
}

.event-calendar h2 {
  font-size: 1.6rem;
  color: #003366;
}

/* Event Grid */
.event-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Event Card */
.event-card {
  background: #f4f8ff;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Date Box */
.event-date {
  background: #003366;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  font-size: 1.4rem;
  font-weight: bold;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Details */
.event-details h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 0.3rem;
}

.event-type {
  font-size: 0.9rem;
  color: #0059b3;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.event-venue {
  font-size: 0.9rem;
  color: #555;
}

.seminars-workshops {
  background: #f9fbff;
  border-top: 4px solid #003366;
  margin-top: 2rem;
}

.seminars-workshops h2 {
  font-size: 1.6rem;
  color: #003366;
}

/* Grid */
.seminar-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card */
.seminar-card {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Date */
.seminar-date {
  background: #0059b3;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  text-align: center;
  min-width: 60px;
}

.seminar-date .day {
  font-size: 1.4rem;
  font-weight: bold;
}

.seminar-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Details */
.seminar-details h3 {
  font-size: 1.05rem;
  color: #003366;
  margin-bottom: 0.3rem;
}

.seminar-speaker,
.seminar-venue {
  font-size: 0.9rem;
  color: #555;
}

/* Mobile Sticky Footer */
.bk-mobile-sticky-footer {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
  .bk-mobile-sticky-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .bk-footer-btn {
    flex: 1;
    text-align: center;
    padding: 7px 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
  }

  /* Apply Now */
  .bk-footer-btn.apply-btn {
    background: linear-gradient(135deg, #ff7a18, #ff9f1a);
  }

  /* News */
  .bk-footer-btn.news-btn {
    background: linear-gradient(135deg, #0066ff, #3399ff);
  }

  /* WhatsApp */
  .bk-footer-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1ebe57);
  }

  /* Hover / Tap Effect */
  .bk-footer-btn:active {
    transform: scale(0.95);
    opacity: 0.9;
  }
}
.mgmx-cta-wrapper {
  padding: 12px 18px !important;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  text-align: center;
  border-radius: 0px;
}

.mgmx-cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mgmx-cta-text {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.mgmx-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mgmx-btn-primary,
.mgmx-btn-secondary {
  padding: 6px 41px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.mgmx-btn-primary {
  background: #facc15;
  color: #fff;
}

.mgmx-btn-primary:hover {
  background: #eab308;
}

.mgmx-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.mgmx-btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* ===== Tablet & Desktop ===== */
@media (min-width: 768px) {
  .mgmx-cta-wrapper {
    padding: 60px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mgmx-cta-content {
    max-width: 60%;
  }

  .mgmx-cta-title {
    font-size: 32px;
  }

  .mgmx-cta-text {
    font-size: 16px;
  }

  .mgmx-cta-btns {
    flex-direction: row;
  }
}

.bk-admission-wrapper {
  /*min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding: 20px;*/
}
.list-noness {
  list-style: none;
  padding: 0px 0px;
}
/* Form Card */
.bk-admission-form {
  background: #ffffff;
  width: 100%;
  padding: 15px;
  border-radius: 21px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Title */
.bk-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #203a43;
  /* margin-bottom: 18px; */
}

/* Subtitle */
.bk-form-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Form Group */
.bk-form-group {
  margin-bottom: 8px;
}

.bk-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Inputs */
.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.bk-form-group input:focus,
.bk-form-group select:focus,
.bk-form-group textarea:focus {
  border-color: #2c5364;
  box-shadow: 0 0 0 3px rgba(44, 83, 100, 0.15);
}

/* Button */
.bk-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff7a18, #ff9f1a);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

/* Button Hover */
.bk-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.4);
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .bk-admission-form {
    padding: 22px;
  }

  .bk-form-title {
    font-size: 22px;
  }
}

/* Wrapper */
.bk-bscc-wrapper {
  padding: 30px;
  background: #f5f7fb;
}

/* Title */
.bk-bscc-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #203a43;
  margin-bottom: 20px;
}

/* Table Box */
.bk-bscc-table-box {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Table */
.bk-bscc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

/* Head */
.bk-bscc-table thead {
  background: linear-gradient(135deg, #203a43, #2c5364);
}

.bk-bscc-table th {
  padding: 14px;
  color: #ffffff;
  font-size: 14px;
  text-align: left;
}

/* Body */
.bk-bscc-table td {
  padding: 14px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* Hover Row */
.bk-bscc-table tbody tr:hover {
  background: #f1f6f9;
}

/* Apply Button */
.bk-bscc-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff9f1a);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.bk-bscc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 122, 24, 0.4);
}

/* Mobile */
@media (max-width: 600px) {
  .bk-bscc-title {
    font-size: 22px;
  }
}

/* Admission Process Section */
.mgm-admission-process {
  padding: 50px 16px;
  background: #f7f9fc;
  font-family: "Segoe UI", sans-serif;
}

.mgm-ap-container {
  max-width: 1351px;
  margin: auto;
}

.mgm-ap-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1b2a4e;
}

.mgm-ap-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin: 10px 0 40px;
}

/* Timeline */
.mgm-ap-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Step Card */
.mgm-ap-step {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

.mgm-ap-step::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  height: calc(100% + 24px);
  width: 2px;
  background: #dbe3ff;
}

.mgm-ap-step-last::before {
  display: none;
}

/* Icon */
.mgm-ap-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #e8edff;
  color: #1d3cff;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Content */
.mgm-ap-content h4 {
  font-size: 18px;
  color: #1b2a4e;
  margin-bottom: 4px;
}

.mgm-ap-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Desktop View */
@media (min-width: 768px) {
  .mgm-ap-timeline {
    flex-direction: row;
    justify-content: space-between;
  }

  .mgm-ap-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
  }

  .mgm-ap-step::before {
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
  }

  .mgm-ap-step-last::before {
    display: none;
  }

  .mgm-ap-content h4 {
    font-size: 17px;
  }
}

/* Sticky Admission CTA */
.mgm-sticky-admission-cta {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTA Button Base */
.mgm-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
  overflow: hidden;
  backdrop-filter: blur(6px);
  min-width: 48px;
}

/* Icon */
.mgm-cta-icon {
  font-size: 18px;
}

/* Text (hidden on mobile) */
.mgm-cta-text {
  white-space: nowrap;
}

/* Button Colors */
.mgm-cta-apply {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.mgm-cta-call {
  background: linear-gradient(135deg, #1d976c, #93f9b9);
  color: #0b3d2e;
}

.mgm-cta-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Hover Effects */
.mgm-cta-btn:hover {
  transform: translateX(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Mobile View */
@media (max-width: 767px) {
  .mgm-sticky-admission-cta {
    right: 8px;
  }

  .mgm-cta-btn {
    padding: 12px;
    border-radius: 50%;
    justify-content: center;
  }

  .mgm-cta-text {
    display: none;
  }
}
/* =========================
   Notification Section
========================= */

.notification-section {
  position: relative;
  margin-bottom: 25px;
}

/* Left Box */

.notification-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid #e5e5e5;
}

/* Tabs */

.custom-tabs {
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
}

.custom-tabs .nav-link {
  border: none;
  padding: 10px 20px;
  border-radius: 60px;
  background: #f4f6ff;
  color: #15274e;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
  background: linear-gradient(135deg, #15274e, #1e3a72);
  color: #fff;
  box-shadow: 0 10px 25px rgba(21, 39, 78, 0.25);
}

.custom-tabs .nav-link:hover {
  transform: translateY(-2px);
}

/* Notice Item */

.notice-item {
  padding: 16px 0;
}

/* Heading */

.notice-item h6 {
  font-size: 16px;
  font-weight: 700;
  color: #15274e;
  line-height: 1.5;
  margin-bottom: 1px;
}

/* Content Row */

.notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1px;
  margin-bottom: 1px;
}

/* Sub Content */

.notice-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  font-weight: 400;
}

/* Read More Button */

.read-more-btn {
  background: linear-gradient(135deg, #15274e, #1d3563);
  color: #fff;
  padding: 5px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-2px);
}

/* Date */

.notice-date {
  font-size: 13px;
  color: #777;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* HR */

/* .notice-hr {
  margin: 0;
  border: 0;
  border-top: 1px solid red;
  opacity: 1;
} */

/* Right Admission Box */

.admission-box {
  background: linear-gradient(135deg, #15274e, #1d3563);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Badge */

.admission-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

/* Heading */

.admission-box h3 {
  font-size: 30px;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 15px;
  font-weight: 800;
}

/* Paragraph */

.admission-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

/* Buttons */

.admission-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.admission-btns .vs-btn {
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  border: none;
  background: #ff6b00;
  color: #fff;
  transition: 0.3s ease;
}

.admission-btns .vs-btn:hover {
  transform: translateY(-2px);
}

.btn-dark-custom {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Number */

.admission-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.admission-number i {
  color: #ffb300;
}

/* Responsive */

@media (max-width: 991px) {

  .notification-wrapper,
  .admission-box {
    padding: 25px;
  }

  .admission-box h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {

  /* Tabs */

  .custom-tabs {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: 100%;
  }

  .custom-tabs li {
    width: 50%;
  }

  .custom-tabs .nav-link {
    width: 100%;
    padding: 12px 6px;
    font-size: 12px;
    text-align: center;
    border-radius: 14px;
    line-height: 1.3;
    white-space: normal;
  }

  /* Notice */

  .notice-item {
    padding: 14px 0;
  }

  .notice-item h6 {
    font-size: 14px;
  }

  .notice-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .notice-content p {
    font-size: 13px;
  }

  .read-more-btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .notice-date {
    font-size: 12px;
  }

  /* Admission Buttons */

  .admission-btns {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .admission-btns .vs-btn {
    width: 50%;
    padding: 12px 10px;
    font-size: 14px;
    text-align: center;
  }

  /* Admission Box */

  .admission-box h3 {
    font-size: 24px;
    line-height: 1.4;
  }

  .admission-box p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* =========================
   About Swiper Slider
========================= */

/* .about-swiper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
} */

.about-swiper .swiper-slide {
  /* border-radius: 30px; */
  overflow: hidden;
  position: relative;
}

.about-swiper .swiper-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  /* border-radius: 30px; */
  transition: 0.5s ease;
}

.about-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Optional Glow */

/* .about-swiper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.08);
    pointer-events: none;
    z-index: 2;
} */

/* Responsive */

@media (max-width: 991px) {
  .about-swiper .swiper-slide img {
    height: 350px;
  }
}
/* =========================
   Important Information
========================= */

.vs-accordion-wrapper {
  padding: 60px 0;
  position: relative;
}

.vs-accordion-wrapper .h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #15274e;
}

/* Left Image */
.vs-accordion-wrapper img {
  width: 100%;
  height: auto;
  /* max-height: 600px; */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
/* .vs-accordion-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
} */

/* Content Box */

.vs-accordion-wrapper .about-content {
  height: 100%;
}

/* Content Item */

.vs-accordion-wrapper .d-flex {
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ececec;
}

/* Remove last border */

.vs-accordion-wrapper .d-flex:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Icon */

.vs-accordion-wrapper .text-theme i {
  font-size: 42px;
  color: #15274e;
  min-width: 50px;
}

/* Heading */

.vs-accordion-wrapper h3 {
  font-size: 30px;
  font-weight: 700;
  color: #15274e;
  margin-bottom: 12px;
}

/* Paragraph */

.vs-accordion-wrapper p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 10px;
}

/* List */

.list-noness {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-noness li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Check Icon */

.list-noness li i {
  color: #ff6b00;
  margin-top: 6px;
  font-size: 15px;
}

/* Column Equal Height */

.vs-accordion-wrapper .col-xl-4 {
  display: flex;
}

.vs-accordion-wrapper .about-content {
  width: 100%;
}

/* Responsive */

@media (max-width: 991px) {
  .vs-accordion-wrapper {
    padding: 60px 0;
  }

  .vs-accordion-wrapper .h1 {
    font-size: 38px;
  }

  .vs-accordion-wrapper h3 {
    font-size: 24px;
  }

  .vs-accordion-wrapper .d-flex {
    gap: 14px;
  }

  .vs-accordion-wrapper p,
  .list-noness li {
    font-size: 15px;
    line-height: 1.7;
  }

  .vs-accordion-wrapper img {
    margin-bottom: 30px;
  }
}
/* Admissions Open 2026–27 CTA Wrapper */

.mgmx-cta-wrapper {
    background: linear-gradient(135deg, #15274e, #1d3563);
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}

/* Inner */

.mgmx-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Content */

.mgmx-cta-content {
    max-width: 700px;
}

/* Heading */

.mgmx-cta-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 14px;
    line-height: 1.2;
}

/* Text */

.mgmx-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff !important;
    margin-bottom: 0;
}

/* Buttons */

.mgmx-cta-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Primary Button */

.mgmx-btn-primary {
    background: #ffb300;
    color: #15274e;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.mgmx-btn-primary:hover {
    background: #fff;
    color: #15274e;
    transform: translateY(-2px);
}

/* Secondary Button */

.mgmx-btn-secondary {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.mgmx-btn-secondary:hover {
    background: #fff;
    color: #15274e;
}

/* Responsive */

@media (max-width: 991px) {

    .mgmx-cta-wrapper {
        padding: 40px 0;
    }

    .mgmx-cta-title {
        font-size: 40px;
    }

    .mgmx-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {

    .mgmx-cta-wrapper {
        padding: 35px 0;
    }

    .mgmx-cta-title {
        font-size: 25px;
    }

    .mgmx-cta-text {
        font-size: 12px;
        line-height: 1.7;
    }

    /* Buttons Side by Side */

    .mgmx-cta-btns {
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mgmx-btn-primary,
    .mgmx-btn-secondary {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 14px 8px;
        font-size: 14px;
        white-space: nowrap;
    }
}
.infrastructure-section .infra-text{
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 16px;
}

.infra-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

.infra-card:hover{
    transform: translateY(-8px);
}

.infra-img{
    overflow: hidden;
    height: 220px;
}

.infra-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.infra-card:hover .infra-img img{
    transform: scale(1.08);
}

.infra-content{
    padding: 20px;
    text-align: center;
}

.infra-content h5{
    margin-bottom: 10px;
    font-weight: 700;
}

.infra-content h5 a{
    color: #0d1b4c;
    text-decoration: none;
}

.infra-content p{
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}
.captcha-box{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.captcha-box img{
    width: calc(100% - 72px);
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    object-fit: cover;
}

.refresh-btn{
    width: 60px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #ff8c1a;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.refresh-btn:hover{
    background: #e67600;
}

.bk-form-group input[name="captcha"]{
    width: 100%;
    height: 30px;
    border-radius: 12px;
    border: 1px solid #ccc;
    padding: 0 18px;
    font-size: 17px;
}