:root {
  --primary-color: #002147;
  --secondary-color: #aa0d15;
  --text-dark: #000;
  --text-white: #fff;
  --accent: #fbc02d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif !important;
}

.row {
  margin-right: 0;
  margin-left: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* hero section */
.mrv-hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* padding-top: 70px; */
}

.mrv-hero-video {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.mrv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 2;
}

/* header section */
.mrv-top-bar {
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 1060;
  transition: 0.3s;
}

.main-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin: 0;
}

.mrv-admission-tag {
  background: var(--secondary-color);
  color: var(--text-white) !important;
  padding: 4px 15px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.animate-pulse {
  animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.mrv-main-nav {
  top: 26px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  background: transparent;
}

.navbar-scrolled {
  background: rgba(0, 33, 71, 0.98) !important;
  top: 0 !important;
  padding: 10px 0 !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.mrv-dropdown {
  border-radius: 10px;
  padding: 8px 0;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mrv-dropdown .dropdown-item {
  font-size: 14px;
  padding: 8px 18px;
  transition: 0.3s;
}

.mrv-dropdown .dropdown-item:hover {
  background: var(--secondary-color);
  color: #fff;
}

.logo-circle-container {
  /* width: 90px; */
  width: auto;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.mrv-logo-img {
  height: 100%;
}

.mrv-logo-text {
  color: var(--secondary-color);
  font-weight: bolder;
  font-size: 2rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.494);
}

.mrv-nav-list .nav-link {
  color: var(--text-white) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 5px;
  position: relative;
}

.dropdown-toggle::after {
  content: none !important;
}

/* .mrv-nav-list .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--text-white);
  bottom: -2px;
  left: 50%;
  transition: 0.3s;
  transform: translateX(-50%);
} */

/* .mrv-nav-list .nav-link:hover::after {
  width: 80%;
} */

.mrv-custom-toggler {
  border: none !important;
  padding: 10px;
  box-shadow: none !important;
  background: transparent !important;
}

.mrv-hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.mrv-hamburger span {
  display: block;
  height: 3px;
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.line-1 {
  width: 30px;
}
.line-2 {
  width: 20px;
}
.line-3 {
  width: 25px;
}

.mrv-custom-toggler:not(.collapsed) .line-1 {
  transform: rotate(45deg) translate(6px, 6px);
}
.mrv-custom-toggler:not(.collapsed) .line-2 {
  opacity: 0;
}
.mrv-custom-toggler:not(.collapsed) .line-3 {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 30px;
}

@media (max-width: 1024px) {
  .mrv-main-nav {
    top: 0;
    z-index: 4099;
    background: var(--primary-color);
    height: 70px;
  }

  .mrv-hero-section {
    height: 100%;
    padding-top: 60px;
  }

  .navbar-collapse {
    /* position: fixed;
    top: 0;
    left: 0;
   width: 100%; 
    
    background: var(--primary-color);
    display: flex !important;
    flex-direction: column;
    padding-top: 65px;
    justify-content: flex-start;
    align-items: center;
    z-index: 1045; */
    /* opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    overflow-y: auto; 
    height: 100vh; */
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }

  .mrv-nav-list {
    width: 100%;
  }

  .mrv-nav-list .nav-link {
    font-size: 14px !important;
    display: block;
    width: 100%;
    text-align: center;
  }

  .mrv-nav-logo {
    z-index: 1100;
    position: relative;
  }

  .logo-circle-container {
    height: 50px;
    width: auto;
  }

  .mrv-logo-text {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .logo-circle-container {
    height: 60px;
  }
  .mrv-nav-list .nav-link {
    margin: 0 2px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar-collapse {
    /* background-color:var(--primary-color); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    display: flex !important;
    flex-direction: column;
    padding-top: 65px;
    justify-content: flex-start;
    align-items: center;
    z-index: 1045;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    overflow-y: auto;
    height: 100vh;
  }
}

.mrv-custom-toggler {
  z-index: 1100;
  position: relative;
}

.mrv-custom-toggler:not(.collapsed) .mrv-hamburger span {
  background-color: var(--secondary-color);
}

.navbar-scrolled {
  background: var(--primary-color) !important;
  top: 0 !important;
  padding: 5px 0 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled .logo-circle-container {
  width: auto !important;
  height: 70px !important;
  transition: 0.3s;
}

.navbar-scrolled .mrv-logo-text {
  font-size: 1.8rem !important;
  text-shadow: none;
  transition: 0.3s;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.301);
}

.navbar-scrolled .nav-link {
  font-size: 14px !important;
  /* margin: 0 8px !important; */
}

.logo-circle-container,
.mrv-logo-text,
.mrv-main-nav {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mrv-top-bar {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* z-index: 1061; */
}

.top-bar-hidden {
  transform: translateY(-100%);
}

.mrv-main-nav {
  top: 0;
  transform: translateY(40px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar-scrolled {
  transform: translateY(0) !important;
  background: rgba(0, 33, 71, 0.98) !important;
  backdrop-filter: blur(10px);
  padding: 2px 0 !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.mrv-nav-logo img,
.mrv-logo-text,
.logo-circle-container {
  transition: all 0.4s ease;
}

.navbar-scrolled .mrv-logo-text {
  font-size: 1.4rem;
}

@media (min-width: 1025px) {
  .mrv-top-bar {
    transition: transform 0.4s ease;
  }
  .mrv-main-nav {
    transform: translateY(40px);
  }
  .navbar-scrolled {
    transform: translateY(0) !important;
  }
  .top-bar-hidden {
    transform: translateY(-100%);
  }
}

@media (max-width: 1024px) {
  .mrv-top-bar {
    display: none !important;
  }

  .mrv-main-nav {
    top: 0 !important;
    transform: translateY(0) !important;
    background: var(--primary-color) !important;
    padding: 8px 0 !important;
    display: flex;
    align-items: center;
  }

  .mrv-logo-text {
    font-size: 1.2rem !important;
    text-shadow: none;
  }
}

.mrv-brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.mrv-logo-text {
  /* color: var(--secondary-color); */
  color: var(--text-white);
  font-weight: 800;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0;
  letter-spacing: 0px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.221);
  /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.221); */
}

.mrv-location-text {
  /* color: #ffffff;  */
  color: rgba(254, 228, 228, 0.811);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.navbar-scrolled .mrv-logo-text {
  font-size: 1.8rem !important;
}

.navbar-scrolled .mrv-location-text {
  font-size: 10px;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .mrv-logo-text {
    font-size: 1.2rem !important;
  }
  .mrv-location-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* about section */
.mrv-about-premium {
  background-color: #ffffff;
}

.mrv-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.mrv-title {
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.2;
  font-size: 36px;
}

.mrv-title .highlight {
  color: #444;
  font-weight: 400;
}

.mrv-text {
  color: #666;
  line-height: 1.8;
  font-size: 0.9rem;
}

.about-image-wrapper {
  position: relative;
  padding: 15px;
}

.main-img {
  border-radius: 2px;
  box-shadow: 20px 20px 0px 0px rgba(0, 33, 71, 0.05);
}

.image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(var(--secondary-color) 2px, transparent 0);
  background-size: 15px 15px;
  z-index: -1;
}

.floating-card {
  position: absolute;
  bottom: 0px;
  right: -30px;
  background: var(--primary-color);
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.mrv-features-list {
  list-style: none;
  padding: 0;
}

.mrv-features-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mrv-features-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.mrv-btn-outline {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 12px 35px;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 0;
}

.mrv-btn-outline:hover {
  background: var(--secondary-color);
  color: white;
}

.about-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-circle {
  width: 160px;
  height: 160px;
  background: #ffffff;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-circle img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .floating-card {
    right: -10px;
    bottom: 10px;
    transform: scale(0.85);
  }
  .about-logo-circle{
    height: 80px;
    width: 80px;
  }
}

/* data section */
.mrv-stats-section {
  position: relative;
  background: url("../img/school_building.webp") no-repeat center center fixed;
  background-size: cover;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.743);
  z-index: 1;
}

.stat-card {
  color: white;
  text-align: center;
}

.stat-icon i {
  font-size: 2.5rem;
  color: white;
  font-weight: 100 !important;
  -webkit-text-stroke: 1px white;
  margin-bottom: 4px;
  display: block;
}

.counter {
  font-size: 2.5rem;
  font-weight: 600;
  display: inline-block;
  letter-spacing: -1px;
}

.plus {
  font-size: 2.2rem;
  font-weight: 300;
  vertical-align: top;
  margin-left: 2px;
}

.stat-icon i {
  font-size: 2.5rem;
  color: #ffffff !important;
  display: inline-block;
  -webkit-text-stroke: 1px white;
  opacity: 1 !important;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 4px;
}

/* why mrv section */
.text-maroon {
  color: var(--secondary-color);
}
.feature-card-premium {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border-bottom: 5px solid transparent;
  height: 100%;
}
.feature-card-premium:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--secondary-color);
}
.feature-icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 33, 71, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: 0.4s;
}
.feature-card-premium:hover .feature-icon-circle {
  background: var(--primary-color);
  color: #fff;
}

.feature-card-premium .feature-icon-circle img {
  filter: brightness(0) invert(0);
  transition: filter 0.3s ease;
}

.feature-card-premium:hover .feature-icon-circle img {
  filter: brightness(0) invert(1);
}

.feature-card-premium h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.feature-card-premium p {
  font-size: 0.9rem;
  color: #444343;
  line-height: 1.6;
}

/* facilities section */
.mrv-facilities {
  background: #f8f9fa;
}

.facility-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.facility-img {
  height: 100%;
  width: 100%;
  position: relative;
}

.facility-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 33, 71, 0.9),
    rgba(0, 33, 71, 0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0.8;
  transition: 0.4s;
}

.facility-overlay h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
}

.facility-box:hover .facility-img img {
  transform: scale(1.1);
}

.facility-box:hover .facility-overlay {
  opacity: 1;
}

.facility-overlay i {
  transform: translateY(10px);
  transition: 0.4s;
}

.facility-box:hover .facility-overlay i {
  transform: translateY(0);
}

.explore-btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
}

.explore-btn:hover {
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: white;
}

/* news updates */
.news-updates-section {
  background-color: #ffffff;
}

.text-primary-mrv {
  color: var(--primary-color);
}
.text-maroon {
  color: var(--secondary-color);
}

.news-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0 !important;
}

.news-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 15px 35px rgba(0, 33, 71, 0.1) !important;
}

.news-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}

.news-date {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.news-card .card-title {
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.news-card .stretched-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.notice-board-wrapper {
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* HEADER */
.notice-header {
  background: linear-gradient(45deg, #002147, #003366);
  position: relative;
  z-index: 10;
}

/* CONTAINER */
.notice-container {
  flex: 1; /* important fix */
  height: 350px;
  overflow: hidden;
  position: relative;
}

/* SCROLL */
.notice-scroll {
  position: absolute;
  width: 100%;
  animation: continuousScroll 20s linear infinite;
}

/* Smooth continuous scroll */
@keyframes continuousScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.notice-container:hover .notice-scroll {
  animation-play-state: paused;
}

/* ITEMS */
.notice-item {
  background: #fff;
  transition: background 0.3s ease;
}

.notice-item:hover {
  background: #fcfcfc;
}

.notice-item .badge {
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 4px;
}

/* FOOTER FIX */
.notice-footer {
  background: var(--secondary-color); /* tumhara red */
  color: #fff !important;
  border-top: 1px solid #eee !important;
  margin-top: auto; /* IMPORTANT FIX */
}

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

/* Large screens */
@media (min-width: 1200px) {
  .notice-container {
    height: 400px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .notice-container {
    height: auto;
    overflow: visible;
  }
  .notice-scroll {
    position: static; /* absolute remove */
    animation: none; /* animation band */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .notice-container {
    height: auto; /* fixed height remove */
    overflow: visible;
  }

  .notice-scroll {
    position: static; /* absolute remove */
    animation: none; /* animation band */
  }

  .notice-header h4 {
    font-size: 16px;
  }

  .notice-item p {
    font-size: 14px;
  }
}

/* admission section */
.bg-primary-mrv {
  background-color: var(--primary-color);
}
.btn-maroon {
  background-color: var(--secondary-color);
  color: white;
  transition: 0.3s;
}
.btn-maroon:hover {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}
.form-control,
.form-select {
  border: 1px solid #eee;
  padding: 12px;
}
.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

/* gallery section */
.mrv-gallery {
  background-color: #ffffff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #6e6d6d59;
  cursor: pointer;
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.tall {
  height: 450px;
}

.gallery-item:not(.tall) {
  height: 217px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(128, 0, 0, 0.9),
    rgba(128, 0, 0, 0.2)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 3px solid #fff;
  padding-left: 10px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-item.tall,
  .gallery-item:not(.tall) {
    height: 250px;
  }
}

/* footer section */
.footer-mrv {
  background-color: var(--primary-color);
  color: #ffffff;
}

.footer-logo {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-logo span {
  color: var(--text-white);
}

.border-maroon {
  border-color: var(--text-white) !important;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--text-color);
  transform: translateY(-5px);
  color: white;
}

.text-maroon {
  color: var(--secondary-color);
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* floating btns */
.side-floating-bar {
  position: fixed;
  right: 0;
  /* top: 80%; */
  top: 75%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99999;
  align-items: flex-end;
}

.floating-item a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none !important;
  transition:
    width 0.4s ease,
    background 0.3s ease;
  border-radius: 40px 0 0 40px;
  width: 55px;
  height: 55px;
  overflow: hidden;
  box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.1);
}

.floating-icon {
  min-width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 2;
}

.floating-text {
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding-left: 18px;
  padding-right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item-admission a {
  /* background: #c62828; */
  background-color: var(--secondary-color);
}
.item-whatsapp a {
  background: #25d366;
}
.item-chat a {
  background: #0078ff;
}

.floating-item.item-admission a {
  width: 300px; /* text safe */
}

.floating-item.item-admission .floating-text {
  opacity: 1;
}

.side-floating-bar:hover .floating-item.item-admission a {
  width: 55px;
}

.side-floating-bar:hover .floating-item.item-admission .floating-text {
  opacity: 0;
}

.floating-item.item-admission:hover a {
  width: 300px !important;
}

.floating-item.item-admission:hover .floating-text {
  opacity: 1 !important;
}

.floating-item2:hover a {
  width: 260px !important;
}

.floating-item3:hover a {
  width: 200px !important;
}

.floating-item:hover .floating-text {
  opacity: 1;
}

.floating-item:hover .floating-icon {
  transform: scale(1.08);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .side-floating-bar {
    top: auto;
    bottom: 30px;
    gap: 6px;
  }

  .floating-item a {
    width: 50px !important;
    height: 50px;
  }

  .floating-icon {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-text {
    display: block;
  }
}

/* chatbot open hone par admission collapse */
.side-floating-bar.chat-open .item-admission a {
  width: 55px !important;
}

.side-floating-bar.chat-open .item-admission .floating-text {
  opacity: 0 !important;
}

/* location section */
.dda-location-section {
  font-family: "Poppins", sans-serif !important;
}

.location-wrapper {
  background: var(--text-color);
  border-radius: 0px;
  overflow: hidden;
  /* box-shadow: 0px 5px 20px rgba(0,0,0,0.08); */
  border: 1px solid #ddd;
  display: flex;
}

.location-info {
  flex: 0 0 350px;
  padding: 25px !important;
  background: #fff;
}

.location-img-container img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.btn-directions-link {
  background-color: var(--secondary-color);
  color: #fff !important;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  /* border-radius: 4px; */
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-directions-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.location-map {
  min-height: 350px;
  width: 100%;
}

@media (max-width: 767px) {
  .location-wrapper {
    flex-direction: column;
  }

  .location-info {
    flex: 1 1 auto;
    width: 100%;
    padding: 20px !important;
  }

  .location-map {
    height: 300px;
    min-height: 300px;
  }

  .location-info h4 {
    font-size: 20px;
  }
}

/* alumni success story  */
.mrv-alumni-premium {
  background: #ffffff;
}

.featured-alumni {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}

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

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 33, 71, 0.85),
    rgba(0, 33, 71, 0.2)
  );
  color: var(--text-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-tag {
  background: var(--secondary-color);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 12px;
}

.featured-overlay h3 {
  font-weight: 700;
}

.featured-overlay p {
  opacity: 0.85;
  margin-bottom: 20px;
}

.play-btn {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  padding: 10px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  width: fit-content;
}


.alumni-list {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.alumni-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
}

.alumni-row:hover {
  background: rgba(0, 33, 71, 0.03);
}

.alumni-row img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.alumni-row h6 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
}

.alumni-row span {
  font-size: 0.85rem;
  color: #666;
}

.featured-alumni {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.featured-alumni.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.featured-alumni.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.alumni-row.active {
  background: rgba(0, 33, 71, 0.05);
  border-left: 4px solid var(--secondary-color);
  padding-left: 12px;
}

.alumni-list::-webkit-scrollbar {
  width: 6px;
}

.alumni-list::-webkit-scrollbar-track {
  background: rgba(0, 33, 71, 0.05);
  border-radius: 10px;
}

.alumni-list::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 10px;
}

.alumni-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.alumni-list {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(0, 33, 71, 0.08);
}

.featured-alumni {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.featured-alumni.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.featured-alumni.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.alumni-row {
  cursor: pointer;
}

.alumni-row.active {
  background: rgba(0, 33, 71, 0.06);
  border-left: 4px solid var(--secondary-color);
  padding-left: 12px;
}

.featured-alumni {
  position: relative;
  overflow: hidden;
}

#featuredImg,
#featuredVideo {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

#featuredVideo {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.featured-alumni.playing #featuredVideo {
  opacity: 1;
  pointer-events: auto;
}

.featured-alumni.playing #featuredImg {
  opacity: 0;
}

/* testimonial section */
.mrv-testimonial-section {
  background: #f7f8fc;
}

.mrv-testimonial-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
}

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


.mrv-testimonial-image-card {
  width: 100%;
}

.mrv-testimonial-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.mrv-testimonial-video-card .mrv-testimonial-media {
  height: 500px;
}

.mrv-testimonial-image-card .mrv-testimonial-media {
  height: 500px;
}

.mrv-testimonial-media img,
.mrv-testimonial-media video,
.mrv-testimonial-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: none;
  display: block;
}

.mrv-testimonial-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.902);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.mrv-testimonial-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.mrv-testimonial-overlay span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.mrv-testimonial-overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #555;
}

.mrv-testimonial-section .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.mrv-testimonial-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  opacity: 0.4;
}

.mrv-testimonial-section .swiper-pagination-bullet-active {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .mrv-testimonial-video-card .mrv-testimonial-media {
    height: 500px;
  }

  .mrv-testimonial-image-card .mrv-testimonial-media {
    height: 360px;
  }

  .mrv-testimonial-overlay {
    padding: 14px;
  }

  .mrv-testimonial-overlay h4 {
    font-size: 17px;
  }

  .mrv-testimonial-overlay p {
    font-size: 13px;
    line-height: 22px;
  }
}


.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: black;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* teachers methodology */
.mrv-methodology-video {
  background: #f8f9fb;
}

.method-video-box {
  height: 460px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.method-video-box video {
  display: block;
  object-fit: cover;
  height: 460px;
}

.method-video-content h4 {
  color: var(--primary-color);
}

.method-video-content p {
  font-size: 15px;
  line-height: 26px;
}

.method-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-points i {
  color: var(--secondary-color);
  font-size: 18px;
}

.simple-video {
  position: relative;
}

.simple-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.simple-video.playing .simple-play-btn {
  display: none;
}

/* registration cta */
.mrv-registration-cta-full {
  width: 100%;
  position: relative;
  padding: 60px 0;
  background: linear-gradient(
    -45deg,
    var(--secondary-color),
    #ad121a,
    #ae1a21,
    #7f0f15
  );
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.mrv-cta-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}

.mrv-cta-full-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mrv-cta-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mrv-cta-huge-text {
  font-size: 75px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mrv-cta-huge-text span {
  font-weight: 300;
  display: block;
  font-size: 40px;
}

.mrv-cta-huge-subtext {
  font-size: 40px;
  font-weight: 500;
  justify-self: anchor-center;
  letter-spacing: -1px;
  color: var(--text-white);
  margin-bottom: 20px;
  text-transform:capitalize;
  line-height: 1.1;
}

.mrv-cta-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

.mrv-cta-full-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  color: var(--secondary-color);
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.mrv-cta-full-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: all 0.6s;
}

.mrv-cta-full-btn:hover::before {
  left: 100%;
}

.mrv-cta-full-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #001f3f; /* Navy Blue on hover */
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mrv-cta-huge-text {
    font-size: 36px;
  }
  .mrv-cta-huge-text span {
    font-size: 26px;
  }
  .mrv-registration-cta-full {
    padding: 60px 20px;
  }
  .mrv-cta-full-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
  .mrv-cta-huge-subtext{
    font-size: 24px;
  }
  .mrv-cta-subtext{
    font-size: 18px;
    margin-bottom: 18px;
  }
}

/* facility page */
.smart-classroom-unique {
  padding: 40px 0;
  background-color: var(--soft-bg);
  overflow: hidden;
}

.display-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  text-transform: uppercase;
}

.text-secondary-brand {
  color: var(--secondary-color);
}

.accent-line {
  width: 80px;
  height: 5px;
  background: var(--accent-gold);
  margin: 10px 0 20px 0;
}

.description-text {
  font-size: 16px;
  color: #475569;
  max-width: 95%;
  border-left: 3px solid var(--accent-gold);
  line-height: 1.6;
}

.badge-custom {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  display: block;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stack-item {
  display: flex;
  /* align-items: center; */
  background: #fff;
  padding: 12px;
  border-radius: 0 50px 50px 0;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.03); */
  transition: 0.3s ease;
}

.stack-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(170, 13, 21, 0.1);
}

.stack-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--secondary-color);
}

.stack-text h6 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
}

.stack-text p {
  margin: 2px 0 0;
  font-size: 014px;
  color: #64748b;
}

.image-composite-wrapper {
  position: relative;
  padding-left: 40px;
}

.main-image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.floating-info-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  z-index: 3;
  font-size: 0.9rem;
}

.card-bottom {
  bottom: 25px;
  right: 25px;
  border-bottom: 4px solid var(--secondary-color);
}

.floating-info-card i {
  color: var(--secondary-color);
}

@media (max-width: 991px) {
  .image-composite-wrapper {
    padding-left: 0;
    height: 260px !important;
  }
  .content-wrapper {
    padding-right: 0;
    text-align: left;
  }
  .display-title {
    font-size: 1.8rem;
  }
  .smart-classroom-unique {
    padding: 20x 0;
  }
}

/* Science lab section */
.science-labs-section {
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.lab-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.lab-hex-card {
  height: 400px;
  perspective: 1200px;
}

.lab-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.lab-hex-card:hover .lab-inner {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.lab-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}

.lab-hex-card:hover .lab-bg {
  transform: scale(1.15);
}

.lab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--primary-color) 30%,
    rgba(0, 33, 71, 0.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  transition: background 0.4s ease;
}

.lab-hex-card:hover .lab-overlay {
  background: linear-gradient(
    to top,
    var(--secondary-color) 35%,
    rgba(170, 13, 21, 0.15) 100%
  );
}

.lab-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--accent);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s ease;
}

.lab-hex-card:hover .lab-icon {
  transform: translateY(0);
  opacity: 1;
}

.lab-overlay h4 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  margin-bottom: 6px;
}

.lab-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

.lab-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
  .lab-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .lab-hex-card {
    height: 260px;
  }
  .lab-overlay {
    padding: 10px;
  }
  .lab-overlay p {
    font-size: 0.6rem;
  }
  .lab-tag {
    font-size: 0.4rem;
  }
  .lab-overlay h4 {
    font-size: 16px;
  }
}

/* server room section */
.server-room-section {
  padding: 40px 0;
  background: #fafafa;
}

.server-room-image-card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.server-room-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 33, 71, 0.85),
    rgba(0, 33, 71, 0.2)
  );
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.server-room-image-overlay h3 {
  font-weight: 800;
  margin-bottom: 5px;
}

.server-room-subtitle {
  font-size: 1.05rem;
  color: #555;
}

.server-room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.server-room-card {
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

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

.server-room-card i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.server-room-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.server-room-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .server-room-grid {
    grid-template-columns: 1fr;
  }

  .server-room-image-overlay {
    padding: 25px;
  }
}

/* canteen section */
.canteen-clean-section {
  padding: 40px 0;
  background: #ffffff;
}

.canteen-desc {
  font-size: 16px;
  color: #555;
  margin: 15px 0 25px;
  line-height: 1.7;
}

.canteen-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.canteen-feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.canteen-feature-row i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.canteen-image-box {
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 991px) {
  .canteen-clean-section {
    padding: 20px 0;
  }
}

/* cctv survelliance section */
.cctv-security-section {
  padding: 40px 0;
}

.cctv-image-wrapper {
  position: relative;
  overflow: hidden;
}

.cctv-image-wrapper img {
  width: 100%;
  display: block;
  height: 550px;
}

.cctv-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(170, 13, 21, 0.25);
  animation: pulse 2s infinite;
}

.dot-1 {
  top: 20%;
  left: 25%;
}
.dot-2 {
  top: 50%;
  right: 30%;
}
.dot-3 {
  bottom: 25%;
  left: 45%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(170, 13, 21, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(170, 13, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(170, 13, 21, 0);
  }
}

.cctv-desc {
  font-size: 16px;
  color: #555;
  margin: 15px 0 30px;
}

.cctv-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cctv-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cctv-point span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-color);
  min-width: 40px;
}

.cctv-point h6 {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--primary-color);
}

.cctv-point p {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .cctv-image-wrapper img {
    height: 250px;
  }
}

/* mid day meal section */
.midday-meal-section {
  padding: 40px 0;
}

.midday-meal-desc {
  font-size: 16px;
  color: #555;
  margin: 15px 0 30px;
  line-height: 1.7;
}

.midday-meal-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meal-info-card {
  display: flex;
  gap: 15px;
}

.meal-info-card i {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.meal-info-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.meal-info-card p {
  font-size: 14px;
  opacity: 0.8;
}

.midday-meal-image-box {
  /* overflow: hidden; */
  height: auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.midday-meal-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* kyan lab */
.kyan-smart-section {
  padding: 40px 0;
}

.kyan-image-box {
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  position: relative;
}

.kyan-image-box img {
  width: 100%;
  height: 500px;

  object-fit: cover;
}

.kyan-desc {
  font-size: 16px;
  color: #555;
  margin: 15px 0 30px;
  line-height: 1.7;
}

.kyan-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kyan-feature {
  display: flex;
  gap: 14px;
}

.kyan-feature i {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.kyan-feature h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.kyan-feature p {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .kyan-smart-section {
    padding: 30px 0;
  }
  .kyan-image-box img {
    height: 300px;
  }
}

/* art  room */
.art-room-section {
  padding: 40px 0;
}

.art-room-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.art-room-desc {
  margin: 15px 0 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.art-room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.art-card {
  background: #fff;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

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

.art-card i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.art-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.art-card pssss {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .art-room-image img {
    height: 260px;
  }
}
/* music room */
.music-room-section {
  padding: 40px 0;
}

.music-room-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.music-room-desc {
  margin: 15px 0 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.music-room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.music-card {
  background: #fff;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

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

.music-card i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.music-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.music-card p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .music-room-image img {
    height: 260px;
  }
}

/* Library section */
.library-unique-section {
  padding: 40px 0;
  background-color: #fff;
  overflow: hidden;
}

.library-visual-wrapper {
  position: relative;
  padding: 20px;
}

.main-library-card {
  position: relative;
  z-index: 3;
  box-shadow: 20px 20px 60px rgba(0, 33, 71, 0.1);
  border-radius: 50px 5px 50px 5px;
  overflow: hidden;
}

.rounded-custom {
  border-radius: 50px 5px 50px 5px;
}

.experience-tag {
  position: absolute;
  top: 20px;
  right: -5px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(3deg);
  z-index: 4;
}

.decoration-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 10px solid var(--primary-color);
  border-radius: 50px 5px 50px 5px;
  z-index: 1;
  opacity: 0.1;
}

.lib-badge {
  color: var(--secondary-color);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.lib-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.1;
  margin: 8px 0;
}

.highlight {
  color: var(--secondary-color);
}

.lib-divider {
  width: 50px;
  height: 4px;
  background: var(--accent);
  margin-top: 10px;
}

.library-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lib-item {
  display: flex;
  /* align-items: center; */
  gap: 15px;
  padding: 15px 20px;
  background: #f8fafc;
  /* border-radius: 12px; */
  max-width: 95%;
  transition: 0.3s ease;
}

.staggered {
  align-self: flex-end;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.digital-special {
  background: var(--primary-color);
  color: white;
}

.digital-special h5 {
  color: var(--accent);
}
.digital-special p {
  color: rgba(255, 255, 255, 0.7);
}

.lib-icon-box {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.digital-special .lib-icon-box {
  color: var(--accent);
}

.lib-text h5 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}
.lib-text p {
  margin: 2px 0 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .library-visual-wrapper {
    height: 280px !important;
    margin-bottom: 30px;
  }
  .lib-item {
    max-width: 100%;
    align-self: flex-start;
  }
  .staggered {
    align-self: flex-start;
  }
  .lib-title {
    font-size: 2.2rem;
  }
  .library-unique-section {
    padding: 20px 0;
  }
}

.sports-unique-pattern {
  padding: 100px 0;
  background-color: #fcfcfc;
  overflow: hidden;
}

.top-label {
  color: var(--secondary-color);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lab-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-color);
  margin: 15px 0;
}

.highlight-text {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.6;
}

.lab-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.feature-vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.it-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.it-feature-item:hover {
  transform: translateX(15px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(170, 13, 21, 0.1);
}

.it-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.it-content {
  flex: 1;
}

.it-content h6 {
  margin: 0 0 10px 0;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.it-progress {
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.it-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent));
  border-radius: 10px;
}

.lab-visual-container {
  position: relative;
  padding: 20px;
}

.angle-box-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 105%;
  background: var(--primary-color);
  /* border-radius: 40px; */
  z-index: 1;
}

.image-mask {
  position: relative;
  z-index: 2;
  clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--accent);
  color: var(--primary-color);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  animation: floatingIcon 3s infinite ease-in-out;
  z-index: 3;
}

@keyframes floatingIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {
  .image-mask {
    clip-path: none;
    border-radius: 30px;
  }
  .angle-box-bg {
    width: 100%;
    height: 95%;
    top: 5%;
  }
  .lab-title {
    font-size: 2.8rem;
  }
  .it-feature-item:hover {
    transform: translateY(-5px);
  }
}

/* sports section */
.sports-modern-section {
  padding: 40px 0;
}

.sports-image-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.sports-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.sports-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 33, 71, 0.9);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}

.sports-desc {
  font-size: 16px;
  color: #555;
  margin: 10px 0 10px;
  line-height: 1.7;
}

.sports-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sports-point {
  display: flex;
  gap: 12px;
}

.sports-point i {
  font-size: 1.4rem;
  color: var(--secondary-color);
}

.sports-point h6 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.sports-point p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .sports-content-grid {
    grid-template-columns: 1fr;
  }
  .sports-image-box img {
    height: 300px;
  }
}

/* hero page */
.about-hero {
  position: relative;
  height: 60vh;
  background: url("../images/about.jpeg") center/cover no-repeat;
  background-attachment: fixed;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-top: 20px;
}

.about-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
}

.about-hero p {
  font-size: clamp(14px, 2.5vw, 18px);
  margin-top: 10px;
}

@media (max-width: 992px) {
  .about-hero {
    min-height: 40vh !important;
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .about-hero .overlay {
    /* padding: 1.5rem; */
  }

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

/* faculty section */
.faculty-intro-unique {
  background-color: #ffffff;
}

/* Content Box Alignment */
.intro-text-box {
  background-color: #f8fafc;
  border-radius: 30px 0 0 30px;
  position: relative;
  z-index: 2;
}

.trust-badge {
  color: var(--secondary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.intro-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.1;
}

.highlight {
  color: var(--secondary-color);
}

.title-accent {
  width: 60px;
  height: 5px;
  background: var(--accent);
  margin: 20px 0;
}

.philosophy-card {
  background: #fff;
  padding: 10px;
  /* border-left: 5px solid var(--secondary-color); */
  border-radius: 0 15px 15px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
}

.philosophy-text {
  font-style: italic;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-size: 1.1rem;
}

.description-main {
  /* color: #475569; */
  line-height: 1.7;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

/* Stats Alignment */
.exp-item {
  display: flex;
  flex-direction: column;
}

.exp-item .num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.exp-item .lab {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* Image Visual Wrapper */
.faculty-img-wrapper {
  overflow: hidden;
}

.floating-badge-unique {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.floating-badge-unique i {
  font-size: 2rem;
  color: var(--accent);
}

.floating-badge-unique strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.floating-badge-unique small {
  color: #64748b;
  font-size: 0.75rem;
}

/* Responsive Logic */
@media (max-width: 991px) {
  .intro-text-box {
    border-radius: 0 0 30px 30px;
    order: 2;
  }
  .faculty-img-wrapper {
    
    order: 1;
  }
  .floating-badge-unique {
    right: 20px;
    top: 20px;
    padding: 10px 15px;
  }
  .intro-heading {
    font-size: 2.2rem;
  }
}

.faculty-grid-section {
  padding: 20px 0;
  /* background-color: #fcfcfc; */
}

/* Header Alignment */
.label-minimal {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.title-minimal {
  font-weight: 800;
  color: var(--primary-color);
  margin: 10px 0;
}

.minimal-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px;
}

/* Faculty Card Design */
.faculty-card {
  background: #fff;
  /* border-radius: 15px; */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.1);
}

/* Image Box Alignment */
.image-box {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Hover Overlay Alignment */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  padding: 20px;
}

.faculty-card:hover .hover-overlay {
  opacity: 1;
}

.social-links {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

.btn-minimal {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 8px 20px;
  /* border-radius: 50px; */
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Info Box Alignment */
.info-box {
  padding: 25px 20px;
  text-align: center;
}

.info-box h5 {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 5px;
}

.subject {
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.qualification {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.exp-badge {
  display: inline-block;
  background: #f1f5f9;
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Responsive Logic */
@media (max-width: 991px) {
  .image-box {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .mrv-btn-outline {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 0;
  }
}

/* about page */

.premium-about-section {
  /* background: #ffffff; */
  padding: 80px 0;
}

/* Image Stack Alignment */
.image-stack {
  position: relative;
  padding: 0 20px 20px 0; /* Creates space for the shadow/badge */
}

.rounded-custom {
  border-radius: 50px 5px 50px 5px;
}

.static-trust-card {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid var(--accent);
  z-index: 5;
  min-width: 220px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: var(--primary-mrv);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* Typography & Content Alignment */
.mrv-about-heading {
  color: var(--primary-mrv);
  line-height: 1.2;
}

.highlight-span {
  color: var(--secondary-mrv);
}

.ls-2 {
  letter-spacing: 2px;
}

.description-p {
  /* color: #475569; */
  line-height: 1.7;
  /* border-left: 3px solid #e2e8f0; */
}

/* Feature Item Alignment */
.feature-item-minimal {
  display: flex;
  gap: 15px;
}

.feature-item-minimal .dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-mrv);
  margin-bottom: 5px;
}

/* Static Button Design */
.btn-premium-static {
  padding: 12px 30px;
  background: var(--primary-mrv);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
  border: 2px solid var(--primary-mrv);
}

.btn-premium-static:hover {
  background: transparent;
  color: var(--primary-mrv);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .image-stack {
    height: 350px !important;
    margin-bottom: 40px;
    padding: 0;
  }
  .static-trust-card {
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }
  .mrv-about-heading {
    font-size: 2rem;
  }
}

.minimal-vm-static {
  background-color: #ffffff;
}

/* Text Colors */
.color-teal {
  color: var(--primary-color);
}
.color-gold {
  color: var(--primary-color);
}
.bg-teal {
  background-color: var(--primary-color);
}
.bg-gold {
  background-color: var(--secondary-color);
}

/* Spacing & Alignment */
.ls-2 {
  letter-spacing: 2px;
}

.label-top {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 5px;
}

.v-m-box-static {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  transition: background-color 0.3s ease;
}

/* Subtle hover effect for desktop - non-animated */
.v-m-box-static:hover {
  background-color: #f8fafc;
}

.title-line {
  width: 50px;
  height: 4px;
  margin-top: 10px;
}

/* Content Text Alignment */
.lead-sm {
  font-size: 1rem;
  line-height: 1.8;
  /* color: #475569 !important; */
}

.text-container {
  max-width: 90%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 767px) {
  .v-m-box-static {
    border-right: none !important; /* Remove the middle border on mobile */
    border-bottom: 1px solid #dee2e6;
  }
  .v-m-box-static:last-child {
    border-bottom: none;
  }
  .content-wrap {
    padding: 40px 20px !important;
  }
  .text-container {
    max-width: 100%;
  }
}

/* CORE VALUES STYLES */
.core-values {
  background-color: #ffffff;
  padding: 80px 0;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--m-gray);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: 0.4s;
}

.value-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Hover Effects */
.value-card:hover {
  background: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 92, 109, 0.1);
}

.value-card:hover .value-icon {
  background: var(--accent);
  color: #fff;
  transform: rotateY(360deg);
}

.value-card:hover h5,
.value-card:hover p {
  color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-values {
    padding: 50px 0;
  }
  .value-card {
    padding: 30px 20px;
  }
}

.mrv-about-highlights-static {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Typography & Colors */
.color-teal {
  color: var(--primary-color);
}
.color-gold {
  color: var(--accent);
}
.ls-2 {
  letter-spacing: 2px;
}

.lead-sm {
  line-height: 1.7;
  font-size: 1.05rem;
}

.mrv-static-divider {
  width: 80px;
  height: 5px;
  background: var(--accent);
  border-radius: 50px;
}

/* Numbered List Alignment */
.mrv-static-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mrv-static-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 20px;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.mrv-static-item:hover {
  background-color: #f8fafc;
}

.mrv-num-box {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 33, 71, 0.1); /* Subtle large number */
  line-height: 1;
  transition: color 0.3s ease;
}

.mrv-static-item:hover .mrv-num-box {
  color: var(--secondary-color);
}

.mrv-item-body h5 {
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.mrv-item-body p {
  line-height: 1.6;
}

/* Responsive Alignment */
@media (max-width: 991px) {
  .mrv-about-highlights-static {
    padding: 60px 0;
  }
  .mrv-num-box {
    font-size: 2rem;
  }
  .mrv-static-item {
    padding: 10px 0;
    gap: 15px;
  }
  .display-5 {
    font-size: 2.2rem;
  }
}

.school-branches-section {
  background-color: #f8f9fa;
  padding: 10px 0;
}

.minimal-line {
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto;
  border-radius: 50px;
}

/* Branch Card Design */
.branch-card {
  background: var(--secondary-color);
  /* border-radius: 24px; */
  /* border: 1px solid rgba(0,0,0,0.05);   */
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  color: white;
}

.branch-card:hover {
  /* transform: translateY(-12px); */
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.12) !important;
  border-color: var(--secondary-color);
}

.branch-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.branch-tag {
  background: rgba(243, 156, 18, 0.1);
  color: var(--secondary-color);
  padding: 6px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.branch-body p {
  height: 40px;
}

.btn-location {
  margin-top: 30px;
  padding-top: 20px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

/* .btn-location:hover {
    color: var(--secondary-color);
    padding-left: 5px;
} */

/* Responsive Fixes */
@media (max-width: 768px) {
  .branch-card {
    padding: 30px;
  }
  .mrv-title {
    font-size: 1.4rem;
  }
  .col-lg-5 {
    margin-bottom: 20px;
  }
  .mrv-subtitle {
  }
}

/* green campus section */
.green-campus-section {
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
  z-index: 1;
}

.text-dark-green {
  color: #1b4332;
}

.rounded-custom {
  border-radius: 40px;
}

/* Tree Counter Badge */
.campus-image-wrapper {
  position: relative;
}

.tree-counter-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #2d6a4f;
  color: white;
  padding: 25px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 106, 79, 0.3);
  animation: float-badge 3s infinite ease-in-out;
}

/* Floating Animation */
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating Leaves Decor */
.leaf-element {
  position: absolute;
  color: rgba(45, 106, 79, 0.05);
  font-size: 5rem;
  z-index: -1;
}
.leaf-1 {
  top: 10%;
  left: -2%;
  transform: rotate(45deg);
}
.leaf-2 {
  bottom: 10%;
  right: 2%;
  transform: rotate(-20deg);
}

.badge-eco {
  /* background: rgba(45, 106, 79, 0.1); */
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
}

.eco-features li {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  /* align-items: center; */
  gap: 10px;
  /* color: #40916c; */
}

.equal-height-img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
}

/* .content-box-mrv {
    padding: 40px 0;
} */

/* --- Badge & UI Enhancements --- */
.tree-counter-badge {
  position: absolute;
  /* bottom: 20px;
    right: 20px; */
  background: var(--secondary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 106, 79, 0.3);
  animation: float-badge 3s infinite ease-in-out;
  z-index: 2;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.rounded-custom {
  border-radius: 30px;
}

@media (max-width: 991px) {
  .equal-height-img {
    min-height: 350px;
  }
  .content-box-mrv {
    padding: 20px 0;
  }
}

.clean-ai-section {
  background: #ffffff; /* Removed background color */
  padding: 100px 0;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
}

/* Central Image - No Clip Path */
.ai-main-img {
  width: 400px;
  height: 400px;
  border-radius: 50%; /* Simple Circle */
  border: 10px solid #f8f9fa;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ai-main-img:hover {
  transform: scale(1.05);
}

/* Content Cards */
.content-box {
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.content-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--secondary-color);
}

.icon-box {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.title-sm {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: justify;
}

.desc-sm {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.6;
  text-align: justify;
}

/* Alignment Classes */
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}

@media (max-width: 991px) {
  .align-right,
  .align-left {
    text-align: center;
  }
  .ai-main-img {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }
}

/* philosphy page */
.philo-intro-section {
  padding: 40px 0;
  background: #ffffff;
}

.philo-intro-wrap {
  max-width: fit-content;
  margin: auto;
}

.philo-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.philo-main-text {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 22px;
}

.philo-description {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .philo-main-text {
    font-size: 26px;
  }

  .philo-description {
    font-size: 15px;
  }
}

.philo-story-section {
  padding: 40px 0;
}

.philo-story-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.philo-story-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.philo-story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.philo-highlight {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--secondary-color);
  font-weight: 600;
  color: var(--primary-color);
}

.philo-story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .philo-story-content {
    padding: 25px;
  }

  .philo-story-title {
    font-size: 22px;
  }
  .philo-story-image img {
    height: 300px;
  }
}

.philo-belief-section {
  padding: 40px 0;
}

.philo-belief-card {
  background: #f9fbff;
  padding: 30px 26px;
  height: 100%;
  transition: 0.3s ease;
  border: 1px solid #eef2f7;
}

.philo-belief-card:hover {
  transform: translateY(-8px);
  background: var(--secondary-color);
  color: #fff;
}

.philo-belief-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.philo-belief-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.philo-belief-card:hover h5,
.philo-belief-card:hover p {
  color: #fff;
}

.philo-closing-section {
  padding: 60px 0;
  background:
    linear-gradient(rgba(0, 33, 71, 0.92), rgba(0, 33, 71, 0.92)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  color: #fff;
}

.philo-closing-wrap {
  max-width: 900px;
  margin: auto;
}

.philo-closing-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.philo-closing-text {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 35px;
}

.philo-closing-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.philo-closing-points span {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.philo-closing-points span:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .philo-closing-title {
    font-size: 26px;
  }

  .philo-closing-text {
    font-size: 15px;
  }
}

/* branches section */
.branch-showcase-section {
  padding: 40px 0;
}

.branch-row {
  margin-bottom: 40px;
}

.branch-showcase-img {
  overflow: hidden;
}

.branch-showcase-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s;
}

.branch-showcase-img:hover img {
  transform: scale(1.05);
}

.branch-showcase-content {
  padding: 10px 25px;
}

.branch-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.branch-showcase-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 10px 0 15px;
}

.branch-address {
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.branch-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}

.branch-map-btn {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary-color);
  transition: 0.3s;
}

.branch-map-btn:hover {
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .branch-showcase-img img {
    height: 260px;
  }

  .branch-row {
    margin-bottom: 50px;
  }
  .branch-showcase-content {
    padding: 0;
  }
}

/* dropdown menu */
.premium-dropdown,
.premium-dropdown * {
  font-family: "Poppins", sans-serif !important;
}

.dropdown-icon {
  transition: transform 0.4s ease;
  color: #fff !important;
  fill: #fff !important;
}

.premium-dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;

  transform: scaleY(0);
  transform-origin: top;

  transition: all 0.4s ease;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  padding: 0;

  font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) {
  .premium-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }

  .premium-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .premium-dropdown .dropdown-menu {
    position: static;
    transform: scaleY(0);

    visibility: visible;
    opacity: 1;

    max-height: 0;
    overflow: hidden;

    border-radius: 0;
    border: none !important;

    font-family: "Poppins", sans-serif;
  }

  .premium-dropdown .dropdown-menu.show {
    transform: scaleY(1);
    max-height: 500px;
  }

  .premium-dropdown .show + .dropdown-menu {
    transform: scaleY(1);
    max-height: 500px;
  }

  .premium-dropdown .show .dropdown-icon {
    transform: rotate(180deg);
  }
}

.animate-item {
  border: 1px solid #e8e8e8;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;

  font-family: "Poppins", sans-serif;
}

.premium-dropdown:hover .animate-item,
.premium-dropdown .dropdown-menu.show .animate-item {
  opacity: 1;
  transform: translateY(0);
}

.animate-item:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-item:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-item:nth-child(3) {
  transition-delay: 0.3s;
}
.animate-item:nth-child(4) {
  transition-delay: 0.4s;
}

.custom-glow {
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.custom-glow:hover {
  background: var(--secondary-color);
  color: white;
}

/* academic section */
.acad-intro-section {
  padding: 60px 0 10px;
  background: #ffffff;
}

.acad-intro-wrap {
  max-width: fit-content;
  margin: auto;
}

.acad-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.acad-main-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.acad-description {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .acad-main-title {
    font-size: 26px;
  }

  .acad-description {
    font-size: 15px;
  }
}

.acad-overview-section {
  padding: 40px 0;
  background: #ffffff;
}

.acad-overview-img img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.acad-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.acad-overview-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 10px 0 18px;
}

.acad-overview-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}

.acad-highlights {
  padding-left: 18px;
  line-height: 2;
  color: #444;
}

@media (max-width: 991px) {
  .acad-overview-img img {
    height: 260px;
  }
}

.acad-structure-section {
  padding: 40px 0;
  background: #f8fbff;
}

.acad-structure-card {
  background: #ffffff;
  padding: 30px 24px;
  height: 100%;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.acad-structure-card:hover {
  transform: translateY(-8px);
  background-color: var(--secondary-color);
}

.acad-class {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.acad-structure-card h5 {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.acad-structure-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.acad-structure-card:hover .acad-class {
  color: var(--text-white);
}

.acad-structure-card:hover h5 {
  color: var(--text-white);
}

.acad-structure-card:hover p {
  color: var(--text-white);
}

/* leader section */
.founder-section {
  font-family: "Poppins", sans-serif !important;
  background-color: #fcfcfc;
}

.founder-img-wrapper {
  display: inline-block;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.founder-img-wrapper img {
  border: 1px solid #eee;
  width: 100%;
}

.founder-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.founder-tagline {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;

  display: inline-block;
  padding-bottom: 5px;
}

.founder-bio p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .founder-name {
    font-size: 1.3rem;
  }
  .founder-bio p {
    text-align: left;
  }
  .founder-img-wrapper {
    max-width: 250px;
  }
}

.manager-section {
  overflow: hidden;
}

.manager-img-wrapper {
  position: relative;
  display: inline-block;
  transition: transform 0.4s ease;
}

.manager-img-wrapper:hover {
  transform: translateY(-10px);
}

.manager-img-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}

.manager-image {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 8px solid var(--text-white);
}

.manager-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.manager-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}

.quote-box {
  font-style: italic;
  font-weight: 600;
  color: var(--secondary-color);

  margin-bottom: 20px;
  font-size: 1.2rem;
}

.manager-text {
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

.highlight-accent {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .manager-section {
    padding: 50px 0;
  }
  .manager-img-wrapper {
    margin-bottom: 40px;
  }
  .manager-title {
    font-size: 1.8rem;
  }
}

.principal-section {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.section-heading {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: 4px;
  background-color: var(--secondary-color);
}

.principal-text {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 600;
}

.principal-img-container {
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
}

.principal-img-container:hover {
  transform: scale(1.02);
}

.principal-img-container::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}

.principal-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 10px solid var(--text-white);
}

@media (max-width: 991px) {
  .principal-section {
    padding: 60px 0;
  }
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-2 {
    order: 2;
  }
  .principal-img-container {
    margin-top: 40px;
  }
}

.director-section {
  padding: 40px 0;
  background-color: #fcfcfc;
}

.director-img-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.director-img-wrapper::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  z-index: -1;
}

.director-image {
  width: 100%;
  max-width: 430px;
  transition: all 0.4s ease;
}

.director-img-wrapper:hover .director-image {
  box-shadow: 5px 5px 0px var(--accent);
  transform: translate(10px, 10px);
}

.director-tagline {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.director-name {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.director-text {
  color: #333;
  line-height: 1.9;
  text-align: justify;
}

.exp-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .director-section {
    padding: 50px 0;
  }
  .director-img-wrapper {
    margin-bottom: 50px;
  }
  .director-name {
    font-size: 1.8rem;
  }
}

/* alumni section */

.about-mrv-alumni-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-mrv-alumni-title-wrapper {
  margin-bottom: 60px;
}

.about-mrv-alumni-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.about-mrv-alumni-main-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.about-mrv-alumni-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
}

.about-mrv-alumni-card {
  background: var(--text-white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 30px;
}

.about-mrv-alumni-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-mrv-alumni-video-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.about-mrv-alumni-thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-mrv-alumni-card:hover .about-mrv-alumni-thumbnail {
  transform: scale(1.1);
}

.about-mrv-alumni-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}


.alumni-link{
  font-size: 12px;
}
.about-mrv-alumni-play-btn {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 0 0 rgba(13, 8, 89, 0.7);
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(13, 8, 89, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(251, 192, 45, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(251, 192, 45, 0);
  }
}

.about-mrv-alumni-content {
  padding: 10px;
  text-align: center;
}

.about-mrv-alumni-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.about-mrv-alumni-batch {
  /* color: var(--secondary-color); */
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.about-mrv-alumni-position {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}
.modal-content {
  background-color: transparent;
  border: none;
  position: relative; /* important */
}

.modal-header {
  border: none;
  padding: 0;
}

.mrv-video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  filter: invert(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .about-mrv-alumni-main-title {
    font-size: 2rem;
  }
}

.custom-youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.custom-youtube-btn i:first-child {
  width: 22px;
  height: 22px;
  border-radius: 12px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.custom-youtube-btn i:last-child {
  font-size: 12px;
}

.custom-youtube-btn:hover {
  color: var(--secondary-color);
}


/* contact section */
.mrv-contact-wrapper {
  padding: 40px 0;
}

.mrv-header-minimal {
  text-align: center;
  margin-bottom: 60px;
}
.mrv-header-minimal h2 {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -1px;
}
.mrv-header-minimal .line {
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto;
}

.mrv-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}
.mrv-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.mrv-info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}
.mrv-info-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
}
.mrv-info-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.mrv-form-container {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #eee;
  margin-top: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.mrv-form-container .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 0;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.mrv-form-container .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
}

.mrv-btn-minimal {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}
.mrv-btn-minimal:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(170, 13, 21, 0.2);
}

@media (max-width: 768px) {
  .mrv-form-container {
    padding: 30px 20px;
  }
  .mrv-header-minimal h2 {
    font-size: 1.75rem;
  }
}

/* contact page */
.mrv-contact-section {
  padding: 40px 0;
  background: #f9fbff;
}

.contact-info-box {
  background: var(--secondary-color);
  color: #fff;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-info-box h4 {
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-box p {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-info-item i {
  font-size: 16px;
  color: #fff;
}

.contact-info-item h6 {
  margin: 0;
  font-weight: 500;
}

.contact-info-item span {
  font-size: 14px;
  opacity: 0.9;
}

.contact-form-box {
  background: #fff;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-form-box .form-control {
  border-radius: 0;
  padding: 12px;
  font-size: 14px;
}

.btn-contact-submit {
  background: var(--secondary-color);
  color: #fff;
  padding: 10px 28px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact-submit:hover {
  background: var(--primary-color);
}

.mrv-contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* gallery section */
.mrv-gallery-section {
  background-color: #fff;
}

.mrv-gallery-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.mrv-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mrv-gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(128 0 0 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.mrv-gallery-hover i {
  color: white;
  font-size: 30px;
  transform: scale(0.5);
  transition: 0.4s ease;
}

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

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

.mrv-gallery-card:hover .mrv-gallery-hover {
  opacity: 1;
}

.mrv-gallery-card:hover .mrv-gallery-hover i {
  transform: scale(1);
}

@media (max-width: 768px) {
  .mrv-gallery-card {
    height: 230px;
  }
  .mrv-gallery-title {
    font-size: 30px;
  }
}

/* new and events section */
.mrv-news-hub {
  padding: 100px 0;
}

.mrv-hub-header {
  margin-bottom: 20px;
  text-align: center;
}

.mrv-hub-header h1 {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: -2px;
}

.mrv-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* News Grid Card */
.mrv-event-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.mrv-card-img-wrap {
  overflow: hidden;
  height: 250px;
  position: relative;
}

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

.mrv-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.1);
}

.mrv-event-card:hover .mrv-card-img-wrap img {
  transform: scale(1.1);
}

.mrv-card-body {
  padding: 15px;
}

.mrv-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.mrv-card-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
  /* min-height: 3rem; */
}

.mrv-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: #777;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
}

.mrv-date-ribbon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: var(--text-white);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.75rem;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mrv-pagination {
  margin-top: 60px;
}
.page-link {
  border: none;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0 5px;
  border-radius: 8px !important;
  cursor: pointer;
}
.page-item.active .page-link {
  background: var(--primary-color) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .mrv-hub-header h1 {
    font-size: 2.5rem;
  }
  .mrv-card-body {
    padding: 14px;
  }
}

.col-filter {
  transition: all 0.4s ease;
}

/* achievement page  */
.section-tag {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.main-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.min-card {
  background: var(--text-white);
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.6s ease-out forwards;
}

.min-card:hover {
  transform: translateX(8px);
  border-left-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0;
}

.achivement-stat-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 5px;
}

.student-name {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Achievement */
.badge-minimal {
  color: var(--secondary-color);
  font-size:14px;
  font-weight: 700;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .min-card {
    padding: 10px;
  }
  .badge-minimal {
    padding: 0px;
  }
  .stat-value {
    font-size: 1.4rem;
  }
  .achivement-stat-label {
    font-size: 0.8rem;
    height: 30px;
  }
  .student-name {
    margin-bottom: 4px;
    font-size: 0.7rem;
  }
  .small,
  small {
    font-size: 0.6rem;
  }
  hr {
    margin: 4px 0;
  }
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 10px; 
  margin-bottom: 10px;
}

.student-avatar {
  width: 80px;
  height: 90px;
  border-radius: 4%;
  object-fit: cover; 
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.min-card {
  background: var(--text-white);
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  animation: slideIn 0.6s ease-out forwards;
}

.min-card:hover {
  transform: translateX(8px);
  border-left-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
  color: var(--secondary-color);
  font-size:14px;
  font-weight: 600;
  margin-bottom: 0;
}

.achivement-stat-label {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
}

.student-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0; 
}

/* Achievement */
.badge-minimal {
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  display: inline-block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .min-card {
    padding: 10px;
  }
  .badge-minimal {
    padding: 0px;
  }
  .stat-value {
    font-size: 16px;
  }
  .achivement-stat-label {
    font-size: 0.8rem;
    height: 30px;
  }
  
  /* Mobile me image thodi choti karne ke liye */
  .student-profile {
    gap: 6px;
    margin-bottom: 4px;
  }
  /* .student-avatar {
    width: 50px;
    height: 50px;
  } */
  
  .student-name {
    font-size: 0.7rem;
  }
  .small,
  small {
    font-size: 0.6rem;
  }
  hr {
    margin: 4px 0;
  }
}

.sports-header {
  margin-bottom: 50px;
  padding-left: 20px;
}

.sports-header h2 {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Sports Card */
.sports-card {
  border: 1px solid #eee;
  border-bottom: 3px solid var(--primary-color);
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background: #fff;
}

.sports-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sport-icon {
  background: rgba(0, 33, 71, 0.05);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.4rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.achievement-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 5px;
}

.medal-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--text-dark);
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  margin-top: 10px;
}

.event-name {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.event-level {
  font-size: 0.9rem;
  color: #666;
}

.fade-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.mrv-achievement-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.mrv-achievement-header {
  margin-bottom: 20px;
}

.mrv-achievement-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.mrv-achievement-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.5rem;
  margin-top: 10px;
}

.mrv-achievement-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  /* padding: 10px; */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mrv-achievement-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mrv-achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.08);
  border-color: transparent;
}

.mrv-achievement-card:hover::before {
  transform: scaleX(1);
}

.mrv-achievement-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(0, 33, 71, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.mrv-achievement-card:hover .mrv-achievement-icon-wrapper {
  background: var(--primary-color);
  color: var(--text-white);
  transform: rotateY(360deg);
}

.mrv-image-wrapper{
  height: 230px;
  width: 100%
}

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

.mrv-achievement-label {
  display: inline-block;
  background: rgba(170, 13, 21, 0.1);
  color: var(--secondary-color);
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mrv-achievement-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mrv-achievement-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.mrv-achievement-content{
  padding: 15px;
  text-align: left;
}

@media (max-width: 768px) {
  .mrv-achievement-title {
    font-size: 2rem;
  }
  .mrv-achievement-card {
    padding: 10px;
  }

  .mrv-image-wrapper{
  height: 190px;
  width: 100%
}
}

.mrv-achievement-wrapper {
  padding: 80px 0;
  background-color: #fcfcfc;
  font-family: "Inter", sans-serif;
}

.mrv-achievement-tagline {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.mrv-achievement-main-title {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 50px;
}

.mrv-achievement-hero-card {
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mrv-achievement-hero-card:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 30px rgba(0, 33, 71, 0.2);
}

.mrv-achievement-hero-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-right: 30px;
}

.mrv-achievement-mini-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

.mrv-achievement-mini-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.mrv-achievement-mini-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.mrv-achievement-mini-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.mrv-achievement-mini-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.mrv-border-accent {
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

@media (max-width: 768px) {
  .mrv-achievement-hero-card {
    flex-direction: column;
    text-align: center;
  }
  .mrv-achievement-hero-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* contact page */
.mrv-contact-wrapper {
  padding: 80px 0;
}

.mrv-header-minimal {
  text-align: center;
  margin-bottom: 60px;
}
.mrv-header-minimal h2 {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -1px;
}
.mrv-header-minimal .line {
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto;
}

.mrv-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}
.mrv-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.mrv-info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}
.mrv-info-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
}
.mrv-info-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.mrv-form-container {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #eee;
  margin-top: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.mrv-form-container .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 0;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.mrv-form-container .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
}

.mrv-btn-minimal {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}
.mrv-btn-minimal:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(170, 13, 21, 0.2);
}

@media (max-width: 768px) {
  .mrv-form-container {
    padding: 30px 20px;
  }
  .mrv-header-minimal h2 {
    font-size: 1.75rem;
  }
}

/* gallery page */
.mrv-header-minimal {
  text-align: center;
  margin-bottom: 60px;
}
.mrv-header-minimal h2 {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -1px;
}
.mrv-header-minimal .line {
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto;
}

.mrv-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}
.mrv-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.mrv-info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}
.mrv-info-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
}
.mrv-info-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.mrv-form-container {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #eee;
  margin-top: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.mrv-form-container .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 0;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.mrv-form-container .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
}

.mrv-btn-minimal {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}
.mrv-btn-minimal:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(170, 13, 21, 0.2);
}

@media (max-width: 768px) {
  .mrv-form-container {
    padding: 30px 20px;
  }
  .mrv-header-minimal h2 {
    font-size: 1.75rem;
  }
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 0px) !important;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* art activity card */
.art-activity-card {
  background: #fff;
  padding: 30px;
  height: 240px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.art-activity-card i {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

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

/* 
wushu Game Section */
.mrv-wushu-game-wrapper {
  padding: 60px 20px;
  width: 100%;
  font-family: "Arial", sans-serif;
}

.mrv-wushu-game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mrv-wushu-game-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Visuals */
/* .mrv-wushu-game-visual-box {
  position: relative;
  width: 490px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .mrv-wushu-game-aura-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  opacity: 0.3;
} */

.mrv-wushu-game-image {
  width: 100%;
  height: -webkit-fill-available;
  z-index: 5;
  /* animation: mrv-float 4s infinite ease-in-out; */
}

.sport-image-section {
  height: -webkit-fill-available;
}
/* Typography */
.mrv-wushu-game-text-content {
  flex: 1;
  min-width: 300px;
}

.mrv-wushu-game-heading {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 900;
}

.mrv-wushu-game-accent {
  color: var(--secondary-color);
}

.mrv-wushu-game-subtext {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Buttons */
.mrv-wushu-game-button-group {
  display: flex;
  gap: 15px;
}

.mrv-wushu-game-cta-fill {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.mrv-wushu-game-cta-fill:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(170, 13, 21, 0.3);
}

.mrv-wushu-game-cta-border {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 28px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

/* Grid Features */
.mrv-wushu-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.mrv-wushu-game-grid-item {
  padding: 20px;
  border-left: 3px solid var(--secondary-color);
  background: rgba(0, 33, 71, 0.03); /* Extremely subtle tint */
  transition: 0.3s;
}

.mrv-wushu-game-grid-item:hover {
  background: rgba(0, 33, 71, 0.07);
}

.mrv-wushu-game-grid-title {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.mrv-wushu-game-grid-desc {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Animations */
@keyframes mrv-morph {
  0% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  100% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transform: rotate(360deg);
  }
}

@keyframes mrv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mrv-wushu-game-heading {
    font-size: 2.5rem;
  }
  .mrv-wushu-game-main-content {
    text-align: center;
    justify-content: center;
  }
  .mrv-wushu-game-button-group {
    justify-content: center;
  }
}

.wushu-list li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

.wushu-list {
  /* padding-left: 18px;  */
  text-align: left;
}

@media (max-width: 480px) {
  .mrv-wushu-game-wrapper {
    padding: 40px 15px;
  }

  .mrv-wushu-game-heading {
    font-size: 1.8rem;
  }

  .sports-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .wushu-list li {
    font-size: 14px;
  }
}

/* Skipping Section  */
.mrv-skipping-wrapper {
  padding: 50px 20px;
  width: 100%;
  font-family: "Arial", sans-serif;
}

.mrv-skipping-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mrv-skipping-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Visuals */
/* .mrv-skipping-visual-box {
  position: relative;
  width: auto;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.mrv-skipping-aura-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  /* border: 2px solid var(--secondary-color); */
  opacity: 0.3;
}

.mrv-skipping-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures skipping image fills the box properly */
  z-index: 5;
}

/* Typography */
.mrv-skipping-text-content {
  flex: 1;
  min-width: 300px;
}

.mrv-skipping-accent {
  color: var(--secondary-color);
}

.skipping-list {
  margin-top: 20px !important;
  text-align: left;
}

.skipping-list li {
  margin-bottom: 8px;
  font-weight: 500;
}

.skipping-list li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mrv-skipping-main-content {
    flex-direction: column; /* Stacks image on top for mobile */
    text-align: center;
  }

  .mrv-skipping-visual-box {
    width: 100%;
    max-width: 490px;
  }
}

@media (max-width: 480px) {
  .mrv-skipping-wrapper {
    padding: 40px 15px;
  }

  .sports-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Shooting Section Styles */
.mrv-shooting-game-wrapper {
  padding: 50px 20px;
  width: 100%;
  font-family: "Arial", sans-serif;
  /* Background remains transparent */
}

.mrv-shooting-game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mrv-shooting-game-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Visuals */
.mrv-shooting-game-visual-box {
  position: relative;
  width: 490px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrv-shooting-game-aura-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  opacity: 0.3;
}

.mrv-shooting-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

/* Typography */
.mrv-shooting-game-text-content {
  flex: 1;
  min-width: 300px;
}

.mrv-shooting-game-accent {
  color: var(--secondary-color);
}

.shooting-list {
  margin-top: 15px !important;
  text-align: left;
}

.shooting-list li {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.shooting-list li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

/* Responsive Logic */
@media (max-width: 768px) {
  .mrv-shooting-game-main-content {
    flex-direction: column;
    text-align: center;
  }

  .mrv-shooting-game-visual-box {
    width: 100%;
    max-width: 490px;
  }

  .shooting-list {
    display: inline-block; /* Centers list markers when text is centered */
  }
}

@media (max-width: 480px) {
  .mrv-shooting-game-wrapper {
    padding: 40px 15px;
  }

  .mrv-title {
    font-size: 1.8rem;
  }

  .sports-desc {
    font-size: 14px;
  }
}

/* Skating Section - Matching Wushu Design Pattern */
.mrv-skating-game-wrapper {
  padding: 50px 20px;
  width: 100%;
  font-family: "Arial", sans-serif;
  /* Transparent background to fit school website theme */
}

.mrv-skating-game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mrv-skating-game-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Visuals & Pulse Effect */
.mrv-skating-game-visual-box {
  position: relative;
  width: 490px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrv-skating-game-aura-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  opacity: 0.3;
}

.mrv-skating-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

/* Typography & Colors */
.mrv-skating-game-text-content {
  flex: 1;
  min-width: 300px;
}

.mrv-skating-game-accent {
  color: var(--secondary-color);
}

.skating-list {
  margin-top: 15px !important;
  text-align: left;
}

.skating-list li {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.skating-list li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

/* Responsive Handling */
@media (max-width: 768px) {
  .mrv-skating-game-main-content {
    flex-direction: column;
    text-align: center;
  }

  .mrv-skating-game-visual-box {
    width: 100%;
    max-width: 490px;
  }

  .skating-list {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mrv-skating-game-wrapper {
    padding: 40px 15px;
  }

  .mrv-title {
    font-size: 1.8rem;
  }

  .sports-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Cricket Section - Standardized mrv Design */
.mrv-cricket-game-wrapper {
  padding: 50px 20px;
  width: 100%;
  font-family: "Arial", sans-serif;
}

.mrv-cricket-game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mrv-cricket-game-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Visuals */
.mrv-cricket-game-visual-box {
  position: relative;
  width: 490px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrv-cricket-game-aura-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  opacity: 0.3;
}

.mrv-cricket-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

/* Typography & Theming */
.mrv-cricket-game-text-content {
  flex: 1;
  min-width: 300px;
}

.mrv-cricket-game-accent {
  color: var(--secondary-color);
}

.cricket-list {
  margin-top: 15px !important;
  text-align: left;
}

.cricket-list li {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.cricket-list li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .mrv-cricket-game-main-content {
    flex-direction: column;
    text-align: center;
  }

  .mrv-cricket-game-visual-box {
    width: 100%;
    max-width: 490px;
  }

  .cricket-list {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mrv-cricket-game-wrapper {
    padding: 40px 15px;
  }

  .mrv-title {
    font-size: 1.8rem;
  }

  .sports-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

.load-more-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 2px;
  font-weight: 500;
  transition: 0.3s;
}

.load-more-btn:hover {
  background: var(--secondary-color);
}

.mrv-sports-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Card Design */
.mrv-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.mrv-sports-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 2px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.mrv-sports-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.1);
  border-color: var(--secondary-color);
}
.mrv-sports-card i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
  transition: 0.3s;
}
.mrv-sports-card:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}
.mrv-sports-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
}
.mrv-sports-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Modal Overlay */
.mrv-sports-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.9); */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.mrv-sports-modal-content {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  position: relative;
  max-height: 90vh;
}
.mrv-sports-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: var(--secondary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: none;
}

/* Modal Slider Side */
.mrv-sports-slider-box {
  flex: 1.2;
  position: relative;
  background: #000;
  height: auto;
}
.mrv-sports-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}

/* Modal Info Side */
.mrv-sports-info-box {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
.mrv-sports-modal-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--primary-color);
}
.mrv-sports-modal-accent {
  color: var(--secondary-color);
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}
.mrv-sports-modal-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.mrv-sports-modal-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.mrv-sports-modal-list li::before {
  content: "🏆";
  margin-right: 10px;
}

@media (max-width: 991px) {
  .mrv-sports-modal-content {
    flex-direction: column;
  }
  .mrv-sports-slider-box {
    height: 300px;
  }
  .mrv-sports-info-box {
    padding: 30px;
  }
}

/* visitors and guests */
.mrv-premium-guest-section {
  /* padding: 100px 0; */
  background: radial-gradient(circle at top right, #f8f9fa, #ffffff);
}

/* Heading Style */
.mrv-top-eyebrow {
  color: var(--secondary-color);
  font-weight: 800;
  letter-spacing: 5px;
  font-size: 0.75rem;
  margin-bottom: 15px;
}

.mrv-main-title {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 900;
}

.mrv-text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
}

.mrv-fancy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.mrv-fancy-divider span {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.mrv-fancy-divider i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* Elite Card Styling */
.mrv-elite-card {
  background: #fff;
  border-radius: 0; /* Boxy formal look */
  border: 1px solid #eef0f2;
  overflow: hidden;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mrv-elite-card:hover {
  box-shadow: 0 30px 60px rgba(0, 33, 71, 0.15);
  border-color: var(--primary-color);
}

/* Upper Part */
.mrv-card-upper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.mrv-guest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  object-position: top;
  transition: 0.6s ease;
}

.mrv-elite-card:hover .mrv-guest-img {
  filter: grayscale(0%);
  /* transform: scale(1.1); */
}

.mrv-overlay-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 5px 15px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: 2;
}

.mrv-card-initial {
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  line-height: 1;
}

/* Lower Part */
.mrv-card-lower {
  padding: 15px;
  position: relative;
  background: #fff;
}

.mrv-name {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 5px;
  transition: 0.3s;
}

.mrv-reason {
  color: #555;
  line-height: 1.8;
  font-size: 0.8rem;
}

.mrv-card-footer-line {
  width: 0;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;
}

.mrv-elite-card:hover .mrv-card-footer-line {
  width: 100%;
}

@media (max-width: 991px) {
  .mrv-main-title {
    font-size: 2.5rem;
  }
}

/* career page */
.career-mrv-benefits-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.career-mrv-section {
  padding: 50px 0;
}

.career-mrv-p {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.career-mrv-action-btn {
  padding: 18px 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.2);
}

.career-mrv-action-btn:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.career-mrv-image-container {
  margin-top: 60px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.career-mrv-main-frame {
  border-radius: 24px;
  border: 12px solid #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.career-mrv-image-container:hover .career-mrv-main-frame {
  transform: scale(1.02);
}

.career-mrv-stats-card {
  position: absolute;
  top: 20px;
  right: -20px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.career-mrv-benefit-header {
  margin-bottom: 60px;
}

.career-mrv-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.career-mrv-benefit-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 7px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.career-mrv-benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
  background-color: var(--secondary-color);
}

.career-mrv-icon-box {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--primary-color);
  transition: 0.3s;
}

.career-mrv-icon-box i {
  font-size: 32px;
}

.career-mrv-benefit-card:hover .career-mrv-icon-box {
  background: var(--primary-color);
  color: #ffffff;
}

.career-mrv-benefit-card h4 {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  margin-top: 10px;
}

.career-mrv-benefit-card div {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .career-mrv-benefits-section {
    padding: 60px 0;
  }
  .career-mrv-benefit-card {
    padding: 30px;
  }
}

.career-mrv-benefit-card:hover .career-mrv-icon-box {
  background-color: var(--text-white);
}

.career-mrv-benefit-card:hover .career-mrv-icon-box i {
  color: var(--secondary-color);
}

.career-mrv-benefit-card:hover h4 {
  color: var(--text-white);
}

.career-mrv-benefit-card:hover div {
  color: var(--text-white);
}

.career-mrv-job-section {
  padding: 100px 0;
}

.career-mrv-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 35px;
  background: #ffffff;
  border: 1px solid #7c8287;
  border-radius: 7px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.career-mrv-job-row:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
  background: #f8faff;
}

.mrv-job-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.mrv-job-meta {
  display: flex;
  gap: 20px;
  color: #64748b;
  font-size: 0.95rem;
}

.mrv-dept-badge {
  background: #eef2ff;
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.btn-mrv-apply {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.career-mrv-job-row:hover .btn-mrv-apply {
  background: var(--primary-color);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .career-mrv-job-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .mrv-job-meta {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
  .btn-mrv-apply {
    width: 100%;
    text-align: center;
  }
  .career-mrv-job-row:hover {
    transform: translateY(-5px);
  }
}

.mrv-career-form-section {
  padding: 60px 0;
}

.mrv-career-form-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.mrv-career-form-job-item:hover {
  transform: translateX(12px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
  background: #fcfdff;
}

.mrv-career-form-job-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.mrv-career-form-meta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mrv-career-form-badge {
  background: #eef2ff;
  color: var(--primary-color);
  padding: 5px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.mrv-career-form-apply-btn {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}

.mrv-career-form-job-item:hover .mrv-career-form-apply-btn {
  background: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.mrv-career-form-modal-box {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mrv-career-form-modal-header {
  background: var(--primary-color);
  padding: 30px 40px;
  border: none;
  color: white;
}

.mrv-career-form-modal-body {
  padding: 40px;
  background: #ffffff;
}

.mrv-career-form-label {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: block;
}

.mrv-career-form-input {
  border: 2px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px 18px;
  width: 100%;
  transition: all 0.3s ease;
}

.mrv-career-form-input:focus {
  border-color: var(--primary-color);
  background-color: #fff;
  outline: none;
}

.mrv-career-form-submit-btn {
  width: fit-content;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 25px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .mrv-career-form-job-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .mrv-career-form-apply-btn {
    width: 100%;
    margin-top: 20px;
  }
}

.mrv-career-form-section {
  background-color: #ffffff;
}

.mrv-career-form-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 32px) clamp(20px, 4vw, 45px);
  background: #ffffff;
  border: 1px solid #8a8d91;
  border-radius: 20px;
  margin-bottom: clamp(12px, 2vw, 24px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mrv-career-form-job-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.mrv-career-form-meta-group {
  display: flex;
  gap: clamp(10px, 1.5vw, 20px);
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 1200px) {
  .mrv-career-form-job-item:hover {
    transform: translateX(15px);
  }
}

@media (max-width: 991px) {
  .mrv-career-form-job-item {
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .mrv-career-form-job-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .mrv-career-form-apply-btn {
    width: fit-content;
    margin-top: 20px;
    padding: 12px;
  }

  .mrv-career-form-modal-header,
  .mrv-career-form-modal-body {
    padding: 20px;
  }

  .mrv-career-form-job-title {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .mrv-career-form-section {
    padding: 40px 0;
  }

  .mrv-career-form-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .mrv-career-form-modal-box {
    border-radius: 0;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 850px;
  }
}

/* alumni form modal */
#alumniModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 33, 71, 0.2);
}

#alumniModal .modal-header {
  background: var(--primary-color);
  padding: 30px 40px;
  /* border-bottom: 5px solid var(--accent); */
  position: relative;
}

#alumniModal .modal-title {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

#alumniModal .btn-close {
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  margin: -10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#alumniModal .modal-body {
  padding: 40px;
  background: #f8f9fa;
}

#alumniModal .form-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

#alumniModal .form-control {
  height: 52px;
  background: #fff;
  border: 2px solid #edf2f7;
  border-radius: 12px;
  font-size: 15px;
  padding: 0 20px;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#alumniModal textarea.form-control {
  height: auto;
  padding: 15px 20px;
}

#alumniModal .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(170, 13, 21, 0.08);
  outline: 0;
}

#alumniModal .mrv-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  border: none;
  width: fit-content;
  transition: 0.4s ease;
}

#alumniModal .mrv-btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 33, 71, 0.2);
}

#alumniModal .form-text {
  font-size: 12px;
  color: #718096;
}

@media (max-width: 768px) {
  #alumniModal .modal-header {
    padding: 25px;
  }
  #alumniModal .modal-body {
    padding: 25px;
  }
}

/* chatbot section */
.chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 70px;
  width: 320px;
  height: 500px;
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-header {
  background: linear-gradient(135deg, #0d6efd 0%, #004db3 100%);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.chatbot-header span {
  font-size: 20px;
}

.chatbot-header button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.chat-user {
  align-self: flex-end;
  background: #0d6efd;
  color: white;
  border-bottom-right-radius: 2px;
}

.chat-bot {
  align-self: flex-start;
  background: #e9e9eb;
  color: #333;
  border-bottom-left-radius: 2px;
}

.chatbot-input {
  display: flex;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #eee;
}

.chatbot-input input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 20px;
  outline: none;
  padding-left: 15px;
}

.chatbot-input button {
  border: none;
  background: #0d6efd;
  color: white;
  margin-left: 8px;
  padding: 0 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.chatbot-input button:hover {
  background: #004db3;
}

.acad-highlights p {
  margin-bottom: 0px;
}

.mrv-achievement-card .feature-icon-circle {
  background-color: var(--primary-color);
}

.mrv-achievement-card .feature-icon-circle img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.count-image {
  filter: invert(1);
  height: 30px;
}

.icon-facility {
  filter: invert(1);
  height: 30px !important;
  width: 30px !important;
}

.library-icon {
  width: 30px;
  height: 30px;
  filter: invert(19%) sepia(96%) saturate(7494%) hue-rotate(357deg)
    brightness(65%) contrast(115%);
}

.custom-file-input {
  height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.mrv-heading {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 600;
}

/* medical room */
.mrv-section-tag {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.mrv-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
}

.mrv-section-text {
  color: #555;
  line-height: 1.7;
}

.mrv-feature-box {
  background: #fff;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.mrv-feature-box i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.mrv-feature-box h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.mrv-feature-box p {
  font-size: 13px;
  color: #777;
}

.mrv-medical-list {
  padding-left: 18px;
}

.mrv-medical-list li {
  margin-bottom: 8px;
  color: #444;
  position: relative;
}

.mrv-medical-list li::marker {
  color: var(--secondary-color);
}

.mrv-highlight-box {
  background: #f5f7fb;
  padding: 20px;
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
}

.mrv-highlight-box h6 {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary-color);
}

.mrv-highlight-box p {
  font-size: 14px;
  color: #555;
}

.mrv-sports-slider-box {
  position: relative;
  overflow: hidden;
}

.mrv-sports-slide-img {
  position: absolute; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
}

/* learning labs */
.learning-labs-section {
  background-color: #f8f9fa;
}

.title-separator {
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.portrait-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4.5; 
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease;
}

.portrait-card:hover .card-content-wrapper {
  height: 70%;
  background: linear-gradient(transparent, var(--primary-color));
}

.lab-category {
  display: inline-block;
  font-size: 11px;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lab-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lab-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.portrait-card:hover .lab-text {
  max-height: 100px;
  opacity: 1;
}

@media (max-width: 768px) {
  .portrait-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .lab-title {
    font-size: 1.1rem;
  }
}



/* header mobile navigation */
@media (max-width: 1024px) {
  .mrv-main-nav {
    top: 0 !important;
    transform: translateY(0) !important;
    background: var(--primary-color) !important;
    padding: 0 !important;
    height: 60px;
    display: flex;
    align-items: center;
  }

  .logo-circle-container {
    height: 44px !important;
    width: auto !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1045;
    overflow-y: auto;
    padding-top: 60px;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .navbar-collapse.show {
    visibility: visible;
    opacity: 1;
  }

  .mrv-nav-list {
    width: 100%;
    flex-direction: column !important;
    padding: 8px 0 80px !important;
    margin: 0 !important;
  }

  .mrv-nav-list .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .mrv-nav-list .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff !important;
    transition: background 0.2s ease, border-left 0.2s ease;
  }

  .mrv-nav-list .nav-link:hover,
  .mrv-nav-list .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--secondary-color);
    padding-left: 17px !important;
    color: #fff !important;
  }

  .btn-mrv-contact {
    color: var(--secondary-color) !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .premium-dropdown .dropdown-menu {
    position: static !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: max-height 0.35s ease !important;
  }

  .premium-dropdown .dropdown-menu.show {
    max-height: 600px;
  }

  .custom-glow {
    padding: 11px 20px 11px 36px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    display: block;
    background: transparent !important;
  }

  .custom-glow:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding-left: 40px !important;
  }

  .mrv-admission-tag {
    display: block;
    margin: 16px 20px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
  }

  .premium-dropdown .show .dropdown-icon {
    transform: rotate(180deg);
  }

  .animate-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    border: none !important;
  }
}

/* full page loader */
.custom-full-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #ddd;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



