@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Helvetica Compressed";
  src: url("/public/fonts/helvetica-compressed-5871d14b6903a.otf")
    format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}
::selection {
  color: #fff;
  background: #a24281;
}
ol,
ul {
  padding-left: 0;
  font-family: "Geist", sans-serif;
}
html,
body {
  overflow-x: hidden;
  font-family: "Geist", sans-serif;
}
body {
  overflow-x: hidden !important;
  background-color: #fff;
}
h1,
h2,
h3 {
  font-family: "Helvetica Compressed", Arial, sans-serif;
}
h4,
h5,
h6 {
  font-family: "Geist", sans-serif;
  font-weight: bold;
}
li {
  font-family: "Geist", sans-serif;
}
p {
  font-size: 16px;
  line-height: 28px;
  margin: 0px;
  color: #333333;
  font-weight: 400;
}
ul li {
  font-size: 15px;
  line-height: 25px;
  list-style-type: none;
}
h1 {
  color: #cdac53;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 35px;
}
li,
a,
i,
article,
ul,
h3,
img {
  transition: all 0.5s;
}
ul {
  margin: 0px;
}
input {
  outline: none;
}
a {
  text-decoration: none;
}
a:hover,
img:hover,
i:hover,
article:hover,
ul:hover,
h3:hover,
li:hover {
  transition: all 0.5s;
}
.clr {
  clear: both;
  height: both;
}
.container-fluid-theme {
  padding: 0 80px;
}
.section-title {
  text-align: center;
  color: #216DA8;
}
.section-title .subtitle {
  color: #333333;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 400;
}
.section-title h2 {
  color: #216da8;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ===========main pad=========== */
.about-custom {
  padding: 0 130px;
}
/* ------------------------------------
Btn 
---------------------------------------*/
.readmore-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 221, 129, 1) 0%,
    rgba(240, 187, 43, 1) 100%
  );
  color: #333333;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.readmore-row a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}
.readmore-row a:hover {
  background: #1f5688;
  color: #fff;
}
.readmore-row a:hover i {
  transform: translateX(4px);
}
.whitebg {
  border-left: 8px solid rgb(255, 255, 255) !important;
}
.whitebg a .arrow {
  border-left: 8px solid rgb(255, 255, 255);
}
.btn-custom {
  color: #111111;
  padding: 15px 18px;
  font-size: 14px;
  border-radius: 10px;
  margin-top: 30px;
  background: linear-gradient(180deg, #ffcf68 0%, #f0a44c 100%);
  text-transform: uppercase;
  font-weight: bold;
}
.btn-custom:hover {
  background-color: #e94b4b;
  border-color: #e94b4b;
  color: #fff;
}
/* ------------------------------------
Highlights
---------------------------------------*/
.highlights-sec {
  /* background-color: #fff7ca; */
}
.highlight-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  overflow: hidden;
  background: #fff7ca;
}
.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 55px;
  height: 30px;
}
.highlight-icon img {
  width: 18px;
  height: auto;
  display: block;
}
.marquee-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}
.marquee-content {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
.notice-link {
  color: #222;
  text-decoration: none;
  font-size: 14px;
  margin: 5px 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.notice-link:hover {
  color: #000;
}
.notice-link i {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  font-size: 15px;
  padding-top: 3px;
  background: #0d385f;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.highlight-separator {
  color: #777;
  margin: 0 15px;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .highlight-icon img {
    width: 16px;
  }
  .notice-link {
    font-size: 13px;
  }
  .notice-link i {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
  .highlight-separator {
    margin: 0 10px;
  }
}
/* ------------------------------------
TopMid
---------------------------------------*/
.TopMidsec {
  display: flex;
  justify-content: space-between;
}
.TopMid {
  padding: 3px 0 3px;
}
.TopMid .row {
  margin: 0;
}
.topHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 8px 0;
  width: 100%;
  margin-top: -20px;
}
.contactInfo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contactInfo a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}
.contactIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7c400;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}
.topMenu {
  display: flex;
  align-items: center;
  gap: 0;
}
.topMenu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topMenu ul li {
  position: relative;
  padding: 0 10px;
  
}
.topMenu ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #d5d5d5;
}
.topMenu ul li a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
      BACKGROUND-COLOR: #FFF098;
    PADDING: 10PX 10PX;
}
.topMenu ul li a:hover {
  color: #0d385f;
}
.parentLogin {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    rgba(255, 221, 129, 1) 0%,
    rgb(247 199 69) 100%
  );
}
.parentLogin span {
  font-size: 12px;
}
.parentLogin img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.parentLogin:hover {
  background: #e5b52f;
  color: #222;
}
.socialIcons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socialIcons a {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2b4c9b;
  text-decoration: none;
  font-size: 16px;
}
.socialIcons a:hover {
  transform: scale(1.05);
}
/* ------------------------------------
Slider Secction
---------------------------------------*/
/* Slider Carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffffbb;
  border-radius: 50%;
  opacity: 1;
  color: #333333 !important;
}
.carousel-control-prev,
.carousel-control-next {
  color: #333333 !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
  background-size: 100% 100%;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #ffffff;
}
.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
}
.carousel-wrapper {
  position: relative;
}
/* Slider Carousel News Sec */
.sldsec img {
  height: 700px;
  object-fit: cover;
}
/* ------------------------------------
Navbar
---------------------------------------*/
.topHeader {
  gap: 20px;
}
.row.navsec {
  margin-top: -20px;
  width: 850px;
  width: fit-content;
}
.menu li:first-child a:hover {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.menu li:first-child {
  margin-left: 0;
}
.navsec > * {
  padding: 0px;
}
.menu li:first-child a {
  padding-left: 15px;
}
.menu li:first-child {
  margin-left: 0;
}
.menu li:first-child a {
  padding-left: 15px;
}
.menu li:first-child a:hover {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li:last-child a {
  padding-right: 15px;
}
.menu li:last-child a:hover {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.sub-menu li:first-child a {
  padding-left: 0px !important;
}
/*--1st li and last li radius hover close--*/
.navsec {
  border-radius: 20px;
  position: absolute;
  z-index: 9;
  right: 80px;
  margin-top: -25px;
background: linear-gradient(135deg, #318DD9 0%, #12558D 100%);
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.navsec > * {
  position: relative;
  z-index: 1;
}
.logocenter {
  display: flex;
  align-items: center;
  padding: 5px 0px;
}
.mar-top {
  position: relative;
}
.header {
  margin: 0 auto;
  width: 100%;
}
.top-menu input {
  background: #fff;
  padding-left: 10px;
}
.top-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
}
.top-menu ul li {
  margin-right: 0px;
  font-weight: 400;
}
.top-menu ul li:nth-last-child {
  margin-right: 0px;
}
.top-menu ul li a {
  color: #000;
  padding: 6px 6px;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.top-menu ul li:nth-child(6) a {
  background: #1a119b;
}
.top-menu ul li a.active {
  background: #e52b50;
  color: #fff;
}
.top-menu ul li a:hover {
  color: #015027;
}
.top-menu ul li:nth-child(1) a {
  border: none;
  text-transform: capitalize;
  border-radius: 15px;
  background: #eae43e;
  background: linear-gradient(
    178deg,
    rgba(234, 228, 62, 1) 0%,
    rgba(226, 171, 54, 1) 100%
  );
  padding: 10px 15px 10px 15px;
}
.li.cta1 a {
  font-weight: 400;
}
.top-menu ul li {
  position: relative;
  padding-right: 12px;
  margin-right: 8px;
}
.top-menu ul li::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  font-weight: 400;
}
.top-menu ul li:last-child::after {
  content: "";
}
/*--Navigation--*/
nav {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
}
.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  position: relative;
  margin: 0 15px;
}
.menu li a {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0 5px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 200;
  transition: all 0.3s ease;
}
.menu li a:hover {
  color: #333;
  border-radius: 0px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 247, 1) 0%,
    rgba(229, 204, 101, 1) 100%
  );
}
.menu li a.active {
  color: #1f5994;
  font-weight: bold;
}
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 200px;
  z-index: 9999;
}
.sub-menu li {
  background: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.sub-menu li a {
  padding: 5px 10px;
  color: #000;
  font-size: 12px;
  height: auto !important;
}
.has-submenu:hover > .sub-menu {
  display: block;
}
.has-submenu i {
  font-size: 12px;
}
.menu {
  display: none;
  width: 100%;
  position: relative;
  z-index: 9999;
  margin: 0px;
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu li:hover > a {
  color: #000000 !important;
  background: transparent;
}
.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  width: max-content;
  position: absolute;
  left: 0px;
  background: #fff;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.2s ease-out;
  padding: 10px;
}
.menu ul:after {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
  border-bottom: solid 1px #ddd;
  width: 240px;
}
.menu ul li a {
  display: block;
  color: #000000;
  background: #fff;
  padding: 5px 0px;
}
.menu ul li a:hover,
.menu ul li:hover > a {
  margin-left: 5px;
}
.menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
.menu ul ul {
  left: 257px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
}
.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 6px;
  margin-top: -6px;
}
.menu li > ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
.menu ul li a {
  font-size: 15px;
  font-weight: 300;
}
.menu ul li a span {
  font-style: italic;
  color: #e9274e;
}
.responsive-menu {
  display: none;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  z-index: 10000;
  border: none;
  text-align: left;
}
.menu.active {
  display: block;
}
.responsive-menu:focus,
.responsive-menu:active {
  text-decoration: none;
  color: #fff;
}
a.homer {
  background: transparent;
  color: #089337 !important;
}
.has-submenu > a:after {
  content: " ▼";
  float: right;
  font-size: 9px !important;
  padding-left: 3px;
}
@media (max-width: 1399.98px) {
  .menu li a {
    height: 65px;
    padding: 0 5px;
    font-size: 15px;
  }
  .menu li {
    margin: 0 4px;
  }
  nav {
    height: 55px;
  }
  .menu li a {
    height: 55px;
  }
  .menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .menu li {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  nav {
    display: block;
    height: auto;
  }
  .menu {
    display: block;
    margin-bottom: 0px;
    float: inherit;
    width: 100%;
    margin: 0 auto;
  }
  .menu ul li a {
    text-align: left;
  }
  .menu {
    display: block;
    margin-bottom: 0px;
    float: inherit;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .mainWrap {
    width: auto;
    padding: 50px 20px;
  }
  .menu {
    display: none;
    position: relative;
    z-index: 9999;
    background: white;
  }
  nav {
    margin: 0;
    background: none;
  }
  .menu li {
    display: block;
    margin: 0;
    padding-left: 15px;
  }
  .menu li a {
    padding: 4px 3px;
    font-size: 14px;
    background: #fff;
    color: #333333;
    font-weight: 600;
  }
  .menu ul {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    transform: initial;
  }
  .menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    transform: initial;
  }
  .menu ul ul {
    left: 0;
    transform: initial;
  }
  .menu li > ul ul:hover {
    transform: initial;
  }
  header .container {
    width: 100%;
    max-width: 100%;
  }
  .menu {
    border-radius: 0px;
  }
  .container-fluid.navsec {
    position: relative;
    margin-top: 0px;
    padding: 0px;
    z-index: 9;
  }
  .menu ul li {
    width: 100%;
  }
  .responsive-menu {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: left;
    z-index: 1000;
    background: transparent;
  }
  .menu {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .menu.active {
    max-height: 2000px;
  }
  .menu li {
    display: block;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
  .sub-menu {
    position: relative;
    left: 0;
    top: 0;
    display: none;
  }
  .sub-menu.active {
    display: block;
  }
  .menu li a {
    padding-left: 15px;
    font-size: 14px;
    background: #fff;
    color: #444343;
    font-weight: 500;
  }
  .has-submenu > a:after {
    content: " ▼";
    float: right;
  }
  .menu .loginbg a {
    background-color: #ff5b5b !important;
  }
  .menu .loginbg a {
    color: white !important;
  }
  .menu li a:hover {
    background: transparent;
  }
  nav {
    height: auto;
  }
  .menu li a {
    height: auto;
    padding-left: 0px;
  }
  .menu li:first-child a {
    padding-left: 0px;
  }
}
@media (min-width: 992px) {
  .menu {
    display: flex !important;
    flex-direction: row;
    max-height: none !important;
  }
  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
  }
  .has-submenu:hover > .sub-menu {
    display: block;
  }
  .responsive-menu {
    display: none;
  }
  .menu {
    display: flex !important;
    flex-direction: row;
  }
}
/* -----------------------------------
About School
---------------------------------------*/
.AboutSec {
  padding: 25px 0 35px;
  /* background-image: url("https://entab-s3-bucket1.s3.ap-south-1.amazonaws.com/DEMO1/public/Images/AboutBg.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* LEFT IMAGE */
.AboutImage {
  background: #fff098;
  padding: 8px;
  width: 100%;
  position: relative;
}
.AboutImage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.AboutArea {
  padding-left: 20px;
}

.AboutArea h3,
.AboutArea h4 {
  text-align: left !important;
}

.section-title.textleft {
  text-align: left;
  margin-bottom: 10px;
}

.section-title.textleft .subtitle {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 6px;
  color: #555;
  font-weight: 500;
}

.section-title.textleft h2 {
  text-align: left;
  margin: 0 0 12px;
  color: #216da8;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
}
.AboutArea p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

/* FEATURES */
.AboutFeatures {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 25px;
}

.AboutFeature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.FeatureIcon {
  width: 60px;
  height: 60px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FeatureIcon i {
  font-size: 38px;
  color: #216da8;
}

.FeatureContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.FeatureContent h5 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
}

.FeatureContent a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 22px;
  padding: 0 7px;
  background: #fff098;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.FeatureContent a:hover {
  background: #216da8;
  color: #fff;
}

/* READ MORE */
.readmore-row {
  margin-top: 5px;
}

.readmore-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 30px;
  padding: 0 12px;
  background: #ffbd22;
  color: #222;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.readmore-row a:hover {
  background: #216da8;
  color: #fff;
}

/* TABLET */
@media (max-width: 991px) {
  .AboutSec {
    padding: 45px 0;
  }

  .AboutImage {
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .AboutImage img {
    height: 300px;
  }

  .AboutArea {
    padding-left: 0;
  }

  .AboutFeatures {
    flex-wrap: wrap;
  }

  .AboutFeature {
    flex: 0 0 calc(50% - 10px);
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .AboutSec {
    padding: 35px 0;
  }

  .AboutImage {
    padding: 6px;
  }

  .AboutImage img {
    height: 220px;
  }

  .section-title.textleft h2 {
    font-size: 19px;
  }

  .AboutArea p {
    font-size: 12px;
    line-height: 1.7;
  }

  .AboutFeatures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }

  .AboutFeature {
    width: 100%;
    flex: none;
  }

  .FeatureIcon {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .FeatureIcon i {
    font-size: 30px;
  }

  .FeatureContent h5 {
    font-size: 9px;
    white-space: normal;
  }

  .FeatureContent a {
    height: 20px;
    font-size: 9px;
  }
}
/* -----------------------------------
Events & Circular
---------------------------------------*/
.EventsCircular {
  padding: 0px 0px 70px 0px;
}
.eventtop {
  display: flex;
  align-items: flex-end;
  width: 95%;
  justify-content: space-between;
  margin: 0 auto;
  gap: 10px;
}
.EventSec {
  background: #fff;
  border-radius: 42px 42px 5px 5px;
  overflow: hidden;
  height: 500px;
  box-shadow: rgb(0 0 0 / 6%) 1px 12px 20px 8px;
}
.EventHead {
  height: 55px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  background: linear-gradient(90deg, #216da8, #4a9bd1);
  border-radius: 100px;
  margin: 18px auto 0px;
  border: solid 1px #216da8;
  width: 80%;
}
.EventHead h4 {
  color: #ffffff;
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  text-align: left;
  padding-left: 20px;
}
.EventBody,
.CircularBody {
  padding: 18px;
}
.EventItem {
  display: flex;
  gap: 15px;
  padding: 12px 0;
}
.EventItem:last-child {
  border: none;
}
.EventIcon {
  flex-shrink: 0;
}
.EventIcon img {
  width: 18px;
}
.EventContent {
  width: 100%;
}
.EventTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}
.EventTop h5 {
  margin: 0;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  font-family: "Geist", sans-serif;
}
.EventTop span {
  color: #e31010;
  font-size: 14px;
}
.EventMid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 2px;
}
.EventMid p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  color: #333;
}
.EventMid span {
  color: #e31010;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.EventMid span i {
  padding-right: 5px;
}
.EventInfo {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.EventInfo span {
  color: #555555;
  font-size: 14px;
  background-color: #edf7ff;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 500;
}
/* Circular */
.CircularItem {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.CircularItem:last-child {
  border: none;
}
.CircularItem img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.CircularItem p {
  flex: 1;
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  text-align: left;
}
.CircularItem a {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: #216da8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.CircularItem a:hover {
  background: #0049bd;
  color: #fff;
}
.CircularItem i {
  font-size: 18px;
  transform: rotate(45deg);
}
/* ------------------------------------
Mission Vision
---------------------------------------*/
/* .MissionVision {
  padding: 0 0 70px 0;
}
.MVContent {
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  border-radius: 0 30px 30px 0;
}
.Vision {
  border-radius: 30px 0 0 30px !important;
}
.MVContent {
  background: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 15px;
  justify-content: space-around;
}
.MVIcon {
  width: 55px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.MVContent p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.MVBtn {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(48, 101, 202, 1) 0%,
    rgba(24, 50, 100, 1) 100%
  );
  color: #fff;
  font-weight: 500;
  padding: 1px 0;
  font-size: 18px;
  border-radius: 5px;
}
.MVImage {
  height: 100%;
  border-left: solid 3px #fff;
  border-right: solid 3px #fff;
}
.MVImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */
/* -----------------------------------
   Quick Links
----------------------------------- */
.QuickLinks {
  padding: 10px 30px 40px;
}
.QuickItem {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Shine layer */
.QuickItem::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
}

/* Hover Shine Animation */
.QuickItem:hover::before {
    animation: quickItemShine 0.9s ease-in-out;
}

@keyframes quickItemShine {
    0% {
        left: -120%;
    }

    100% {
        left: 130%;
    }
}

.QuickImg {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.QuickImg img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* .QuickItem:hover .QuickImg img {
  transform: scale(1.05);
} */

.QuickTitle {
  width: 100%;
  padding: 18px 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.QuickReadMore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: #ffc42b;
  color: #333;
}

.QuickReadMore i {
  transition: transform 0.3s ease;
}

.QuickReadMore:hover i {
  transform: translateX(5px);
}

/* Large screens - 5 items in one row */
@media (min-width: 992px) {
  .QuickLinks .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .QuickImg img {
    height: 236px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .QuickLinks {
    padding: 40px 0;
  }

  .QuickImg img {
    height: 220px;
  }

  .QuickTitle {
    font-size: 16px;
  }
}
/* -----------------------------------
   Quick Links
----------------------------------- */
.UsefulLinks {
  padding: 70px 0;
}
.UsefulRowTop {
  padding-bottom: 20px;
}
.UsefulRow {
  padding-top: 10px;
  padding-bottom: 10px;
}
.UsefulItem {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: 0.35s;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 1) 0%,
    rgba(255, 237, 188, 1) 100%
  );
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.UsefulItem::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
}
.UsefulRowTop .col-lg-2:last-child .UsefulItem::after {
  display: none;
}
.UsefulRowBottom .col-lg-2:last-child .UsefulItem::after {
  display: none;
}
.UsefulItem img {
  width: 60px;
  transition: 0.35s;
  margin-bottom: 12px;
}
.UsefulItem h6 {
  margin-top: 3px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  font-family: "Geist", sans-serif;
  text-transform: uppercase;
  line-height: 20px;
}
.UsefulItem:hover {
  transform: translateY(-6px);
}
.UsefulItem:hover img {
  transform: scale(1.12);
}
.UsefulItem:hover h6 {
  color: #173d76;
}

/* ------------------------------------
School Topper
---------------------------------------*/
.mesdesk-section {
  padding: 0 0 0px;
}
.message-card {
  height: 100%;
  background: #fff;
  padding: 15px 15px 15px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.message-header {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 160px;
}
.message-image {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #f1f1f1;
}
.message-info {
  padding: 37px 15px 0 25px;
}
.message-info h5 {
  margin: 0 0 8px;
  color: #17376d;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.message-info h4 {
  margin: 0 0 5px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
}
.message-info p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 2px;
}
.quote-icon {
  position: absolute;
  right: 35px;
  top: 51px;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: #1476d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.quote-icon i {
  transform: translateY(-1px);
}
.message-content {
  padding-top: 5px;
}
.message-content p {
  margin: 0 0 20px;
  color: #333;
  font-size: 16px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #ffd85c, #ffbe27);
  color: #222;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.read-more span {
  font-size: 19px;
  line-height: 1;
}
.read-more:hover {
  color: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 190, 39, 0.3);
}

/* ------------------------------------
Topper Birthaday Sec
---------------------------------------*/
.TopperBirthadaySec {
  padding: 0px 0px 70px 0px;
}
.TopperSec {
  padding: 10px 0px 50px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.topper-img-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px 0 5px;
}
.topper-info {
  padding-top: 10px;
}
.topper-score {
  color: #333333;
  font-weight: 600;
  font-size: 20px;
}
.Student-name {
  color: #333333;
  font-size: 17px;
  font-weight: normal;
}
.subject-name {
  color: #666666;
  font-style: italic;
  font-size: 16px;
}
.topper-border {
  position: relative;
  width: 189px;
  height: 189px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topper-img {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.topper-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(https://entab-s3-bucket1.s3.ap-south-1.amazonaws.com/DEMO1/public/Images/border-topper.png);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  transition:
    transform 0.8s ease,
    background-image 0.3s ease;
  z-index: 1;
}
.topper-border:hover::before {
  background-image: url(https://entab-s3-bucket1.s3.ap-south-1.amazonaws.com/DEMO1/public/Images/border-topper-hover.png);
  transform: rotate(360deg);
}
.arrownone .slick-prev,
.arrownone .slick-next {
  display: none !important;
}
.TopperBirthadaySec .readmore-row a .arrow {
  border-left: 8px solid #f1eeff;
}
.slider-arrow-center {
  justify-content: center;
}
.slider-arrow {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/*------------------ upcoming birthday=================== */
.BirthdayImg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 5px;
}

.BirthdayRing {
  position: relative;
  width: 189px;
  height: 189px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image layer */
.BirthdayRing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/Images/bg_bday.png");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 1;
}

/* Student image (circular, on top) */
.BirthdayRing .topper-img {
  width: 177px;
  height: 177px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.BirthdayDate {
  margin-top: 44px;
  text-align: center;
  font-weight: 700;
  color: #216DA8 ;
  font-size: 18px;
}
/* ------------------------------------
Gallery
---------------------------------------*/
.GallerySec {
  padding: 0;
}

/* .GallerySec .container {
  max-width: 1200px;
} */

.HomeGallery {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  background: #fff;
  padding: 5px;
  border: 1px solid #e1d8df;
}

.HomeGallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay hidden below */
.HomeGallery .overlay {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;

  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(10, 35, 58, 0.82);
  color: #fff;

  transform: translateY(100%);
  transition: transform 0.45s ease-in-out;

  z-index: 2;
}

/* Slide overlay from bottom to top */
.HomeGallery:hover .overlay {
  transform: translateY(0);
}

.HomeGallery .overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
}
/* ------------------------------------
Footer
---------------------------------------*/
/* _-------footer------ */
.footer {
  background: #315d91;
  background-size: 100% 100%;
  /* padding: 30px 80px; */
  position: relative;
  color: #fff;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* gap: 24px; */
}
.footer-box {
   display: flex;
  justify-content: center;
  align-items: center;
}
.ftr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}
.ftr-crest {
  width: 92px;
  height: auto;
}
.ftr-school-name {
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
}
.ftr-school-name h3,
.ftr-school-name h4 {
  margin: 0 0 4px;
  font-size: 30px !important;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}
.ftr-school-name span {
  display: block;
  font-size: 18px !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #fff;
  opacity: 0.95;
}
.ft-socialMedia {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ft-socialMedia li {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
}
.-ftsocialMedia a,
.addr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-social-icon,
.ft-socialMedia li img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  display: block;
}
.social-media-phone {
  display: none;
}
.footer h3 {
  font-size: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #FFC42B;
  text-align: left;
}
.quick-link-wrap {
  display: flex;
  gap: 11px;
}
.quick-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-link ul li {
  padding-bottom: 10px;
}
.quick-link ul li a {
  font-family: "Mona Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.quick-link ul li a::before {
  content: "";
  width: 0;
  height: 0;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}
.quick-link ul li a:hover,
.addr-text a:hover,
.copyright a:hover {
  text-decoration: underline;
}
.address p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: #fff;
}
.address p:last-child {
  margin-bottom: 0;
}
.addr-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 1px;
}
.addr-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.addr-text,
.addr-text a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.map iframe {
  width: 100%;
  height: 220px;
  border: 4px solid #FFC32F;
  border-radius: 4px;
  display: block;
}
.copyright {
  background: #fdf6ec;
  color: #315d91;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
}
.copyright a {
  color: #315d91;
  font-weight: 600;
  text-decoration: none;
}
/* ==============================
   APP DOWNLOAD FOOTER
============================== */

.app-download-card {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.app-download-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

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

.app-mobile-img {
  flex: 0 0 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mobile-img img {
  width: 105px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.app-download-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  top: -10px;
}

/* ==============================
   APP STORE / GOOGLE PLAY
============================== */

.app-store-btn,
.google-play-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: flex-end;

      background: rgba(255, 255, 255, 0.8);
    padding:1px 5px;
    border-radius: 10px;
    width: 96%;
    margin-bottom: 5px;
}


.app-store-btn img,
.google-play-btn img {
  width: 100%;
  max-width: 195px;
  height: auto;
  display: block;
}

.app-store-btn:hover,
.google-play-btn:hover {
  transform: translateY(-2px);
}

/* ==============================
   BOTTOM BUTTONS
============================== */

.app-bottom-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}

.school-code-btn,
.portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 8px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* School Code */
.school-code-btn {
  background: #ffffff;
  color: #222;
}

/* Portal */
.portal-btn {
  background: #f5b400;
  color: #111;
}

/* Hover */
.school-code-btn:hover {
  background: #eeeeee;
  color: #111;
}

.portal-btn:hover {
  background: #ffc107;
  color: #111;
}

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

@media (max-width: 991px) {

  .app-download-wrap {
    max-width: 350px;
  }

  .app-mobile-img {
    flex: 0 0 115px;
  }

  .app-mobile-img img {
    width: 115px;
  }

  .app-download-content {
    max-width: 210px;
  }
}

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

@media (max-width: 575px) {

  .app-download-wrap {
    justify-content: flex-start;
    gap: 10px;
  }

  .app-mobile-img {
    flex: 0 0 95px;
  }

  .app-mobile-img img {
    width: 95px;
  }

  .app-download-content {
    max-width: 190px;
    gap: 7px;
  }

  .app-store-btn img,
  .google-play-btn img {
    max-width: 190px;
  }

  .school-code-btn,
  .portal-btn {
    font-size: 12px;
    padding: 4px 7px;
  }

  .app-bottom-buttons {
    gap: 4px;
  }
}
.app-store-btn,
.google-play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 74%;
}

.store-image {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.store-text p {
  margin: 0;
  padding: 0;
}

.store-text p:first-child {
  font-size: 17px;
  font-weight: 500;
}

.store-text p:last-child {
  font-size: 18px;
  font-weight: 600;
}
.app-store-icon {
  height: 27px;
  width: 27px;
}
/* =======header======= */
.contactInfo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactInfoInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contactItem i {
  font-size: 16px;
}

.contactItem span {
  font-size: 14px;
}
.topMenu a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 8px 5px;
}




.topMenu .row {
  display: flex;
  align-items: center;
}

.topMenuItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topMenuItem:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #d5d5d5;
}

.topMenuItem a {
  display: block;
  text-decoration: none;
  text-align: center;
}


/* ------------------------------------
Media Quiry
---------------------------------------*/




@media (max-width: 1800px) {

.store-text p:first-child {
    font-size: 15px;
    font-weight: 500;
}
}
@media (max-width: 1700px) {
  .QuickImg img {
    height: 236px;
  }
      .store-text p:first-child {
        font-size: 13px;
 
    }
}
@media (max-width: 1600px) {
        .store-text p:first-child {
        font-size: 11px;
    }
   
    .store-text p:last-child {
    font-size: 16px;
    font-weight: 600;
}
  }
@media (max-width: 1500px) {
  .store-text p:first-child {
        font-size: 9px;
        font-weight: 500;
    }
  .QuickImg img {
    height: 208px;
  }
        /* .store-text p:first-child {
        font-size: 10px;
        font-weight: 500;
    } */
        .store-text p:last-child {
        font-size: 14px;
        font-weight: 600;
    }
}
@media (max-width: 1399.98px) {
  .QuickImg img {
    height: 289px;
  }
  .FeatureContent h5 {
    font-size: 11px;
  }
  .QuickTitle {
    font-size: 14px;
  }
  .contactInfo a {
    font-size: 14px;
  }
  .parentLogin {
    font-size: 14px;
  }
  .topMenu ul li a {
    font-size: 14px;
  }
  .specialWing {
    font-size: 13px;
  }
  .socialIcons a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  p {
    line-height: 25px;
  }
  .EventHead h4 {
    font-size: 21px;
  }
  .EventTop h5 {
    font-size: 15px;
    padding-bottom: 2px;
  }
  .EventMid p {
    font-size: 14px;
    line-height: 20px;
  }
  .EventInfo span {
    font-size: 13px;
  }
  .EventMid span {
    font-size: 12px;
  }
  .CircularItem p {
    font-size: 14px;
  }
  .CircularItem a {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .QuickItem h6 {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .QuickBtn {
    padding: 7px 9px;
    font-size: 13px;
  }
  .UsefulItem img {
    width: 40px;
  }
  .UsefulItem h6 {
    margin-top: 0px;
    font-size: 14px;
    line-height: 18px;
  }
  .MVContent p {
    font-size: 14px;
  }
  .MVBtn {
    padding: 7px 0;
  }
  .TopperTitle {
    font-size: 23px;
  }
  .TopperCard h5 {
    font-size: 20px;
    font-size: 17px;
  }
  .TopperCard p {
    font-size: 16px;
  }
  .TopperCard span {
    font-size: 16px;
  }
  .contact-info li a {
    font-size: 15px;
  }
  .footer-widget h3 {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .contactItem span {
    font-size: 13px;
}
  .AboutImage img {
    height: 500px;
  }
  .section-title.textleft .subtitle {
    text-align: center;
  }
  .section-title.textleft h2 {
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .about-custom {
    padding: 0px 21px;
  }
  .AboutImage img {
    height: 423px;
  }
  .navsec {
    right: 10px;
    left: 10px;
    margin-top: 10px;
    margin: 9px auto;
  }
  .topMenu ul li {
    padding-right: 10px;
    margin-right: 10px;
  }
  .row.navsec {
    margin-top: 0px;
    width: 100%;
    margin: 0 auto;
  }
  .navsec {
    position: relative;
  }
  .topHeader {
    margin-top: 0px;
    flex-wrap: wrap;
    padding: 4px 0;
    gap: 4px;
    width: 100%;
  }
  .rightBox {
    padding: 6px 4px;
  }
  .socialIcons {
    gap: 3px;
  }
  .sldsec img {
    height: auto;
  }
  .message-info {
    padding-left: 15px;
  }
  .quote-icon {
    right: 15px;
  }
  .message-content p {
    font-size: 15px;
  }
  .message-info h5 {
    font-size: 15px;
  }
  .message-info p {
    font-size: 13px;
    letter-spacing: 0px;
  }
  .message-info h4 {
    font-size: 13px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991.98px) {
      .contactItem span {
        font-size: 10px;
    }
  .section-title.textleft h2 {
    font-size: 21px;
  }
  .AboutImage img {
    height: 348px;
  }
  .AboutSec {
    padding: 30px 0px 30px 0px;
  }
  .EventsCircular {
    padding: 0px 0px 30px 0px;
  }
  .UsefulLinks {
    padding: 30px 0;
  }
  .Topper {
    padding: 30px 0;
  }
  .GallerySec {
    padding: 30px 0px 0px 0px;
  }
  .GallerySec .readmore-row {
    padding-bottom: 30px;
  }
  .EventSec {
    height: auto;
    margin-bottom: 30px;
  }
  .EventTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .UsefulRowTop {
    border-bottom: none;
  }
  .UsefulItem {
    min-height: 120px;
    padding: 15px;
  }
  .UsefulItem::after {
    display: none;
  }
  .UsefulItem img {
    width: 50px;
  }
  .UsefulItem span {
    font-size: 15px;
  }
  .UsefulItem h6 {
    font-size: 14px;
  }
  .MVContent {
    padding: 30px 20px;
  }
  .container-fluid-theme {
    padding: 0 40px;
  }
  .QuickLinks {
    padding: 0px 40px 0;
  }
  .topMenu {
    display: flex;
    justify-content: center;
  }
  .headerBottom {
    justify-content: center;
    align-items: center;
  }
  .TopMid {
    padding: 4px 0 4px;
  }
  .EventsCircular .g-5 {
    --bs-gutter-y: 15px;
  }
  .QuickLinks {
    padding: 10px 20px 35px;
  }
  .QuickImg img {
    height: 237px;
  }
}
@media (max-width: 767.98px) {
  .topHeader {
        gap: 9px;
        margin-top: 19px;
  }
  .quick-link ul li a {
   
    font-size: 13px;
   
}
.addr-text, .addr-text a {
    font-size: 13px;
   
}
  .container-fluid-theme {
    padding: 0 15px;
  }
  .TopMidsec {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .topHeader {
    justify-content: center;
  }
  .topHeader {
    gap: 9px;
  }
  .EventInfo span:nth-child(3) {
    flex-basis: 100%;
  }
  .mesdesk-section {
    padding-bottom: 45px;
  }
  .mesdesk-section .section-title h2 {
    font-size: 24px;
  }
  .message-card {
    padding: 15px;
  }
  .message-header {
    min-height: auto;
  }
  .message-image {
    width: 110px;
    height: 140px;
  }
  .message-info {
    padding: 15px 5px 0 15px;
  }
  .message-info h5 {
    font-size: 13px;
  }
  .message-info h4 {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .message-info p {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .quote-icon {
    width: 45px;
    height: 45px;
    right: 0;
    top: 15px;
    border-radius: 12px;
    font-size: 16px;
  }
  .message-content p {
    font-size: 14px;
    line-height: 1.65;
  }
  .QuickImg img {
    height: 262px;
  }
  .QuickTitle {
    left: 18px;
    right: 18px;
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {


      .topMenu ul li a {
        font-size: 9px;
    }
  .headerBottom {
    flex-direction: column;
  }
  .topMenu ul {
    justify-content: center;
  }
  .EventMid {
    flex-direction: column;
  }
  .CircularItem {
    flex-direction: column;
    border-bottom: solid 1px #f1e5e5;
  }
  .QuickLinks {
    padding: 10px 15px 30px;
  }
  .QuickImg img {
    height: 404px;
  }
  .QuickTitle {
    left: 15px;
    right: 15px;
    bottom: 12px;
    font-size: 15px;
  }
  .contactInfo {
    flex-direction: column;
  }
  .topMenu {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .store-text p:first-child {
    font-size: 10px;

}
.store-text p:last-child {
    font-size: 12px;
    font-weight: 600;
}
  .AboutImage img {
    height: 171px;
  }
  .QuickImg img {
    height: 241px;
  }
}
@media (max-width: 390px) {
  .QuickImg img {
    height: 272px;
  }
}
@media (max-width: 320px) {
  .QuickImg img {
    height: 237px;
  }
  .store-text p:first-child{
        font-size: 7px;
    }
    .store-text p:last-child {
        font-size: 8px;
        font-weight: 600;
    }
    .school-code-btn, .portal-btn {
        font-size: 9px;
        padding: 4px 7px;
    }
    .quick-link ul li a {
  
    font-size: 13px;
   
}
}


/* 2 Columns Below 576px */
@media (max-width: 444px) {
    .topMenu ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
     .topMenu ul li:nth-child(even):not(:last-child)::after {
        display: none;
    }

    .topMenu li {
        display: flex;
        justify-content: center;
    }

    .topMenu a {
        padding: 10px 15px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}