/* utility */
.SM_container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.SM_section-gap-equal {
  padding: var(--spacing-sm) 0;
}

.SM_section-gap-top {
  padding-top: var(--spacing-xl);
}

.SM_section-gap-bottom {
  padding-bottom: var(--spacing-xl);
}

.SM_section .top-text {
  margin-bottom: var(--spacing-xs);
}

.SM_gap-lg-equal {
  padding: var(--spacing-lg) 0;
}

.SM_gap-lg-bottom {
  padding-bottom: var(--spacing-lg);
}
.SM_gap-lg-top {
  padding-top: var(--spacing-lg);
}

.SM_gap-md-equal {
  padding: var(--spacing-md) 0;
}

.SM_gap-md-bottom {
  padding-bottom: var(--spacing-md);
}
.SM_gap-md-top {
  padding-top: var(--spacing-md);
}

.SM_gap-sm-equal {
  padding: var(--spacing-sm) 0;
}

.SM_gap-sm-bottom {
  padding-bottom: var(--spacing-sm);
}
.SM_gap-sm-top {
  padding-top: var(--spacing-sm);
}

.SM_gap-xs-equal {
  padding: var(--spacing-xs) 0;
}

.SM_gap-xs-bottom {
  padding-bottom: var(--spacing-xs);
}
.SM_gap-xs-top {
  padding-top: var(--spacing-xs);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xxs);
}

.section-title h2 {
  margin-bottom: 5px;
}

.section-title p {
  font-size: var(--fs-md);
}

.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}

.SM_section-title {
  text-align: center;
}

.SM_section-subtitle {
  /* margin-top: var(--spacing-xxs); */
  text-align: center;
}

.primary_text {
  color: var(--clr-primary);
}

/* =========== main style starts =========*/
body {
  color: var(--clr-body-white);
  background-color: var(--bg-clr-body-white);
  font-size: var(--fs-base);
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--ff-primary);
  width: 100%;
  height: 100%;
  font-weight: 400;
  line-height: normal;
}

body.dark {
  color: var(--clr-body);
  background-color: var(--bg-clr-body-black);
}

/* ========== header style starts ============ */
.SM_header {
  width: 100%;
  border-bottom: 1px solid #dce1e4;
}

.dark .SM_header {
  border-bottom: 1px solid #dce1e4;
  border-bottom: 1px solid #2f2f2f;
}

/* ====== top header ======= */
.SM_header-top {
  padding: 20px 0;
}

.SM_header-top-inner {
  background: #efeeea;
}

.SM_header-top-inner .SM_left-logo,
.SM_header-top-inner .SM_right-logo {
  max-width: 110px;
  max-height: 110px;
  align-items: center;
}

.SM_header-top-content h1 {
  color: var(--clr-dark-900);
}

.SM_header-top-inner img {
  width: 100%;
  height: auto;
}

/* ====== top CTA ======= */
.SM_header-cta {
  width: 100%;
  background-color: var(--clr-secondary-900);
}
.SM_header-cta {
  color: var(--clr-white-200);
  padding: 10px 0;
}

.SM_header-cta .SM_header-ct-left {
  gap: 20px;
}

.SM_header-cta p {
  gap: 6px;
  font-size: var(--fs-sm);
}

.SM_header-cta p i {
  font-size: var(--fs-sm);
}
.SM_header-cta p .fa-envelope {
  font-size: var(--fs-base);
}

/* ========== bottom header ====== */
.SM_main-logo {
  max-width: 400px;
  transition: 700ms;
}

.SM_main-logo.squish {
  max-width: 300px;
}

.SM_header-bottom {
  background-color: var(--clr-white-900);
  position: sticky;
  top: 0;
  left: 0;
  /* overflow: hidden; */
  z-index: 999;
}

.SM_header-bottom-inner {
  color: var(--clr-secondary-700);
}

.SM_navlink-container {
  gap: 4%;
}

.SM_navlink {
  position: relative;
  height: 100%;
  padding: 33px 0px;
  cursor: pointer;
}

.SM_navlink:focus .SM_dropdown-menu,
.SM_navlink:hover .SM_dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.SM_navlink .SM_dropdown-menu {
  position: absolute;
  opacity: 0;
  min-width: 100%;
  pointer-events: none;
  top: 100%;
  left: 0px;
  z-index: 999;
  padding: 15px;
  backdrop-filter: blur(7px);
  background-color: var(--clr-white-transparent-900);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  gap: 10px;
  transition: var(--transition-medium);
}

.SM_dropdown-menu .SM_dropdown-link a {
  white-space: nowrap;
  display: inline-block;
  transition: var(--transition-medium);
  position: relative;
}

.SM_dropdown-menu .SM_dropdown-link a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 0%;
  transition: var(--transition-medium);
  height: 1px;
  background-color: currentColor;
}

.SM_sidebar-link-container .SM_dropdown-menu .SM_dropdown-link a::before {
  display: none;
}

.SM_dropdown-menu .SM_dropdown-link a:hover::before {
  width: 100%;
}

.SM_navlink span {
  transition: var(--transition-slow);
  position: relative;
}

.SM_navlink {
  position: relative;
  display: block;
}

.SM_navlink::before {
  position: absolute;
  top: 90%;
  top: calc(100% - 5px);
  left: 0;
  width: 100%;
  opacity: 0;
  height: 5px;
  transition: var(--transition-medium);
  background-color: var(--clr-primary);
  content: "";
}

.SM_navlink:hover::before {
  /* width: 100%; */
  opacity: 1;
}

.SM_nav {
  width: 100%;
}

.SM_small-logo {
  display: none;
}

/* ====== hamberger menu ==== */
.SM_hamburger {
  background-color: inherit;
  color: inherit;
  display: none;
}

.SM_sidebar {
  display: none;
  z-index: 99999;
}

/* we will continue from here later */
.SM_header.sticky {
  width: 100%;
  background-color: rgba(33, 36, 40, 0.8705882353);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(15px);
  top: 0;
  position: fixed;
  z-index: 999;
}

.light .SM_header.sticky {
  background-color: rgba(33, 36, 40, 0.8705882353);
}

.light .SM_header.sticky {
  background-color: #ecf0f3;
  box-shadow: 10px 10px 19px rgba(0, 0, 0, 0.1);
}

/*  ======== sidebar container links =======  */
.SM_sidebar-link-container {
  padding-block: 25px;
  width: 100%;
  max-height: 80%;
  padding: 0 20px;
  overflow-y: auto;
  max-width: 300px;
  margin: 0 auto;
  gap: 5px;
  color: var(--clr-white-700);
}

.SM_sidebarlink button {
  width: 100%;
  background-color: transparent;
  color: inherit;
  padding: 3px 0;
}

.SM_sidebarlink button .fa-angle-down {
  font-size: var(--fs-sm);
  transition: var(--transition-slow);
}

.arrow-up {
  transform: rotate(180deg);
}

.SM_sidebarlink {
  text-align: left;
  padding: 5px 0px;
  border-bottom: 1px solid var(--clr-white-700);
}
.SM_sidebarlink .SM_dropdown-menu {
  padding-top: 5px;
  display: none;
}

.SM_sidebarlink .SM_dropdown-link {
  padding: 8px 0px;
  padding-left: 15px;
}

.SM_main {
  width: 100%;
  position: relative;
  z-index: 0;
}

.SM_banner-inner {
  position: relative;
  height: 60vh;
  max-height: 600px;
  min-height: 300px;
  overflow: hidden;
}

.SM_banner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.SM_banner-img.overlay::before {
  height: 100%;
  content: "";
  width: 100%;
  background-color: var(--clr-dark-transparent-300);
  position: absolute;
  z-index: 10;
}

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

.SM_content-container {
  height: 100%;
  width: 100%;
  z-index: 99;
}
.SM_content {
  padding: 20px;
  border-radius: 6px;
  backdrop-filter: blur(7px);
  background-color: var(--clr-white-transparent-900);
}

/* ===== home pag ====== */
/* ===== banner ======= */
.SM_banner-wrapper,
.SM_banner-inner {
  width: 100%;
}

.SM_banner-slider-wrap {
  overflow: hidden;
  min-height: 600px;
  height: 60vh !important;
  max-height: 800px !important;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.SM_banner-slider-wrap .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 3%;
  border-radius: 5px;
  transform: translateX(-50%);
  gap: 10px;
  align-items: center;
}

.SM_banner-slider-wrap .slick-dots li {
  background-color: gray;
  padding: 0;
  margin: 0;
  width: 10px;
  border-radius: 100%;
  transition: var(--transition-medium);
  overflow-wrap: hidden;
  height: 10px;
}
.SM_banner-slider-wrap .slick-dots li.slick-active {
  width: 13px;
  background-color: var(--clr-white-700);
  height: 13px;
}

.SM_banner-slider-wrap .slick-dots li button {
  width: 8px;
  height: 8px;
  overflow: hidden;

  opacity: 0;
}

.SM_banner-slider {
  position: relative;
  height: 60vh !important;
  min-height: 600px !important;
  overflow: hidden;
}

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

.SM_banner-slider .SM_slider-content {
  position: absolute;
  left: 50%;
  bottom: 10%;
  padding: 20px;
  border-radius: 5px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0 31px 0px rgb(0 0 0 / 10%);
  backdrop-filter: blur(15px);
}

.SM_banner-slider .SM_slider-content h2 {
  text-align: center;
  margin-bottom: 5px;
}

.SM_banner-slider .SM_slider-content p {
  text-align: center;
}

/* ======= hot news marquee text ======== */

.SM_hotnews-marquee-inner {
  overflow: hidden;
  margin-top: 20px;
}

.SM_hotnews-marquee-inner .label {
  padding: 8px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: var(--clr-dark-700);
  color: var(--clr-white-700);
}

.SM_hotnews-marquee {
  overflow: hidden;
  border: 1px solid var(--clr-white-700);
  padding: 7px 0;
  white-space: nowrap;
  position: relative;
  height: 37px;
}

.SM_hotnews-marquee-texts {
  position: absolute;
  gap: 50px;
}

/* ======== notice and respective person section ========== */
.SM_notice-info-wrapper {
  width: 100%;
}
.SM_home-notice-wrapper {
  border-radius: 6px;
}

.SM_home-notice-inner h3 {
  padding: 20px;
  text-align: center;
}

/* Table and cell styling */
.SM_notice-container {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.03); /* shadow-lg */
  border: 1px solid var(--clr-white-700);
  border-radius: 6px;
  overflow: hidden;
}

.SM_notice-container thead {
  background-color: var(--clr-secondary-900);
  color: var(--clr-white-700);
}

.SM_notice-container th,
.SM_notice-container td {
  padding: 1rem;
  font-size: 15px;
  border-bottom: 1px solid var(--clr-white-700);
}

.SM_notice-container td {
  font-size: var(--fs-xs);
}

.SM_notice-container th {
  font-weight: 600;
}

.SM_notice-container tbody tr:hover {
  background-color: var(--clr-white-800);
  transition: background-color 0.15s ease-in-out;
}

.SM_notice-container tbody tr:last-child td {
  border-bottom: none;
}

/* Link styling */
.SM_notice-container a {
  color: var(--clr-blue-500);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.SM_notice-container a:hover {
  color: var(--clr-blue-700);
}

/* Download icon styling */
.SM_notice-container .download-icon {
  color: var(--clr-blue-500);
  font-size: var(--fs-md);
  transition: color 0.2s ease-in-out;
}
.SM_notice-container .publish-date {
  white-space: nowrap;
}

.SM_notice-container .publish-date .short-date {
  display: none;
}

.SM_notice-container .download-icon:hover {
  color: var(--clr-blue-700);
}

.SM_notice-info-inner {
  gap: 35px;
}

.see-more-btn-container {
  margin-top: 1rem;
}

.see-more-btn-container a {
  color: var(--clr-blue-500);
}
.see-more-btn-container a:hover {
  color: var(--clr-blue-700);
  text-decoration: underline;
}

.SM_authorities {
  max-width: 250px;
  width: 100%;
  gap: 35px;
}

.SM_authority-profile {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 5px;
}

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

.SM_authority-card {
  border: 1px solid var(--clr-white-700);
  padding: 20px;
  border-radius: 6px;
  position: relative;
}

.SM_authority-info {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  backdrop-filter: blur(5px);
  background-color: var(--clr-white-transparent-900);
  border-radius: 3px;
  padding: 4px 10px;
  width: 100%;
  width: calc(100% - 40px);
  text-align: center;
}

/* ====== site analytics section starts ===== */
.SM_analytics-wrapper {
  width: 100%;
  min-height: 500px;
  position: relative;
}

.SM_analytics-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.SM_analytics-overlay {
  width: 100%;
  background: linear-gradient(
    8deg,
    rgba(55, 55, 55, 0.188),
    rgba(48, 48, 48, 0.285),
    rgba(77, 77, 77, 0.106)
  );
  height: 100%;
}

.SM_analytics-inner {
  gap: 10px;
}

.SM_analytic-card {
  width: 100%;
  position: relative;
  box-shadow: 0 0 2rem #0002;
  border: 1px solid #fff2;
  backdrop-filter: blur(15px);
  border-radius: 4px;
  padding: 3rem;
  color: var(--clr-white-900);
  background: #fff0;
}

.SM_analytic-card i {
  font-size: var(--fs-xl);
}

.SM_analytic-card span {
  display: block;
  margin-top: 15px;
  font-size: var(--fs-2xl);
  text-align: center;
}

.SM_analytic-card p {
  margin-top: 5px;
  text-align: center;
}

/* ====== School/College intro section starts ===== */
.SM_school-intro-wrapper {
  width: 100%;
}

.SM_school-intro-inner {
  gap: 45px;
}

.SM_school-intro-wrapper .SM_intro-video {
  width: 50%;
  border-radius: 6px;
  overflow: hidden;
}

.SM_school-intro-wrapper .SM_intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SM_intro-text-container {
  width: 50%;
  overflow: hidden;
}

.SM_intro-text-container h2 {
  margin-bottom: 10px;
}

.SM_intro-text-container p {
  text-align: justify;
}

.SM_intro-text-container button {
  margin-top: 15px;
}

/* ===== Our teachers ====== */
.SM_home-our-teacher-wrapper {
  background-color: var(--clr-white-400);
}

.SM_home-our-teachers-container {
  gap: var(--spacing-md);
}

.SM_home-our-teacher-wrapper .large-teacher-image {
  max-width: 350px;
  min-width: 24%;
}
.SM_home-our-teacher-wrapper .section-title {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: var(--spacing-sm);
}

.SM_home-our-teacher-wrapper .teachers-box {
  width: 100%;
}

.SM_home-our-teacher-wrapper .teacher-slider-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: var(--spacing-xxs);
}

.SM_home-our-teacher-wrapper .teachers-slider-container {
  margin-bottom: var(--spacing-xxs);
  max-width: 100%;
  overflow: hidden;
  position: relative;
  gap: 15px;
  display: flex;
}

.SM_home-our-teacher-wrapper .teachers-slider-container .slick-list {
  margin: 0 40px; /*not similiar*/
}


.SM_home-our-teacher-wrapper .teachers-slider-container button {
  min-width: 40px;
  height: 40px;
  content: "";
  background-color: transparent;
  color: transparent;
  border: 1px solid var(--clr-white-700);
  border-radius: 100%;
  overflow: hidden;
  /* position: relative; */ /*not similiar*/
  transition: var(--transition-medium);
}

.SM_home-our-teacher-wrapper .teachers-slider-container button.slick-next {
  right: 0 !important; /*not similiar*/
}
.SM_home-our-teacher-wrapper .teachers-slider-container button.slick-prev {
  left: 0 !important; /*not similiar*/
}

.SM_home-our-teacher-wrapper .teachers-slider-container button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url("../media/icon/angle-left.svg");
  width: 100%;
  height: 100%;
}

.SM_home-our-teacher-wrapper
  .teachers-slider-container
  button.slick-next::before {
  background: url("../media/icon/angle-right.svg");
}

.SM_home-our-teacher-wrapper .teachers-slider-container button:hover {
  border: 1px solid var(--clr-secondary-900);
}

.SM_home-our-teacher-wrapper .teacher-slider {
  overflow: hidden;
  height: 90px;
  margin: 0 15px;
}


.SM_home-our-teacher-wrapper .teacher-slider img {
  border: 1px solid var(--clr-white-700);
  border-radius: 100%;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%; /*not similiar*/
  max-height: 90px;
}
.SM_home-our-teacher-wrapper .teacher-slider.slick-current img {
  border: 1px solid var(--clr-secondary-900   );
}


.SM_home-teacher-info .designation {
  margin-bottom: 10px;
  font-style: italic;
  font-size: var(--fs-sm);
}

.SM_home-teacher-info .hr {
  margin-block: 15px;
  display: block;
  height: 1px;
  background-color: var(--clr-white-200);
}

.SM_home-teacher-info p {
  font-size: var(--fs-sm);
}
.SM_home-teacher-info p.SM_flex {
  gap: 5px;
  font-weight: 300;
  font-size: var(--fs-sm);
}

.SM_home-teacher-info p.SM_flex i {
  min-width: 20px;
  display: block;
}

.SM_home-teacher-info .view-profile-btn {
  margin-top: 15px;
  display: block;
}

.SM_home-teacher-info p.SM_flex span {
  font-weight: 300;
}
.SM_home-teacher-info .teacher-social-links {
  margin-top: var(--spacing-xxs);
  gap: 15px;
}

.SM_home-teacher-info .teacher-social-links a {
  display: flex;
  align-items: center;
  min-width: 35px;
}

.SM_home-teacher-info .teacher-social-links i {
  font-size: var(--fs-xl);
  transition: var(--transition-medium);
}

.SM_home-teacher-info .teacher-social-links i:hover {
  transform: scale(1.1);
}

/* ======= home events section starts ===== */
.SM_home-events-inner .SM_home-events-heading {
  margin-bottom: var(--spacing-sm);
}
.SM_home-events-wrapper {
  background-color: var(--clr-secondary-900);
}
.SM_home-events-inner {
  color: var(--clr-white-700);
}

.SM_home-events-container {
  margin-bottom: 25px;
  gap: 25px;
}

.SM_home-events-container:last-child {
  margin-bottom: 0;
}

.SM_home-events-container.even .event-card:nth-child(1),
.SM_home-events-container.odd .event-card:nth-child(3) {
  width: 25%;
}

.SM_home-events-container.even .event-card:nth-child(2),
.SM_home-events-container.odd .event-card:nth-child(1) {
  width: 40%;
}
.SM_home-events-container.even .event-card:nth-child(3),
.SM_home-events-container.odd .event-card:nth-child(2) {
  width: 35%;
}

.SM_home-events-container .event-card {
  background-color: var(--clr-white-700);
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  color: var(--clr-secondary-900);
  gap: 20px;
  transition: var(--transition-medium);
}

.SM_home-events-container .event-card:hover {
  transform: scale(1.03);
}

.SM_home-events-container .event-card:hover .event-img img {
  transform: scale(1.07);
}

.SM_home-events-container .event-card h4 {
  margin-bottom: 5px;
  transition: var(--transition-medium);
}

.SM_home-events-container .event-card h4:hover {
  color: var(--clr-blue-500);
  cursor: pointer;
}

.SM_home-events-container .event-card .event-img {
  width: 100%;
  border-radius: 5px;
  max-height: 350px;
  overflow: hidden;
  transition: var(--transition-medium);
}

.SM_home-events-container .event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.SM_home-events-container .event-card p {
  gap: 5px;
}

/* ====== Success rate section ====== */
.SM_success-rate-wrapper {
  width: 100%;
  background-color: var(--clr-white-400);
}

.SM_success-rate-wrapper .success-rate-content {
  width: 75%;
}

.SM_success-rate-wrapper h2 {
  margin-bottom: 15px;
}

.SM_success-rate-wrapper h4 {
  margin-bottom: var(--spacing-xxs);
  font-weight: 400;
}
.SM_success-rate-wrapper .success-rate-analytics {
  width: 100%;
  gap: 25px;
}

.SM_success-rate-wrapper .user-image {
  width: 25%;
  overflow: hidden;
}

.success-rate-content .user-image img {
  width: 100%;
  height: 100%;
}

.SM_success-rate-inner {
  gap: 25px;
}

.SM_success-rate-inner .success-rate-analytics p {
  width: 60%;
}

.SM_success-rate-inner .progress-bar-container {
  width: 40%;
  max-width: 300px;
  gap: 10px;
}

.SM_progress-animation {
  width: 100%;
}

.SM_progress-header {
  margin-bottom: 0.25rem;
  font-size: var(--fs-sm);
}

.SM_progress-bar {
  background: var(--clr-white-700);
  box-shadow: var(--shadow-gray-200);
  height: 12px;
  border: 1px solid var(--clr-white-400);
  border-radius: var(--radius);
  overflow: hidden;
}

.SM_progress-fill {
  background: var(--clr-secondary-900);
  height: 100%;
  width: 0%;
  transition: width 1.5s ease-in-out;
}

.SM_section-subtitle {
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

/* ====== faq section ====== */
.SM_faq-wrapper {
  width: 100%;
}

.SM_faq-wrapper .section-title {
  margin-bottom: var(--spacing-xxs);
  text-align: center;
}

.SM_faq-wrapper .section-title h2 {
  margin-bottom: 5px;
}

.SM_faq-wrapper .faq-content-container {
  gap: 5px;
  width: 60%;
}

.SM_faq-wrapper .faq-img {
  width: 40%;
}

.faq-content-wrapper {
  gap: 20px;
}

.SM_faq-wrapper .faq-container {
  border-bottom: 1px solid var(--clr-white-700);
  padding: 15px 0;
}

.SM_faq-wrapper .faq-content {
  display: none;
  margin-top: 10px;
  border-top: 1px solid var(--clr-white-700);
  padding-top: 10px;
}

.SM_faq-wrapper .faq-title {
  cursor: pointer;
  gap: 10px;
}

.SM_faq-wrapper .faq-title i {
  transition: var(--transition-medium);
}

.SM_faq-wrapper .faq-container.active i {
  transform: rotate(180deg);
}

/* ===== footer ======= */
.SM_footer {
  background-color: var(--clr-secondary-900);
  color: var(--clr-white-700);
  padding-bottom: var(--spacing-xxs);
}

.SM_footer-inner {
  gap: var(--spacing-sm);
}

.SM_footer-logo {
  width: 100%;
  max-width: 600px;
}

.SM_footer-logo img {
  max-width: 450px;
}

.SM_footer-logo img {
  margin-bottom: var(--spacing-xxs);
  margin-top: -10px;
}

.SM_footer-copy-right {
  margin-top: var(--spacing-xs);
}

.SM_footer-links {
  gap: 8px;
}

.SM_footer-links h3 {
  margin-bottom: 10px;
}

.SM_footer-links li a {
  position: relative;
}

.SM_footer-links li a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 0%;
  transition: var(--transition-medium);
  height: 1px;
  background-color: currentColor;
}

.SM_footer-links li a:hover::before {
  width: 100%;
}

.SM_footer-socials h3 {
  margin-bottom: var(--spacing-xxs);
}

.SM_social-links {
  gap: var(--spacing-xxs);
  min-width: 160px;
}

.SM_social-links i {
  font-size: var(--fs-xl);
  transition: var(--transition-medium);
}

.SM_social-links i:hover {
  transform: scale(1.1);
}

.SM_footer-copy-right p {
  font-size: var(--fs-sm);
}

.SM_footer-copy-right a {
  color: var(--clr-white-400);
}

.school-map {
  width: 250px;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  background-color: gray;
}

/* ======= holiday page ====== */
.SM_holiday-wrapper {
  /* background-color: var(--clr-white-700); */
}
.pdf-card-container {
  backdrop-filter: blur(7px);
  padding: 20px;
  border-radius: 5px;
  background-color: var(--clr-white-transparent-700);
  box-shadow: var(--shadow-gray-200);
}

/* ======= class Routing ======= */
.SM_class-routine-selector {
  width: 100%;
  margin-bottom: var(--spacing-xs);
  gap: var(--spacing-xxs);
}

#class-routing-selector {
  padding: 8px 10px;
  font-size: var(--fs-sm);
  border: 1px solid var(--clr-white-700);
  border-radius: 5px;
  background-color: var(--clr-white-900);
  width: 150px;
  cursor: pointer;
}

#class-routing-selector:focus {
  outline: none;
  border-color: var(--clr-secondary-900);
}

.class-routing-container {
  max-width: 100%;
  overflow-x: auto;
}

.class-routing-container img {
  min-width: 600px;
}

/* ======= Teachers page ======== */
.SM_teacher-lists-wrapper .section-title {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: var(--spacing-xs);
}

.teachers-container {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  gap: var(--spacing-xxs);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.teacher-card {
  border: 1px solid var(--clr-white-700);
  position: relative;
  width: 100%;
  max-width: 390px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-medium);
  background: linear-gradient(
    to top,
    var(--clr-secondary-900),
    var(--clr-secondary-200)
  );
  cursor: pointer;
}
.teacher-card:hover {
  box-shadow: var(--shadow-gray-200);
  transform: translateY(-3px);
}

.teacher-card .profile-wrapper {
  width: 100%;
  position: relative;
  height: 180px;
  z-index: 0;
  padding: 15px;
}

.teacher-card .profile-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 20px;
  border-bottom-right-radius: 100%;
  content: "";
  background-color: gray;
  transition: var(--transition-medium);
  z-index: -1;
}

.teacher-card .profile-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 108%;
  border-bottom-right-radius: 100%;
  content: "";
  background-color: var(--clr-white-400);
  transition: var(--transition-medium);
  z-index: -2;
}

.teacher-card:hover .profile-wrapper::before {
  width: 110%;
  height: 108%;
}

.teacher-card .teacher-content {
  padding: 15px;
  padding-top: 30px;
  color: var(--clr-white-700);
}

.teacher-card .profile {
  width: 100%;
  max-width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 20;
  background-color: var(--clr-white-700);
  border: 1px solid var(--clr-white-700);
  margin: 0 auto;
}

.teacher-card .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 20;
}

.teacher-card h5 {
  font-weight: 400;
  margin-bottom: 10px;
}

.teacher-card h4 {
  margin-bottom: 2px;
}

.teacher-card p {
  font-size: var(--fs-sm);
}

/* ====== single teacher details page ===== */
.teacher-details-profile-wrapper {
  width: 100%;
  margin-top: -220px;
}

.teacher-details-profile-inner {
  width: 100%;
  gap: var(--spacing-xxs);
}

.teacher-details-profile-inner i {
  color: var(--clr-white-700);
  margin-right: 10px;
}

.teacher-details-profile-inner .teacher-details-profile {
  width: 100%;
  max-width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--clr-primary);
}

.teacher-details-profile-inner .teacher-details-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-details-profile-inner .address {
  color: var(--clr-white-700);
  font-family: "Times New Roman", Times, serif;
  font-size: var(--fs-md);
}

.teacher-details-profile-inner .address h1 {
  font-size: var(--fs-4xl);
  font-family: "Times New Roman", Times, serif;
}

.teacher-information-inner p {
  max-width: 900px;
}

.teacher-information-wrapper .teacher-social-links {
  gap: 10px;
  margin-top: 10px;
}

.teacher-information-wrapper .teacher-social-links i {
  font-size: var(--fs-lg);
  cursor: pointer;
}

.teacher-information-table {
  width: 100%;
}

.teacher-information-table-inner .table h3 {
  gap: 10px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--clr-white-700);
}

.teacher-information-table-inner .table {
  border: 1px solid var(--clr-white-700);
  box-shadow: var(--shadow-gray-200);
  border-radius: 6px;
}

.teacher-information-table-inner .table p {
  padding: 5px 15px;
  border-bottom: 1px solid var(--clr-white-700);
  gap: 10px;
}

.teacher-information-table-inner .table p:hover {
  background-color: var(--clr-white-700);
}

.teacher-information-table-inner .table p .SM_flex {
  min-width: 155px;
  gap: 2px;
}


/* ===== contact us page ========== */
.contact-us-page .SM_banner-inner h1 {
  font-size: var(--fs-6xl);
}
.contact-us-page .SM_banner-inner .SM_content {
  max-width: 600px;
}

.contact-us-form-wrapper {
  background-color: var(--clr-white-900);
}

/* Contact Form Container */
.contact-form-container {
  width: 100%;
  max-width: 700px;
  background-color: var(--clr-white-900);
  padding: var(--spacing-xxs);
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--clr-white-800);
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--clr-white-700);
  background-color: var(--clr-white-900);
  transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-secondary-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  background-color: var(--clr-secondary-500);
  color: var(--clr-white-700);
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.submit-button:hover {
  background-color: var(--clr-secondary-300);
}

/* Form Fields */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

.wpcf7-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.wpcf7-form input.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--clr-white-700);
  background-color: var(--clr-white-900);
  transition: var(--transition-medium);
}

.wpcf7-form input.wpcf7-form-control:focus,
.wpcf7-form textarea.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--clr-secondary-500);
}

.wpcf7-form textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 8rem;
}

/* Submit Button */
.wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  background-color: var(--clr-secondary-300) !important;
  color: var(--clr-white-700) !important;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--clr-secondary-900) !important;
  color: var(--clr-white-700);
}

.wpcf7-spinner {
  margin: 0 auto !important;
  margin-top: 20px !important;
  text-align: center;
  display: block !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none !important;
  margin-top: 0 !important;
}

/* Optional: error/success messages */
.wpcf7-response-output {
  margin-top: 1rem;
  font-size: 0.875rem;
  border: none;
  color: rgb(133, 13, 13); /* change to success color if needed */
}

/* ======== about us page ==== */
/* ===== contact us page ========== */

.about-us-page .SM_school-intro-wrapper {
  /* background-color: var(--bg-clr-body-white); */
}
.about-us-page .SM_banner-inner h1 {
  font-size: var(--fs-6xl);
}

.SM_school-intro-inner.mission h2 {
  margin-bottom: 10px;
}

/* ======= result page ===== */
.result-filter-container {
  margin-bottom: 30px;
  gap: 10px;
}

.result-filter-container .SM_flex {
  gap: 10px;
}

.result-filter-container .roll-input-container {
  border-radius: 6px;
  overflow: hidden;
  gap: 0;
}

.result-filter-container #roll-input {
  width: 100%;
  outline: none;
  padding: 5px 8px;
  border: none;
  -moz-appearance: textfield;
  appearance: none;
  border: 1px solid var(--clr-white-700);
  border-start-start-radius: 6px;
  border-end-start-radius: 6px;
  transition: var(--transition-medium);
}

.result-filter-container #roll-input::-webkit-outer-spin-button,
.result-filter-container #roll-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.result-filter-container #roll-input:focus {
  outline: none;
  border: 1px solid var(--clr-white-200);
}

.result-filter-container .roll-input-container button {
  white-space: nowrap;
  padding: 0 10px;
  background-color: var(--clr-secondary-900);
  color: var(--clr-white-700);
  transition: var(--transition-medium);
}

.result-filter-container .roll-input-container button:hover {
  background-color: var(--clr-secondary-200);
}

.result-page .result-container .temp_text {
  margin-block: 20px;
}

.result-page .result-container .board-result-text a {
  color: var(--clr-secondary-200);
  transition: var(--transition-medium);
}

.result-page .result-container .board-result-text a:hover {
  color: var(--clr-secondary-900);
}

/* ======= library ========= */
.libary-page {
}

/* ======= Students page ========= */
.student-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-primary);
  font-size: var(--fs-sm);
  background: var(--bg-clr-body-white);
  box-shadow: var(--shadow-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.student-table thead {
  background-color: var(--clr-secondary-900);
  color: var(--clr-white-900);
}

.student-table th,
.student-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--clr-white-transparent-700);
}

.student-table th {
  padding: 15px 16px;
}
.student-table tr.total-count {
  font-weight: 600;
}

.student-table tbody tr:nth-child(even) {
  background-color: var(--clr-white-800);
}

.student-table tbody tr:hover {
  background-color: var(--clr-white-700);
  color: var(--clr-secondary-900);
  transition: background-color var(--transition-fast);
}

/* ==== events page ======== */
.events-page .SM_home-events-wrapper {
  background-color: transparent;
}

.events-page .SM_home-events-inner {
  color: var(--clr-white-200);
}

.events-page .SM_home-events-wrapper .event-card {
  background-color: var(--clr-secondary-900);
  color: var(--clr-white-900);
}
.events-page .SM_home-events-wrapper h2 {
  color: var(--clr-secondary-900);
}

/* ====== gallery page starts========= */
.gallery-page .SM_banner-inner .SM_content {
  max-width: 800px;
}

.gallery-page .SM_banner-inner .SM_content p {
  margin-top: 5px;
}

.gallery-slider-wrapper {
  width: 100%;
}

.gallery-slider-inner {
  width: 100%;
}

/* .card-swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.card-swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.card-swiper-slide img {
  display: block;
  width: 100%;
} */

.gallery-grid-container .SM_home-events-container .event-card {
  background-color: transparent;
  padding: 0;
}

.gallery-slider-wrapper {
  background-color: var(--clr-white-800);
}

.gallery-slider-inner {
  width: 100%;
}

.card-swiper {
  width: 100%;
  padding-bottom: 30px !important;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 500px;
  height: 450px;
  max-height: 450px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-slider-wrapper .swiper-pagination {
  padding-top: 150px !important;
}

/* ======= Digital lab page starts ========= */
.digital-lab-page .SM_content {
  max-width: 750px;
}

.digital-lab-page .SM_content h1 {
  margin-bottom: 5px;
}

.page-intro-inner h2 {
  margin-bottom: 7px;
}

.digital-lab-page .digital-lab-images {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.digital-lab-page .digital-lab-images div {
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.digital-lab-page .digital-lab-images div:first-child {
  padding-right: 15px;
}
.digital-lab-page .digital-lab-images div:last-child {
  padding-left: 15px;
}

.digital-lab-page .digital-lab-images img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ====== our programms section ====== */
.lab-future-strategies-wrapper {
  background-color: var(--clr-white-900);
  width: 100%;
}
.lab-future-strategies-wrapper .section-title {
  text-align: left;
}

/* ==== our programms ====== */
.lab-programms-wrapper .section-title {
  padding-bottom: var(--spacing-xxs) !important;
}

.lab-programms-wrapper .event-card {
  padding: 0;
}

p.short-des {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* ====== principle page ========== */
.principal-saying-wrapper h3,
.principal-saying-wrapper p {
  margin-bottom: 10px;
}

.teacher-details-profile-wrapper .teacher-social-links {
  margin-top: 5px;
  gap: 10px;
  font-size: var(--fs-md);
}

.pagination-wrapper {
  gap: 20px;
}

.pagination {
  display: flex;
  gap: 20px;
}

.pagination a {
  display: inline-block;
  border: 1px solid var(--clr-secondary-200);
  color: var(--clr-secondary-200);
  padding: 5px 10px;
  transition: var(--transition-fast);
}

.pagination-wrapper p {
  color: var(--clr-secondary-200);
}

.pagination-wrapper.secondary p {
  color: var(--clr-white-700);
}

.secondary .pagination a {
  display: inline-block;
  border: 1px solid var(--clr-white-700);
  color: var(--clr-white-700);
  padding: 5px 10px;
  transition: var(--transition-fast);
}

.pagination a:hover {
  background: var(--clr-secondary-200);
  color: var(--clr-white-700);
}
.pagination a.current {
  background: var(--clr-white-700);
  color: var(--clr-secondary-200);
}
.secondary .pagination a:hover {
  background: var(--clr-white-700);
  color: var(--clr-secondary-200);
}
.secondary .pagination a.current {
  background: var(--clr-secondary-200);
  color: var(--clr-white-700);
}

.SM_event-details.SM_home-events-wrapper {
  background-color: var(--clr-white-900);
  color: var(--clr-secondary-200);
}

/* .SM_event-details .SM_event-details-card {
} */

.SM_event-details .SM_details-images {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.SM_event-details .SM_event-img {
  min-height: 350px;
  max-height: 400px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.SM_event-details .SM_event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SM_event-details h2 {
  color: var(--clr-secondary-200);
  margin-bottom: 5px;
}
.SM_event-details p {
  margin-top: 5px;
  color: var(--clr-secondary-200);
}



/* ==== committee page ===== */
.SM_committee-lists .teacher-card {
    max-width: 335px; 
}

.SM_committee-lists .teacher-card .profile {
    max-width: 140px;
    height: 140px;
}
 


/* ================= 
      Device responsiveness
             ================== */

/* extra large monitor */
@media screen and (max-width: 1680px) {
}

/* large monitor */
@media screen and (max-width: 1440px) {
}

/* ===== small monitor ====== */
@media screen and (max-width: 1240px) {
  /* ======= Home page ===== */
  .SM_navlink-container {
    gap: 2%;
  }

  /* ====== home notice ===== */
  .SM_notice-info-inner {
    gap: 20px;
  }

  /* ====== site analytics section starts ===== */
  .SM_analytics-wrapper {
    min-height: 400px;
  }

  .SM_analytic-card {
    padding: 2rem;
  }

  /* ====== footer ========= */
  .SM_footer-logo {
    max-width: 500px;
  }

  .SM_footer-inner {
    flex-wrap: wrap;
  }

  /* ====== gallery page ==== */
  .swiper-slide {
    max-width: 400px;
    height: 300px;
  }

  .card-swiper {
    padding-bottom: 25px !important;
  }
}

/* tablets ( extra large )  */
@media screen and (max-width: 1023px) {
  .SM_header-top-inner .SM_left-logo,
  .SM_header-top-inner .SM_right-logo {
    display: none;
  }

  .SM_header-top-content {
    margin: 0 auto;
  }

  .SM_nav {
    display: none;
    padding-block: 0px;
  }

  /* ===== hamberger menu ===== */
  .SM_hamburger {
    display: block;
  }

  /* ====== sidebar ==== */
  .SM_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    transform: translateX(110%);
    transition: var(--transition-slow);
    top: 0px;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .SM_sidebar.show {
    transform: translateX(0%);
  }

  .SM_sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .SM_sidebar-inner {
    width: 100%;
    z-index: 10;
    gap: 10px;
    flex-grow: 1;
    overflow-y: auto;
    background-color: var(--clr-secondary-900);
    max-width: 300px;
  }

  .SM_sidebar-logo-wrap {
    padding: 20px;
  }

  .SM_sidebar-logo {
    max-width: 280px;
    width: 100%;
    padding-right: 20px;
  }

  .SM_sidebar-close {
    background-color: transparent;
    color: var(--clr-white-900);
    font-size: var(--fs-xl);
  }

  .SM_header-bottom {
    padding-block: 15px;
  }

  /* ====== home page ========= */
  .SM_banner-slider-wrap {
    min-height: 450px;
    height: 50vh !important;
    max-height: 600px !important;
  }

  .SM_banner-slider {
    height: 50vh !important;
    min-height: 450px !important;
  }

  /* ======= notice section ======= */
  .SM_authorities {
    gap: 20px;
  }

  /* ======= home events section starts ===== */
  .SM_home-events-container.even .event-card:nth-child(1),
  .SM_home-events-container.odd .event-card:nth-child(3) {
    width: 33.33%;
  }
  .SM_home-events-container.even .event-card:nth-child(2),
  .SM_home-events-container.odd .event-card:nth-child(1) {
    width: 33.33%;
  }
  .SM_home-events-container.even .event-card:nth-child(3),
  .SM_home-events-container.odd .event-card:nth-child(2) {
    width: 33.33%;
  }

  /* ====== SUccess rate section ====== */
  .SM_success-rate-wrapper .success-rate-content {
    width: 100%;
  }

  .SM_success-rate-wrapper .user-image {
    display: none !important;
  }

  /* ====== footer ========= */
  .SM_footer-logo {
    max-width: 450px;
  }

  /* ===== Our teachers ====== */
  .SM_home-our-teacher-wrapper .teachers-box {
    width: 60%;
  }

  .SM_home-our-teacher-wrapper .teacher-slider {
    height: 70px;
  }

  .SM_home-our-teacher-wrapper .teacher-slider img {
    max-height: 70px;
  }

  /* ==== single teacher section starts ====== */
  .teacher-details-profile-wrapper {
    margin-top: -180px;
  }

  .teacher-details-profile-inner .teacher-details-profile {
    max-width: 250px;
    height: 250px;
  }

  /* ====== gallery page ==== */
  .swiper-slide {
    max-width: 360px;
    height: 300px;
  }

  .card-swiper {
    padding-bottom: 20px !important;
  }

  /* ====== principle page ========== */
  .principal-saying-wrapper h3,
  .principal-saying-wrapper p {
    margin-bottom: 10px;
  }

  .principal-details-page .address {
    margin-top: -35px;
  }

  .principal-details-page .SM_school-intro-inner {
    flex-direction: column !important;
  }

  .principal-details-page {
    width: 100%;
  }

  .principal-details-page .SM_intro-text-container {
    width: 100%;
    overflow: hidden;
  }

  .SM_school-intro-wrapper .SM_intro-video {
    width: 100%;
  }

  .SM_school-intro-wrapper .SM_intro-video img {
    width: 100%;
  }
}

/* tablets ( medium )  */
@media screen and (max-width: 840px) {
  .SM_hamburger {
    font-size: var(--fs-xl);
  }

  /* ===== home page ===== */
  .SM_banner-slider {
    height: 80vh;
    max-height: 70vh;
    min-height: 700px;
  }

  /* ======= notice section ======= */
  .SM_notice-info-inner {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .SM_authorities {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
  }

  /* ====== site analytics section starts ===== */
  .SM_analytics-wrapper {
    min-height: 300px;
  }

  .SM_analytic-card {
    padding: 1.5rem;
  }

  .SM_analytic-card span {
    margin-top: 10px;
    font-size: var(--fs-xl);
  }

  .SM_analytic-card p {
    font-size: var(--fs-xs);
  }

  /* ====== SUccess rate section ====== */
  .SM_success-rate-inner .success-rate-analytics {
    align-items: center;
  }

  /* ======== class routing ======= */
  .class-routing-container {
    overflow-x: auto;
  }

  /* ====== footer ========= */
  .SM_footer-logo {
    max-width: 350px;
  }

  .SM_footer-logo a {
    max-width: 100%;
  }

  .SM_footer-logo a img {
    width: 100%;
    max-width: 100%;
  }

  /* ===== Our teachers ====== */
  .SM_home-our-teacher-wrapper .teachers-slider-container button::before {
    width: 80%;
    height: 80%;
  }

  .SM_home-our-teacher-wrapper .teacher-slider {
    margin: 0 10px;
  }

  /* ====== gallery page ==== */
  .swiper-slide {
    max-width: 320px;
    height: 300px;
  }
  .card-swiper {
    padding-bottom: 15px !important;
  }
}

/* phones ( extra large )  */
@media screen and (max-width: 767px) {
  /* ======== header content ===== */

  .SM_contact-mail {
    display: none;
  }

  .SM_header-top {
    display: none;
  }

  .SM_header-top-content h1 {
    font-size: var(--fs-2xl);
    margin-bottom: 10px;
  }

  .SM_header-top-content p {
    font-size: var(--fs-sm);
  }

  /* ====== home page ===== */

  .home .SM_banner-inner {
    height: 53vh;
  }

  .SM_banner-slider .SM_slider-content {
    bottom: 7%;
    padding: 15px;
    width: 95%;
  }

  .SM_banner-slider-wrap .slick-dots {
    bottom: 2%;
  }

  .SM_banner-slider-wrap .slick-dots li.slick-active {
    width: 10px;
    height: 10px;
  }

  .SM_banner-slider-wrap .slick-dots li {
    width: 6px;
    height: 6px;
  }

  /* ====== site analytics section starts ===== */
  .SM_analytics-wrapper {
    min-height: 200px;
  }

  .SM_analytics-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .SM_analytic-card {
    max-width: 48%;
  }

  /* ====== School/College intro section starts ===== */
  .SM_school-intro-inner {
    flex-direction: column;
    gap: 35px;
  }

  .SM_school-intro-wrapper .SM_intro-video {
    width: 100%;
  }

  .SM_intro-text-container {
    width: 100%;
  }

  /* ===== Our teachers ====== */
  .SM_home-our-teachers-container {
    flex-direction: column;
  }

  .SM_home-our-teacher-wrapper .large-teacher-image {
    max-width: 250px;
    margin: 0 auto;
    width: 100%;
  }

  .SM_home-our-teacher-wrapper .teachers-box {
    width: 100%;
  }

  .SM_home-our-teacher-wrapper .teacher-slider-wrapper {
    width: 100%;
    max-width: 345px;
  }

  .SM_home-our-teacher-wrapper .teachers-slider-container button {
    min-width: 30px;
    height: 30px;
  }

  .SM_home-our-teacher-wrapper .teacher-slider {
    height: 65px;
    margin: 0 10px;
  }

  /* ======= home events section starts ===== */
  .SM_home-events-container {
    margin-bottom: 20px;
    gap: 20px;
  }

  .SM_home-events-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .SM_home-events-container.even .event-card:nth-child(1),
  .SM_home-events-container.odd .event-card:nth-child(3) {
    width: 100%;
    max-width: 400px;
  }
  .SM_home-events-container.even .event-card:nth-child(2),
  .SM_home-events-container.odd .event-card:nth-child(1) {
    width: 100%;
    max-width: 400px;
  }
  .SM_home-events-container.even .event-card:nth-child(3),
  .SM_home-events-container.odd .event-card:nth-child(2) {
    width: 100%;
    max-width: 400px;
  }

  /* ====== faq section ====== */
  .SM_faq-wrapper .faq-content-container {
    width: 100%;
  }

  .SM_faq-wrapper .faq-img {
    display: none;
  }

  /* ====== footer ========= */
  .SM_footer-logo {
    max-width: 100%;
  }

  .SM_footer-inner {
    flex-wrap: wrap;
  }

  .SM_footer-logo a img {
    width: 100%;
    max-width: 350px;
  }

  /* ====== single teacher details page ===== */
  .teacher-details-profile-wrapper {
    margin-top: -160px;
  }

  .teacher-details-profile-inner .teacher-details-profile {
    max-width: 200px;
    height: 200px;
  }

  /* ====== gallery page ==== */
  .swiper-slide {
    max-width: 270px;
    height: 250px;
  }

  /* ===== ditital lab page ========== */
  .digital-lab-page .digital-lab-images div {
    width: 100%;
  }

  .digital-lab-page .digital-lab-images {
    height: 350px;
  }

  .digital-lab-page .digital-lab-images div:first-child {
    padding-right: 8px;
  }
  .digital-lab-page .digital-lab-images div:last-child {
    padding-left: 8px;
  }

  /* ===== principal details page ======= */

  .principal-details-page .address {
    margin-top: -40px;
  }

  /* .principal-details-page .address {
    margin-top: 0px;
  } */
}

/* phones ( small, medium ) */
@media screen and (max-width: 560px) {
  .SM_container {
    padding: 0 16px;
  }

  .SM_main-logo {
    max-width: 280px;
  }
  .SM_main-logo.squish {
    max-width: 220px;
  }

  .SM_header-bottom-inner .SM_small-logo h3 {
    font-size: var(--fs-base);
  }

  .SM_sidebar-inner {
    max-width: 100%;
  }

  /* ======= banner ======= */
  .home .SM_banner-inner {
    height: 53vh;
  }
  .SM_banner-slider .SM_slider-content h2 {
    font-size: var(--fs-lg);
  }

  .SM_slider-content p {
    display: none;
  }

  /* ===== notice section ======== */

  .SM_authority-card {
    padding: 10px;
  }
  .SM_authority-profile {
    height: 200px;
  }

  .SM_authority-info {
    bottom: 10px;
    padding: 4px 5px;
    overflow: hidden;
    width: calc(100% - 20px);
  }

  .SM_notice-container th,
  .SM_notice-container td {
    padding: 5px 6px;
    font-size: 14px;
    border-bottom: 1px solid var(--clr-white-700);
  }

  .SM_authorities {
    gap: 10px;
  }

  .SM_notice-container .publish-date .long-date {
    display: none;
  }
  .SM_notice-container .publish-date .short-date {
    display: block;
  }

  .SM_notice-container .post-date-heading {
    white-space: nowrap;
  }

  /* ====== School/College intro section starts ===== */
  .SM_school-intro-inner {
    gap: 25px;
  }

  /* ====== Success rate section ====== */
  .SM_success-rate-inner .success-rate-analytics {
    flex-direction: column;
  }

  .SM_success-rate-inner .progress-bar-container {
    width: 100%;
    max-width: 100%;
  }

  .SM_success-rate-inner .success-rate-analytics p {
    width: 100%;
  }

  /* ====== footer ========= */
  .SM_footer-logo {
    max-width: 100%;
  }

  .SM_footer-logo img {
    margin-bottom: 10px;
    margin-top: 0;
  }

  .SM_footer-logo p,
  .SM_footer p,
  .privacy-links .SM_footer p {
    font-size: 16px;
  }

  .SM_footer-logo a {
    width: 100%;
    display: block;
  }

  .SM_footer-logo a img {
    width: 100%;
  }

  .SM_footer-socials {
    width: 100%;
  }
  .SM_footer-links {
    width: 100%;
  }

  /* ====== single teacher details page ===== */
  .teacher-details-profile-wrapper {
    margin-top: -100px;
  }

  .teacher-details-profile-inner {
    flex-direction: column;
    align-items: start;
  }

  .teacher-details-profile-inner .address {
    color: var(--clr-secondary-700);
  }
  .teacher-details-profile-inner .teacher-details-profile {
    max-width: 140px;
    height: 140px;
  }
  .single-teacher.SM_banner-inner {
    height: 30vh;
    max-height: 500px;
    min-height: 250px;
    overflow: hidden;
  }

  .teacher-details-profile-inner i {
    color: var(--clr-secondary-700);
  }

  /* ========== contact us page ========= */
  .contact-us-page .SM_banner-inner {
    height: 55vh;
    max-height: 500px;
    min-height: 300px;
  }

  /* ====== gallery page ==== */
  .swiper-slide {
    max-width: 200px;
    height: 250px;
  }

  /* ===== ditital lab page ========== */

  .digital-lab-page .digital-lab-images {
    height: auto;
    flex-direction: column;
    gap: 25px;
  }

  .digital-lab-page .digital-lab-images div:first-child {
    padding-right: 0px;
    height: 300px;
  }
  .digital-lab-page .digital-lab-images div:last-child {
    padding-left: 0px;
    height: 300px;
  }

  /*  */
  .SM_event-details .SM_details-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .SM_event-details .SM_event-img {
    min-height: 100%;
  }
}


/* ==== XI result page ====== */
     .SM_result-bord-wrapper {
        background-color: var(--clr-white-400);
        padding-block: 20px;
      }
      .SM_result-bord-wrapper .section-heading {
        margin-bottom: 30px;
        gap: 20px;
      }

      .SM_result-container {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: var(--spacing-xxs);
      }

      .SM_result-container:last-child {
        margin-bottom: 0;
      }

      .SM_result-container .heading {
        margin-bottom: 20px;
      }

      .SM_result-container .heading h4:last-child {
        color: green;
        background-color: rgb(208, 231, 208);
        padding: 4px 10px;
        border-radius: 10px;
      }

      .SM_result-container .content {
        flex-wrap: wrap;
        gap: 10px;
      }

      .SM_result-container .content div {
        min-width: 200px;
        width: 100%;
        max-width: 250px;
      }

/* ==== class routine page ========= */
.class-routine-container {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.class-routine-container th,
.class-routine-container td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
}

.class-routine-container tr:first-child {
  background-color: var(--clr-primary);
  color: #fff;
  font-weight: bold;
}

.class-routine-container tr:first-child:hover {
  background-color: var(--clr-primary);
}

.class-routine-container tr:nth-child(even) {
  background-color: #f9f9f9;
}

.class-routine-container tr:hover {
  background-color: #f1f7ff;
}

.class-routine-container td:first-child {
  font-weight: 600;
  text-align: left;
}

@media screen and (max-width: 1150px) {
  .class-routine-wrapper {
    width: 100%;
    max-width: 1125px;
    overflow-x: auto;
  }

  .class-routine-container {
    min-width: 1125px;
  }
}
