.header-top-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.logo-left img {
  width: 730px;
  max-width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #005252;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-contact span {
  display: block;
}

.header-contact h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .header-top-area {
    /* flex-direction: column; */
    text-align: center;
  }

  .header-right {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-left img {
    width: 100%;
  }
}

.header-style-two {
  padding: 0;
}

   /* === responsive video banner === */
    .video-banner {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: #000;
    }

    #player {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw;
      min-height: 100vh;
      min-width: 177.77vh;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* override for small screens */
    @media (max-width: 768px) {
      .video-banner {
        height: 70vh;
        /* smaller height on tablets/phones */
      }

      #player {
        width: 177.77vh;
        height: 100vw;
        min-height: 70vh;
        min-width: auto;
      }
    }

    @media (max-width: 480px) {
      .video-banner {
        height: 50vh;
      }

      #player {
        width: 177.77vh;
        height: 100vw;
        min-height: 50vh;
      }
    }

    /* === counter boxes responsive === */
    .counter-box {
      background: #fff;
      border-radius: 20px;
      padding: 10px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      transition: 0.35s;
      height: 110px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 100%;
    }

    .counter-box:hover {
      transform: translateY(-8px);
    }

    .counter-box .count-box {
      font-size: 25px;
      font-weight: 700;
      color: #0b8b84;
      line-height: 1;
      margin-bottom: 15px;
    }

    .counter-box h5 {
      font-size: 15px;
      color: #222;
      margin: 0;
    }

    /* responsive counters: smaller font, adjust height */
    @media (max-width: 992px) {
      .counter-box {
        height: 100px;
        padding: 8px;
      }

      .counter-box .count-box {
        font-size: 22px;
        margin-bottom: 10px;
      }

      .counter-box h5 {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .counter-box {
        height: 90px;
        padding: 6px;
      }

      .counter-box .count-box {
        font-size: 20px;
        margin-bottom: 8px;
      }

      .counter-box h5 {
        font-size: 13px;
      }
    }

    @media (max-width: 576px) {
      .counter-box {
        height: 80px;
        padding: 4px;
        border-radius: 16px;
      }

      .counter-box .count-box {
        font-size: 18px;
        margin-bottom: 5px;
      }

      .counter-box h5 {
        font-size: 11px;
      }
    }

    /* extra small screens */
    @media (max-width: 400px) {
      .counter-box .count-box {
        font-size: 16px;
      }

      .counter-box h5 {
        font-size: 10px;
      }
    }

    /* keep layout for .row .col-3 counters */
    .about-section-two .row.align-items-center .col-3 {
      flex: 0 0 25%;
      max-width: 25%;
      padding: 0 6px;
    }

    @media (max-width: 576px) {
      .about-section-two .row.align-items-center .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 6px;
        margin-bottom: 10px;
      }

      .about-section-two .row.align-items-center {
        row-gap: 10px;
      }
    }

/* Light overlap */
.hero-info {
  position: relative;
  margin-top: -90px;
  z-index: 20;
}

/* Admission Card */
.admission-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 55px;

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

.badge-admission {
  display: inline-block;
  background: #005252;
  color: #fff;

  padding: 8px 20px;
  border-radius: 40px;

  font-size: 14px;
  margin-bottom: 20px;
}

.admission-card h2 {
  font-size: 25px;
}

.admission-card p {
  color: #000000;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Latest Events */

.event-card {
  background: #fff;

  border-radius: 25px;

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

  overflow: hidden;

  height: 100%;
}

.event-title {
  background: #005252;

  color: #fff;

  text-align: center;

  padding: 18px;

  font-size: 24px;

  font-weight: 700;
}

.event-scroll {
  height: 350px;

  overflow: hidden;
}

.event-item {
  padding: 18px 25px;

  border-bottom: 1px solid #eee;

  font-weight: 600;

  animation: scrollUp 18s linear infinite;
}

.event-item span {
  display: block;

  color: #0b8b84;

  font-size: 13px;

  margin-bottom: 5px;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-360px);
  }
}

/* Responsive */

@media (max-width: 991px) {
  .hero-info {
    margin-top: -40px;
  }

  .admission-card {
    padding: 35px;
  }

  .admission-card h2 {
    font-size: 32px;
  }

  .left-contact,
  .right-contact {
    display: none !important;
  }
}

.course-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 380px;
}

.course-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

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

.overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, #ffd90098, #0000008a);
}

.overlay h4 {
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.nursing-slider,
.allied-slider {
  height: 450px;
}

.team-block {
  width: 250px !important;
}

.event-slider {
  padding-bottom: 50px;
}

.event-slider .swiper-slide {
  height: auto;
}

.event-slider .blog-block {
  margin-bottom: 0;
}

/* ===========================
   Header Top
=========================== */

.header-upper {
  background: #fff;
  padding: 5px 0;
}

.top-logo-box img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

/* ===========================
   Green Menu Bar
=========================== */

.header-lower {
  background: #005252;
  /* Green */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.header-lower .main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}

/* Menu */

.header-lower .navigation > li {
  margin: 0 18px;
}

.header-lower .navigation > li > a {
  color: #fff !important;

  transition: 0.3s;
}

.sticky-header .logo {
  background: #fff;
  padding: 10px;
}

.header-lower .navigation > li.current > a,
.header-lower .navigation > li:hover > a {
  color: #ffd700 !important;
}

/* Dropdown */

.header-lower .navigation li ul {
  background: #fff;
}

.header-style-two
  .header-lower
  .inner-container
  .main-box
  .left-box
  .main-menu
  .navigation
  > li {
  padding: 0;
}

.header-lower .navigation li ul li a {
  color: #222 !important;
}

.header-lower .navigation li ul li:hover > a {
  color: #005252 !important;
}

/* ===========================
   Yellow Apply Button
=========================== */

.apply-btn {
  background: #ffd700 !important;
  color: #222 !important;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
  height: 40px;
}

.apply-btn .btn-title {
  color: #222 !important;
}

.apply-btn:hover {
  background: #ffc107 !important;
  transform: translateY(-2px);
}

/* Mobile Menu Icon */

.mobile-nav-toggler span {
  background: #fff;
}

/* Sticky Header */

.sticky-header {
  background: #ffffff;
}

.sticky-header .navigation > li > a {
  color: #000000 !important;
}

.sticky-header .navigation > li:hover > a {
  color: #ffd700 !important;
}

.admission-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #005252, #0b8b84, #08706d, #005252);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;

  border-radius: 25px;
  padding: 55px;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating circles */

.admission-card::before,
.admission-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatCircle 8s linear infinite;
}

.admission-card::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -70px;
}

.admission-card::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -40px;
  animation-duration: 12s;
}

@keyframes floatCircle {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.admission-card h2,
.admission-card p {
  color: #fff;
}

.header-top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 20px; */
}

.left-contact {
  width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.right-contact {
  width: 350px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* .right-contact {
      justify-content: flex-end;
      text-align: right;
    } */

.logo-left {
  flex: 1;
  text-align: center;
}

.logo-left img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

.header-contact i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #005252;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-contact h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.header-contact span {
  display: block;
  font-size: 14px;
}

/* ==========================
   Mobile Header
========================== */

@media only screen and (max-width: 991px) {
  /* Hide Phone & Email */
  .left-contact,
  .right-contact {
    display: none;
  }

  /* Hide Green Menu */
  .header-lower {
    display: none;
  }

  /* Header */
  .header-top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }

  /* Logo */
  .logo-left {
    flex: 1;
    text-align: left;
  }

  .logo-left img {
    width: 220px;
    max-width: 100%;
  }

  /* Show Toggle */
  .mobile-nav-toggler {
    display: block !important;
    margin-left: auto;
    background: none;
    border: none;
  }

  .mobile-nav-toggler span {
    display: block;
    width: 28px;
    height: 3px;
    background: #005252;
    margin: 5px 0;
  }
}

.course-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 15px 22px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.course-heading h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #005252;
}

.course-heading h4 i {
  margin-right: 8px;
  color: #0b8b84;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-nav div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #005252;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.slider-nav div:hover {
  background: #0b8b84;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .course-heading {
    padding: 12px 15px;
  }

  .course-heading h4 {
    font-size: 18px;
  }

  .slider-nav div {
    width: 36px;
    height: 36px;
  }
}
.se-title {
  font-size: 30px;
  font-weight: 700;
}
.sub-title {
  color: #000;
}
.section-padding-new {
  padding: 30px 0 !important;
}
.faculty-section {
  background: #f5fbfb;
}

.faculty-wrapper {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.faculty-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.faculty-table thead th {
  background: #005252;
  color: #fff;
  padding: 18px;
  text-align: center;
  border: none;
}

.faculty-table thead th:first-child {
  border-radius: 15px 0 0 15px;
}

.faculty-table thead th:last-child {
  border-radius: 0 15px 15px 0;
}

.faculty-table tbody tr {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.faculty-table tbody tr:hover {
  transform: translateY(-5px);
  background: #f0fafa;
}

.faculty-table td {
  padding: 18px;
  text-align: center;
  border: none;
}

.faculty-table td:first-child {
  color: #005252;
  font-weight: 700;
}

.faculty-name {
  text-align: left !important;
  font-weight: 600;
  color: #005252;
}

.designation {
  color: #555;
}

/* Mobile */

@media (max-width: 991px) {
  .faculty-wrapper {
    overflow-x: auto;
  }

  .faculty-table {
    min-width: 750px;
  }
}
.course-tabs-new {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 50, 50, 0.08);
  overflow: hidden;
  padding: 0;
  margin-top: 20px;
}

.course-tabs-new .nav-tabs {
  border: none;
  background: #e3fafa;
  padding: 24px 0 24px 10px;
  border-radius: 0;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  min-height: 480px;
}

.course-tabs-new .nav-tabs .nav-link {
  border: none;
  border-radius: 60px 0 0 60px;
  padding: 15px 10px;
  font-weight: 600;
  color: #1f4a4a;
  background: transparent;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  border-left: 4px solid transparent;
}

.course-tabs-new .nav-tabs .nav-link i {
  width: 30px;
  color: #00706d;
  font-size: 1.25rem;
  transition: 0.3s;
}

.course-tabs-new .nav-tabs .nav-link:hover {
  background: #e3f1f0;
  color: #003b3b;
  border-left-color: #00706d;
  transform: translateX(4px);
}

.course-tabs-new .nav-tabs .nav-link.active {
  background: #ffffff;
  color: #005252;
  box-shadow: 0 8px 24px rgba(0, 82, 82, 0.1);
  border-left: 4px solid #00706d;
  font-weight: 700;
}

.course-tabs-new .nav-tabs .nav-link.active i {
  color: #005252;
}

/* tab content */
.tab-content-new {
  padding: 38px 40px 40px 40px;
  background: #ffffff;
}

.tab-content-new .tab-pane h3 {
  color: #005252;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  border-bottom: 3px solid #e1efee;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tab-content-new .tab-pane p {
  color: #1f3f3f;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.tab-content-new .tab-pane ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 16px;
}

.tab-content-new .tab-pane ul li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  color: #003b3b;
  margin-bottom: 8px;
  line-height: 1.6;
}

.tab-content-new .tab-pane ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #00706d;
  font-weight: 700;
  font-size: 1.2rem;
}

.badge-tag {
  display: inline-block;
  background: #e1efee;
  color: #005252;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 22px;
  border-radius: 60px;
  letter-spacing: 0.4px;
  margin-top: 10px;
}

.overview-highlight {
  background: #f5fbfb;
  border-radius: 24px;
  padding: 24px 30px;
  margin: 22px 0 8px;
  border-left: 6px solid #00706d;
}

.overview-highlight strong {
  color: #005252;
}

/* ---------- KEY AREAS - enhanced list format ---------- */
.key-areas-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 18px 0 10px;
}

.key-area-item {
  background: #f8fcfc;
  border-radius: 20px;
  padding: 22px 28px 24px;
  border: 1px solid #e3efee;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 50, 50, 0.02);
  position: relative;
  overflow: hidden;
}

.key-area-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #00706d;
  border-radius: 0 4px 4px 0;
  opacity: 0.5;
  transition: 0.3s;
}

.key-area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 82, 82, 0.1);
  border-color: #b8d9d6;
  background: #ffffff;
}

.key-area-item:hover::before {
  opacity: 1;
  width: 6px;
  background: #005252;
}

.key-area-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.key-area-header .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #dceeec;
  border-radius: 14px;
  color: #005252;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.key-area-item:hover .icon-box {
  background: #005252;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

.key-area-header h5 {
  font-weight: 700;
  color: #003b3b;
  font-size: 1.15rem;
  margin: 0;
}

.key-area-item .area-description {
  color: #2a4f4f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 4px;
}

.key-area-item .topic-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 0;
}

.key-area-item .topic-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f4a4a;
  background: #eef6f5;
  padding: 4px 14px 4px 30px;
  border-radius: 30px;
  transition: 0.2s;
}

.key-area-item .topic-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 3px;
  color: #00706d;
  font-size: 1.2rem;
  font-weight: 700;
}

.key-area-item .topic-list li:hover {
  background: #dceeec;
  color: #003b3b;
}

/* responsive */
@media (max-width: 768px) {
  .course-tabs-new .nav-tabs {
    flex-direction: row !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 16px 12px;
    min-height: auto;
    gap: 4px;
    border-radius: 0;
  }

  .course-tabs-new .nav-tabs .nav-link {
    border-radius: 40px !important;
    border-left: none !important;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 0.8rem;
    background: #eaf3f2;
    border: 1px solid #d0e6e4;
  }

  .course-tabs-new .nav-tabs .nav-link.active {
    border-left: none !important;
    background: #005252;
    color: white;
    box-shadow: none;
  }

  .course-tabs-new .nav-tabs .nav-link.active i {
    color: white;
  }

  .course-tabs-new .nav-tabs .nav-link i {
    font-size: 1rem;
    width: 20px;
  }

  .tab-content-new {
    padding: 24px 18px;
  }

  .key-area-item {
    padding: 18px 18px 20px;
  }

  .key-area-item .topic-list li {
    font-size: 0.82rem;
    padding: 3px 12px 3px 26px;
  }

  .key-area-item .topic-list li::before {
    left: 8px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .course-tabs-new .nav-tabs .nav-link {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .tab-content-new .tab-pane h3 {
    font-size: 1.3rem;
  }

  .key-area-header h5 {
    font-size: 1rem;
  }

  .key-area-item .topic-list {
    gap: 4px 8px;
  }
}
/*==================================================
ABOUT
==================================================*/

.about-images {
  position: relative;
  padding-right: 80px;
}

.about-images .main-image img {
  width: 100%;
  border-radius: 25px;
}

.about-images .shape-image {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 230px;
}

.about-images .shape-image img {
  width: 100%;
  border-radius: 20px;
  border: 8px solid #fff;
}

.experience-box {
  position: absolute;
  left: -20px;
  bottom: 50px;
  width: 180px;
  background: #005252;
  color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.experience-box h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 8px;
}

.about-content p {
  margin-bottom: 18px;
  text-align: justify;
}

.list-style-one li {
  margin-bottom: 15px;
}

.list-style-one li i {
  color: #005252;
  margin-right: 10px;
}

/*==================================================
Journey
==================================================*/
.journey-card {
  background: #fff;

  padding: 35px;

  border-radius: 20px;

  margin-bottom: 30px;

  border-left: 6px solid #005252;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.journey-card:hover {
  transform: translateY(-10px);
}

.journey-card .year {
  display: inline-block;

  background: #005252;

  color: #fff;

  padding: 8px 20px;

  border-radius: 30px;

  font-weight: 600;

  margin-bottom: 20px;
}

.journey-card h4 {
  color: #005252;

  margin-bottom: 15px;
}

.journey-card p {
  margin: 0;

  text-align: justify;
}
.chairman-section {
  background: #fff;
  position: relative;
}

.chairman-box {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.chairman-img {
  position: relative;
  height: 100%;
  min-height: 650px;
}

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

.chairman-badge {
  position: absolute;
  left: 30px;
  bottom: 120px;
  background: #005252;
  color: #fff;
  padding: 18px 22px;
  border-radius: 15px;
}

.chairman-badge h5 {
  color: #fff;
  margin-bottom: 5px;
}

.chairman-content {
  padding: 20px 30px;
}

.chairman-content p {
  text-align: justify;
  margin-bottom: 18px;
}

.quote-box {
  background: #f5fbfb;
  border-left: 5px solid #005252;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  font-style: italic;
}

.role-card {
  background: #f8f8f8;
  border-radius: 18px;
  padding: 20px;
  margin-top: 40px;
}

.role-card h4 {
  color: #005252;
  margin-bottom: 25px;
}

.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.role-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  color: #000;
}

.role-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  background: #005252;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.signature {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.signature h3 {
  color: #005252;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .chairman-img {
    min-height: 450px;
  }

  .chairman-content {
    padding: 35px;
  }
}

.chairman-img {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.chairman-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.mission-step {
  display: flex;
  gap: 25px;
  padding: 25px 30px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 5px solid #005252;
  border-radius: 12px;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mission-step span {
  min-width: 70px;
  height: 70px;
  background: #005252;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.mission-step h5 {
  color: #005252;
  margin-bottom: 10px;
}

.mission-step p {
  margin: 0;
  text-align: justify;
}

.mission-step:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 82, 82, 0.15);
}

@media (max-width: 767px) {
  .mission-step {
    flex-direction: column;
    text-align: center;
  }

  .mission-step span {
    margin: auto;
  }
}
.facility-gallery {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;

  border-radius: 15px;

  transition: 0.4s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
  transform: translateY(-8px) scale(1.05);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.facility-gallery h5 {
  font-size: 24px;

  color: #005252;

  margin-bottom: 25px;
}

.facilities-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.facility-tabs {
  background: #005252;
  height: 100%;
}

.facility-tabs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-tabs li {
  color: #fff;
  padding: 22px 25px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.facility-tabs li i {
  width: 22px;
  text-align: center;
}

.facility-tabs li:hover {
  background: #017474;
  padding-left: 35px;
}

.facility-tabs li.active {
  background: #fff;
  color: #005252;
  border-left: 5px solid #ffb400;
}

.facility-content {
  padding: 10px 25px;
  min-height: 620px;
}

.tab-pane {
  display: none;
  animation: fadeMove 0.6s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeMove {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.facility-image img {
  width: 100%;
  border-radius: 18px;
  transition: 0.5s;
}

.facility-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .facility-tabs {
    overflow-x: auto;
  }

  .facility-tabs ul {
    display: flex;
    white-space: nowrap;
  }

  .facility-tabs li {
    border: none;
    padding: 18px 25px;
  }

  .facility-content {
    padding: 30px;
  }
}
.edu-outcome-section {
  background: #f7fbfb;
}

.edu-ribbon {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  transition: 0.4s;
}

.edu-ribbon.right {
  justify-content: flex-end;
}

.ribbon-no {
  width: 90px;
  height: 90px;
  background: #005252;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.ribbon-content {
  background: #fff;
  padding: 28px 35px;
  border-radius: 15px;
  width: 85%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.4s;
}

.left .ribbon-content {
  margin-left: -18px;
  padding-left: 55px;
}

.right .ribbon-content {
  margin-right: -18px;
  padding-right: 55px;
  text-align: right;
}

.ribbon-content h4 {
  color: #005252;
  margin-bottom: 12px;
}

.ribbon-content p {
  margin: 0;
  text-align: justify;
}

.edu-ribbon:hover .ribbon-content {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 82, 0.18);
}

.edu-ribbon:hover .ribbon-no {
  transform: scale(1.1) rotate(360deg);
}

@media (max-width: 991px) {
  .edu-ribbon,
  .edu-ribbon.right {
    display: block;
  }

  .ribbon-content,
  .left .ribbon-content,
  .right .ribbon-content {
    width: 100%;
    margin: 20px 0 0;
    padding: 25px;
    text-align: left;
  }

  .ribbon-no {
    margin: auto;
  }
}
/* ---------- new committee design ---------- */
.committee-section-new {
  background: #f4fafb;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.committee-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px 30px;
  box-shadow: 0 12px 30px rgba(0, 50, 50, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 82, 82, 0.04);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
}

.committee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(0, 82, 82, 0.1);
  border-color: rgba(0, 114, 109, 0.15);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 16px;

  border-bottom: 2px solid #e2f0ef;
  padding-bottom: 14px;
}

.card-index {
  background: linear-gradient(145deg, #005252, #00706d);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(0, 82, 82, 0.2);
}

.committee-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #005252;
}

.member-list-new {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  flex: 1;
}

.member-list-new li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0 4px 4px;
  border-bottom: 1px dashed #e8f3f2;
  font-size: 0.98rem;
  color: #1f3a3a;
}

.member-list-new li:last-child {
  border-bottom: none;
}

.member-list-new li::before {
  content: "▹";
  color: #00706d;
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0.7;
}

.member-role {
  font-weight: 500;
  color: #005252;
  background: #e5f3f2;
  border-radius: 30px;
  padding: 2px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-left: auto;
  white-space: nowrap;
}

.committee-badge {
  display: inline-block;
  background: #d7edeb;
  color: #005252;
  border-radius: 40px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 6px;
  align-self: flex-start;
}

/* responsive */
@media (max-width: 680px) {
  .committee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .committee-card {
    padding: 20px 18px;
  }
}
.anti-section {
  background: #f6fbfb;
}

.anti-intro {
  background: #ffffff;

  padding: 20px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  margin-bottom: 20px;
}

.anti-intro p {
  text-align: justify;
  margin-bottom: 15px;
}

/* Timeline */

.anti-timeline {
  position: relative;

  padding: 20px 0;
}

.anti-timeline:before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  width: 3px;

  height: 100%;

  background: #005252;

  transform: translateX(-50%);
}

.anti-item {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 30px;
}

.date-card {
  width: 160px;

  height: 100px;

  background: #005252;

  color: #fff;

  border-radius: 25px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  font-weight: 700;

  font-size: 22px;

  box-shadow: 0 10px 30px rgba(0, 82, 82, 0.3);

  position: relative;
}

.date-card span {
  font-size: 14px;

  font-weight: 400;

  margin-top: 5px;
}

.date-card:after {
  content: "";

  position: absolute;

  right: -20px;

  top: 45px;

  width: 20px;

  height: 3px;

  background: #005252;
}

/* Event Card */

.event-card {
  width: 80%;

  background: #fff;

  padding: 20px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

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

.event-card h3 {
  color: #005252;

  font-size: 25px;

  margin-bottom: 15px;
}

.event-card h5 {
  color: #555;

  font-size: 16px;

  margin-bottom: 20px;
}

.event-card p {
  text-align: justify;

  line-height: 1.8;
}

.event-images {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 25px;
}

.event-images img {
  width: 100%;

  height: 350px;

  object-fit: cover;

  border-radius: 20px;

  transition: 0.5s;
}

.event-images img:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 991px) {
  .anti-timeline:before {
    left: 25px;
  }

  .anti-item {
    display: block;

    padding-left: 60px;
  }

  .date-card {
    margin-bottom: 25px;
  }

  .date-card:after {
    display: none;
  }

  .event-card {
    width: 100%;
  }

  .event-images {
    grid-template-columns: 1fr;
  }
}
.admission-section {
  background: linear-gradient(135deg, #f2fbff, #ffffff);
}

.admission-heading {
  text-align: center;

  margin-bottom: 45px;
}

.admission-heading span {
  background: #005252;

  color: #fff;

  padding: 8px 22px;

  border-radius: 30px;
}

.admission-heading h2 {
  font-size: 40px;

  color: #005252;

  font-weight: 800;

  margin: 20px 0 10px;
}

.course-wrapper {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.course-box {
  background: white;

  border-radius: 25px;

  padding: 30px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

  transition: 0.5s;

  position: relative;

  overflow: hidden;
}

.course-box:before {
  content: "";

  position: absolute;

  width: 120px;

  height: 120px;

  background: #005252;

  opacity: 0.08;

  border-radius: 50%;

  right: -40px;

  top: -40px;
}

.course-box:hover {
  transform: translateY(-12px);
}

.course-top {
  display: flex;

  gap: 18px;

  align-items: center;

  margin-bottom: 25px;
}

.course-icon {
  width: 70px;

  height: 70px;

  background: linear-gradient(135deg, #005252, #005252);

  color: white;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;
}

.course-top h3 {
  font-size: 22px;

  color: #005252;

  margin: 0;
}

.course-top p {
  margin: 5px 0;

  color: #777;
}

.eligibility-content h5 {
  color: #005252;
}

.eligibility-content ul {
  padding-left: 18px;
}

.eligibility-content li {
  margin-bottom: 12px;

  color: #555;
}

.pdf-btn {
  display: block;

  text-align: center;

  background: #005252;

  color: white;

  padding: 12px;

  border-radius: 30px;

  margin-top: 20px;
}

.pdf-btn:hover {
  background: #005252;

  color: white;
}

.allied-section {
  margin-top: 50px;

  background: white;

  padding: 35px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.allied-title {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 15px;

  color: #005252;
}

.allied-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-top: 30px;
}

.allied-grid div {
  padding: 18px;

  background: #f3fbff;

  border-radius: 12px;

  border-left: 4px solid #005252;

  font-weight: 600;

  transition: 0.3s;
}

.allied-grid div:hover {
  transform: translateX(8px);
}

.common-box {
  margin-top: 30px;

  padding: 20px;

  background: #eefaff;

  border-radius: 15px;
}

@media (max-width: 992px) {
  .course-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .allied-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .course-wrapper,
  .allied-grid {
    grid-template-columns: 1fr;
  }
}
/*=====================================
Quality Policy
======================================*/

.quality-policy-section {
  background: #ffffff;
  position: relative;
}

.quality-image {
  position: relative;
  padding-right: 60px;
}

.quality-image img {
  width: 100%;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.quality-badge {
  position: absolute;

  right: 0;

  bottom: 40px;

  width: 180px;

  background: #005252;

  color: #fff;

  border-radius: 20px;

  padding: 25px;

  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.quality-badge h3 {
  color: #fff;

  font-size: 40px;

  margin-bottom: 8px;
}

.quality-content p {
  text-align: justify;

  margin-bottom: 20px;
}

.quality-values {
  display: flex;

  flex-wrap: wrap;

  gap: 5px;

  margin-top: 35px;
}

.quality-values .value {
  background: #f5fbfb;

  color: #005252;

  padding: 15px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.4s;

  border: 1px solid #d8eeee;
}

.quality-values .value i {
  margin-right: 10px;
}

.quality-values .value:hover {
  background: #005252;

  color: #fff;

  transform: translateY(-5px);
}

/*=====================================
Quality Commitment Cards
======================================*/

.quality-roadmap {
  background: #f7fcfc;
}

.policy-card {
  display: flex;

  align-items: flex-start;

  gap: 25px;

  background: #fff;

  padding: 30px;

  border-radius: 20px;

  height: 100%;

  border: 1px solid #e5f0f0;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.policy-card:hover {
  transform: translateY(-10px);

  border-color: #005252;

  box-shadow: 0 20px 45px rgba(0, 82, 82, 0.18);
}

.policy-icon {
  min-width: 70px;

  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #005252;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 28px;

  transition: 0.4s;
}

.policy-card:hover .policy-icon {
  transform: rotate(360deg);
}

.policy-content h4 {
  color: #005252;

  margin-bottom: 12px;

  font-size: 22px;
}

.policy-content p {
  margin: 0;

  text-align: justify;

  line-height: 1.8;
}
.roadmap-box {
  background: #fff;

  padding: 30px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.roadmap-title {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;
}

.roadmap-title i {
  font-size: 28px;

  color: #005252;
}

.roadmap-title h3 {
  margin: 0;

  color: #075985;
}

.medical-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}

.medical-grid div {
  background: #f8fcff;
  border-left: 4px solid #005252;
  padding: 15px;
  /* font-weight: 700; */
  color: #000000;
  transition: 0.3s;
  font-size: 18px;
}

.medical-grid small {
  color: #005252;
}

.medical-grid div:hover {
  transform: translateY(-5px);

  background: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .medical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .medical-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================================
Online Payment Section
=========================================*/

.payment-section {
  background: #f5fbfb;
  padding: 90px 0;
}

.payment-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.payment-card:hover {
  transform: translateY(-8px);
}

.payment-header {
  background: linear-gradient(135deg, #005252, #0b8b8b);
  color: #fff;
  padding: 10px 20px;
}

.payment-header h3 {
  color: #fff;
  margin-bottom: 10px;
}

.payment-header p {
  margin: 0;
  color: #e9ffff;
}

.payment-body {
  padding: 10px 20px;
}

.payment-table {
  width: 100%;
}

.payment-table tr {
  border-bottom: 1px solid #ececec;
}

.payment-table tr:last-child {
  border-bottom: none;
}

.payment-table td {
  padding: 16px 8px;
  vertical-align: top;
}

.payment-table td:first-child {
  width: 260px;
  font-weight: 700;
  color: #005252;
}

.payment-value {
  font-weight: 600;
  color: #333;
  word-break: break-word;
}

.bank-box {
  background: #f5fbfb;
  border-left: 5px solid #005252;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
}

.bank-box h5 {
  color: #005252;
  margin-bottom: 10px;
}

.payment-note {
  margin-top: 25px;
  padding: 18px 22px;
  background: #fff7e8;
  border-left: 5px solid #f39c12;
  border-radius: 10px;
}

.payment-note i {
  color: #f39c12;
  margin-right: 8px;
}

.copy-box {
  background: #005252;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-top: 25px;
  text-align: center;
  font-weight: 600;
}
