@charset "utf-8";
/*************** DEFAULT CSS ***************/

:root {
  --body-font: "Afacad Flux", sans-serif;
  --body-font-Size: 18px;
  --body-color: #1b242e;
  --primary-color: #f8b102;
  --secondary-color: #284460;
  --secondary-color2: #bc342e;
  --secondary-color3: #2973ba;
  --black: #000;
  --white: #fff;
}
body {
  font-family: var(--body-font);
  font-size: var(--body-font-Size);
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  color: var(--body-color);
  text-decoration: none;
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
* {
  -webkit-box-sizing: border-box;
  -mox-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  background: var(--black); /* Safari */
  color: var(--white);
}
::-moz-selection {
  background: var(--black); /* Firefox */
  color: var(--white);
}
a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
a:hover {
  color: var(--primary-color);
}
p {
  margin: 0 0 30px 0;
  clear: left;
  padding: 0;
  line-height: 26px;
}

table {
  width: 80%;
  border-collapse: collapse;
  margin: 20px auto;
}
th,
td {
  border: 1px solid #000;
  padding: 10px;
  text-align: left;
}

/******* Headings Style *******/
h1 {
  font-size: 43px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 17px;
}
h5 {
  font-size: 15px;
}
h6 {
  font-size: 13px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  padding: 0;
  font-weight: normal;
}
hr {
  margin: 40px 0 60px 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
  float: left;
  width: 100%;
  position: relative;
}
img {
  border: 0;
  max-width: 100%;
}
a img {
  border: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.icon-box i {
  color: #284460;
}
.contact-info-section {
  position: relative;
}

.contact-info-section .single-item {
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-75deg, #2973ba38, #f8b1022b 100%);
  padding: 0px 30px 48px 30px;
  border-radius: 20px;
  transition: all 500ms ease;
  min-height: 232px;
}

.contact-info-section .single-item:hover {
  transform: translateY(-10px);
}

.contact-info-section .single-item .icon-box {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 50px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
  margin-top: -50px;
}

.contact-info-section .single-item h3 {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 17px;
}

.contact-info-section .single-item p {
  line-height: 26px;
}

.contact-info-section .single-item p a {
  display: inline-block;
  color: #6e6e6e;
}

.contact-info-section .single-item p a:hover {
}
.single-item li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.mis-vis-bg {
  padding: 20px;
  border: 1px solid#b5b5b5;
  border-radius: 10px;
}
.mis-vis-bg .msn-vsn-inn {
  padding-top: 20px;
}
.msn-vsn-inn h3 {
  color: var(--secondary-color);
  font-weight: 800;
}

/*************** PRELOADER ***************/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #284460; /* change if the mask should have another color then white */
  z-index: 999999; /* makes sure it stays on top */
}
#status {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; /* centers the loading animation horizontally one the screen */
  top: 0; /* centers the loading animation vertically one the screen */
  background-image: url(../images/the-white-school-white.svg); /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 280px;
  margin: 0; /* is width and height divided by two */
}

/*************** COLUMS AND ROWS ***************/
main {
  position: relative;
}
.row-flex {
  width: 100%;
  display: block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.justify-content-center {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.row {
  width: 100%;
  display: block;
  margin: 0 0 30px 0;
  padding: 0;
}
.clearfix {
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  display: block;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.fullwidth {
  width: 100%;
  display: block;
}
.gap-1 {
  gap: 1%;
}
.gap-2 {
  gap: 2%;
}
.gap-3 {
  gap: 3%;
}
.gap-3-5 {
  gap: 3.5%;
}
.gap-4 {
  gap: 4%;
}
.gap-5 {
  gap: 5%;
}
.col-flex-wrp {
  display: flex;
  justify-content: space-between;
}
.fill-col {
  flex: 0 0 100%;
}
.two-col {
  flex: 0 0 48%;
}
.six-col {
  flex: 0 0 34%;
}
.three-col {
  flex: 0 0 31%;
}
.four-col {
  flex: 0 0 22%;
}
section {
  width: 100%;
  display: inline-block;
  position: relative;
}
aside {
  flex: 0 0 25%;
  margin: 0;
  padding: 0;
}
summary {
  flex: 0 0 70%;
  margin: 0;
  padding: 0;
}
.list {
  padding: 0px;
  margin: 0 0 25px;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.list li {
  list-style: none;
  background-image: url(../images/icons/list.png);
  background-position: top 5px left;
  background-repeat: no-repeat;
  color: #3a4455;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 24px;
  font-size: var(--body-font-Size);
}
.list li a {
  color: #3a4455;
}
.list li a:hover {
  color: var(--secondary-color2);
}
.list-white li {
  background-image: url(../images/icons/list-white.png);
}
.list-white li a {
  color: var(--white);
}
.list-white li a:hover {
  color: var(--primary-color);
}
.button-style a {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--body-color);
  padding: 12px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 12px;
}
.button-style a i {
  margin-left: 5px;
  font-size: 16px;
  position: relative;
  top: 1px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  transform: rotate(1deg);
}
.button-style a:hover {
  background-color: var(--secondary-color2);
  color: var(--white);
}
.button-style a:hover i {
  transform: rotate(328deg);
}
.button-style2 a {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.button-style3 a {
  border: 1px solid var(--body-color);
  color: var(--body-color);
}
.text-center {
  text-align: center;
}
.gap-30 {
  display: block;
  width: 100%;
  height: 30px;
}

/*************** HOME PAGE CSS ***************/
header {
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
  width: 100%;
  background-color: transparent;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 250px;
  left: 0px;
  top: 0px;
  z-index: 0;
  background: -moz-linear-gradient(
    top,
    rgba(23, 42, 62, 1) 5%,
    rgba(23, 42, 62, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(23, 42, 62, 1) 5%,
    rgba(23, 42, 62, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(23, 42, 62, 1) 5%,
    rgba(23, 42, 62, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#172a3e', endColorstr='#00172a3e',GradientType=0 ); /* IE6-9 */
}
.header-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.logo img {
  width: 320px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.intro {
  padding: 80px 0px;
}
.intro-wrap {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.intro-left {
  display: flex;
  flex: 0 0 50%;
  background-image: url(../images/school-building.jpg);
  background-position: left center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.intro-left img {
  display: none;
}
.intro-wrap:hover .intro-left {
  background-position: left -40px center;
}
.intro-right {
  flex: 0 0 50%;
  background-color: #172a3e;
  padding: 78px 60px;
  text-align: center;
  position: relative;
}
.intro-right:after {
  position: absolute;
  content: "";
  width: 438px;
  height: 398px;
  right: 10px;
  top: -80px;
  z-index: 0;
  background-image: url(../images/bg3.png);
  background-position: center;
  background-repeat: no-repeat;
  animation: bounce 4s ease infinite;
  -webkit-animation: bounce 4s ease infinite;
}
.intro-right h5 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.intro-right h1 {
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  font-size: 36px;
}
.intro-right p {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.intro-right .button-style {
  position: relative;
  z-index: 1;
}
.admission-wrap {
  display: flex;
  gap: 2%;
}
.admsn-box-big {
  flex: 0 0 48%;
  background-image: url(../images/DSC04281.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.admsn-box-big:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #00000096;
  z-index: 0;
}
.admsn-box-big h2 {
  position: relative;
  z-index: 1;
  background-color: var(--secondary-color3);
  color: var(--white);
  font-size: 34px;
  font-weight: 500;
  padding: 6px 20px 10px 50px;
  position: relative;
  line-height: 48px;
}
.admsn-box-big h2 span {
  display: block;
  font-size: 30px;
}
.admsn-box-big h2:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-right: 35px solid transparent;
  border-top: 31px solid #2972b9;
  border-left: 4px solid #2972b9;
  border-bottom: 33px solid #2972b9;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  top: 0px;
  right: -38px;
}
.admsn-box-big-cnt {
  position: relative;
  z-index: 1;
  padding-left: 50px;
  padding-right: 50px;
}
.admsn-box-big-cnt p {
  color: var(--white);
  line-height: 28px;
  margin-bottom: 12px;
}
.admsn-box-big-cnt h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 30px;
}
.admsn-box-big-cnt h3 a {
  color: var(--white);
}
.admsn-box-sml {
  flex: 0 0 24%;
}
.admsn-box-sml-inn {
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 25px;
  min-height: 307px;
  position: relative;
  justify-content: flex-end;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.admsn-box-sml-inn:hover {
  background-position: left -20px center;
}
.admsn-box-sml-inn h3 {
  font-size: 25px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 10px;
  z-index: 1;
}
.admsn-box-sml-inn i {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white);
  line-height: 44px;
  text-align: center;
  color: var(--white);
  z-index: 1;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.admsn-box-sml-inn p {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
  line-height: 24px;
}
.admsn-box-sml-inn-bg1 {
  background-image: url(../images/bg5.jpg);
}
.admsn-box-sml-inn-bg2 {
  background-image: url(../images/bg6.jpg);
  margin-bottom: 0px;
}
.admsn-box-sml-inn-bg3 {
  background-image: url(../images/bg7.jpg);
}
.admsn-box-sml-inn-bg4 {
  background-color: var(--secondary-color2);
  margin-bottom: 0px;
}
.admsn-box-sml-inn ul {
  position: relative;
  z-index: 1;
  margin: 0px;
  padding: 0px;
}
.admsn-box-sml-inn ul li {
  list-style: none;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
}
.admsn-box-sml-inn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 0;
  border-radius: 10px;
}
.admsn-box-sml-inn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  border-radius: 10px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.admsn-box-sml-inn-bg4:after,
.admsn-box-sml-inn-bg4:before {
  display: none;
}
.admsn-box-sml-inn:hover i {
  background-color: var(--primary-color);
  color: var(--black);
}
.principal {
  padding: 25px 0 0px;
}
.princ-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #284460;
  align-items: center;
  border-radius: 10px !important;
  overflow: hidden;
}
.princ-img {
  flex: 0 0 38%;
  line-height: 0;
}
.princ-img img {
  max-width: 100%;
}
.princ-cnt {
  flex: 0 0 62%;
  padding-right: 80px;
}
.princ-cnt h2 {
  color: var(--white);
  font-size: 36px;
  font-weight: 500;
}
.princ-cnt p {
  color: var(--white);
}
.name-text {
  border-top: 1px solid var(--white);
  padding-top: 25px;
}
.name-text h4 {
  margin-bottom: 5px;
}
.name-text h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 0px;
}
.testimonial {
  padding: 80px 0px;
}
.testi-left {
  display: inline-block;
  width: 65%;
  text-align: center;
  padding-right: 70px;
}
.testi-right {
  display: inline-block;
  /* width: 34%; */
}
.testi-right img {
  max-width: 100%;
}
.testi-left h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--body-color);
}
.testi-box {
  background: url(../images/icons/qut1.png) no-repeat top center,
    url(../images/icons/qut2.png) no-repeat bottom 20px center;
  /* padding: 35px 0px 55px; */
  margin-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
}
.testi-box p {
  margin-bottom: 0px;
}
.testimonial h3 {
  font-size: var(--body-font-Size);
  color: var(--secondary-color3);
  margin-bottom: 10px;
}
.testimonial h4 {
  font-size: 14px;
}
.news-box-main {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.news-box-main .tittle {
  font-size: 35px;
}
.feature-img img {
  width: 100%;
}
.feature-img {
  margin-bottom: 10px;
}
.new-main-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0 0 0;
}
.widget.smd30 {
  width: 30%;
}
.news-para-lft {
  width: 70%;
  padding-right: 30px;
  text-align: justify;
}
.widget {
  width: 30%;
  height: 580px;
  overflow-y: auto;
}
.widget iframe {
  width: 100%;
  min-width: 100% !important;
  max-width: 100% !important;
}
.news-events {
  padding: 80px 0px;
  background-color: #e8e8e8;
  background-image: url(../images/bg8.png);
  background-position: top center;
  background-repeat: no-repeat;
}
.heading-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news-box {
  background-color: var(--secondary-color3);
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.news-img {
  overflow: hidden;
  line-height: 0px;
}
.news-img img {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 100%;
}
.news-cnt {
  padding: 30px;
}
.news-cnt h5 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 25px;
}
.news-cnt h5 i {
  font-size: 20px;
  margin-right: 5px;
}
.news-cnt h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.news-cnt p {
  color: var(--white);
  margin-bottom: 0px;
}
.news-box:hover .news-img img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.bg-red {
  background-color: var(--secondary-color2);
}
.bg-yellow {
  background-color: var(--primary-color);
}
.ytb-video-sld iframe {
  border-radius: 10px;
}
.ytb-video-sld {
  padding: 80px 0px;
}
.certi-wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  padding: 50px 0px;
}
.certi-box {
  border: 1px solid #e1e1e1;
  padding: 25px 10px;
  border-radius: 10px;
}
.certi-box img {
  max-width: 100%;
  width: auto !important;
  -webkit-transition: all 300ms ease-in-out;
  display: inline-block !important;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.certi-box:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.map-hm {
  padding: 80px 0px;
}
.map-wrap {
  background-image: url(../images/map.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0 40px 80px;
  border-radius: 10px;
  display: block;
}
.map-wrap img {
  max-width: 100%;
}
footer {
  background-color: #284460;
}
.footer-wrap {
  gap: 2%;
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0px;
}
.ftr-logo img {
  width: 242px;
}
.ftr-logo {
  flex: 0 0 20%;
}
.ftr-col {
  flex: 0 0 24.66666666666%;
  border-left: 1px solid #527395;
  padding-left: 25px;
}
.ftr-col h3 {
  color: var(--white);
  font-size: 16px;
  position: relative;
  padding-left: 35px;
  line-height: 24px;
  margin-bottom: 15px;
}
.ftr-col h3 i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
}
.ftr-col h3 a {
  color: var(--white);
  display: block;
}
.copyright {
  background-color: #17293d;
}
.copy-wrap {
  display: flex;
  justify-content: space-between;
  padding: 25px 0px;
}
.copy-wrap h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 0px;
}
.copy-wrap h5 a {
  color: var(--white);
}
.copy-wrap h5 a:hover {
  color: var(--primary-color);
}
.social a {
  color: var(--white);
  margin: 0px 5px;
}
.social a:hover {
  color: var(--primary-color);
}
.heading {
  font-size: 36px;
  font-weight: 500;
}

/*************** INNER PAGE CSS ***************/
.pad {
  padding: 80px 0px;
}
.subheading {
  font-size: 36px;
  font-weight: 900;
  color: var(--secondary-color3);
}
.msn-vsn-wrap {
  display: flex;
  gap: 3%;
}
.msn-vsn-box {
  border-radius: 10px;
  display: flex;
  padding: 50px;
  background-image: url(../images/vsn-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.msn-vsn-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 0;
  background: -moz-linear-gradient(
    left,
    rgba(23, 42, 62, 0.89) 46%,
    rgba(23, 42, 62, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(23, 42, 62, 0.89) 46%,
    rgba(23, 42, 62, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(23, 42, 62, 0.89) 46%,
    rgba(23, 42, 62, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3172a3e', endColorstr='#00172a3e',GradientType=1 ); /* IE6-9 */
}
.msn-bg {
  background-image: url(../images/msn-bg.jpg);
}
.msn-vsn-box h3 {
  color: var(--primary-color);
  font-size: 24px;
}
.msn-vsn-box p {
  margin-bottom: 0px;
  color: var(--white);
}
.msn-vsn-inn {
  flex: 0 0 50%;
  position: relative;
  z-index: 1;
}
.team-wrap {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.team-left {
  flex: 0 0 30%;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.team-right h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}
.team-right h4 {
  font-size: 20px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 18px;
}
.team-left img {
  border-radius: 10px;
}
.news-box {
  flex: 0 0 24.25%;
}
.news-box-inn .news-box {
  margin-bottom: 25px;
}
.tittle {
  font-size: 24px;
  font-weight: 900;
}
.ns-date {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}
.ns-date i {
  color: var(--secondary-color3);
}
.career-wrap {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.career-box-inn {
  flex: 0 0 32%;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  box-shadow: 0 1px 5px #00000038;
  -moz-box-shadow: 0 1px 5px #00000038;
  -webkit-box-shadow: 0 1px 5px #00000038;
  -ms-box-shadow: 0 1px 5px #00000038;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.career-box-inn h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--secondary-color);
}
.career-box-inn ul {
  margin: 0 0 20px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}
.career-box-inn ul li {
  list-style: none;
  flex: 0 0 50%;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.career-box-inn ul li.car-high {
  font-weight: 500;
  color: var(--secondary-color3);
  text-align: right;
}
.career-box-inn:hover {
  box-shadow: 0 4px 18px #00000026;
  -moz-box-shadow: 0 4px 18px #00000026;
  -webkit-box-shadow: 0 4px 18px #00000026;
  -ms-box-shadow: 0 4px 18px #00000026;
}
.label-style {
  position: absolute;
  top: -11px;
  left: 16px;
  font-size: 15px;
  background-color: #fff;
  padding: 0 5px;
  color: var(--secondary-color3);
  z-index: 1;
}
.form-group {
  position: relative;
}
.career-form-wrap form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* flex: 0 0 70%; */
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 5px 28px #00000030;
}
.career-form-wrap form .form-group {
  margin-bottom: 18px;
  flex: 0 0 32%;
}
.career-form-wrap form .form-group2 {
  flex: 0 0 49%;
}
.career-form-wrap {
  display: flex;
  flex-wrap: wrap;
}
.career-form-wrap form .form-group-full {
  flex: 0 0 100%;
}
.label-style span {
  color: var(--secondary-color2);
}
.contactstyle {
  width: 100%;
  display: inline-block;
  padding: 30px 20px 37px 70px;
  background-color: var(--secondary-color3);
  color: var(--white);
  font-weight: normal;
  position: relative;
  margin: 0 0 12px 0;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -ms-border-radius: 15px;
}
.contactstyle a {
  color: var(--white);
}
.contactstyle a:hover {
  color: var(--secondary-color);
}
.coic {
  position: absolute;
  left: 0;
  top: 28px;
  width: 40px;
  height: 50px;
  background-color: var(--primary-color);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--secondary-color);
  border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  -webkit-border-radius: 0 15px 15px 0;
  -ms-border-radius: 0 15px 15px 0;
}
.contactstyle h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}
.contactstyle p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 24px;
}
.contact-left {
  flex: 0 0 25%;
}
.contact-right {
  flex: 0 0 100%;
  padding: 50px 0;
}
.map {
  display: flex;
  width: 100%;
  margin-top: 30px;
}
.contact-right .heading {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 25px;
  font-weight: 900;
}
.gap3 {
  gap: 3%;
}
.contact-right .form-group {
  margin-bottom: 24px;
}
.mob-btn {
  display: none;
}
.m-t-25 {
  margin-top: 25px;
}
.mobile-btn-fxd {
  display: none;
}
.princ-img-inn {
  display: inline-block;
  width: 30%;
  line-height: 0px;
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  vertical-align: top;
  top: 100px;
}
.princ-img-inn img {
  width: 100%;
}
.princ-cnt-inn {
  display: inline-block;
  width: 69%;
  padding-left: 60px;
  vertical-align: top;
}
.about-intro-wrap {
  display: flex;
  gap: 5%;
  align-items: flex-start;
}
.about-intro-left {
  flex: 0 0 20%;
  /*border: 1px solid #e2e2e2;*/
  padding: 20px;
}
.about-intro-right {
  flex: 0 0 75%;
}

/*************** INNER BANNER ***************/
.banner {
  display: flex;
  z-index: 0;
  width: 100%;
  height: 300px;
  align-items: flex-end;
  background-image: url(../images/banner1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}
.banner-caption h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 10px;
  line-height: 44px;
}
.banner-caption h4 span {
  color: var(--white);
  font-size: 12px;
}
.banner-caption h4 a {
  color: var(--white);
  font-size: 12px;
}
.banner-caption h4 a:hover {
  color: var(--primary-color);
}
.banner-caption h4 {
  padding: 0px 0px;
  display: inline-flex;
  margin-bottom: 0px;
  align-items: center;
}
.banner-caption {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.banner-caption h4 span.b-sep {
  font-size: 0;
  width: 13px;
  height: 11px;
  margin: 0 8px;
  background: url(../images/icons/list-white.png) no-repeat 0 0;
  display: inline-block;
  background-size: 10px;
}
.banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 36%,
    rgba(0, 0, 0, 0.04) 39%,
    rgba(0, 0, 0, 0.86) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 36%,
    rgba(0, 0, 0, 0.04) 39%,
    rgba(0, 0, 0, 0.86) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 36%,
    rgba(0, 0, 0, 0.04) 39%,
    rgba(0, 0, 0, 0.86) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#db000000',GradientType=0 ); /* IE6-9 */
}
.footer-wrap .list {
  margin-bottom: 25px !important;
}
.item .news-cnt {
  min-height: 350px;
}

.vedio-card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  margin-top: 35px;
}
.vedio-card-item {
  flex: 0 0 49%;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.vedio-card-item h3 span {
  font-weight: bold;
  display: block;
  color: #343434;
  margin-bottom: 5px;
}
.vedio-card-item h3 {
  margin-bottom: 20px;
  color: #787878;
}
a.ply-btn {
  display: inline-flex;
  padding: 8px 15px;
  background: #295b90;
  border-radius: 6px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  color: #fff;
}
a.ply-btn:hover {
  background-color: #bc342e;
}
a.ply-btn i {
  color: #fcb110;
}

/********* FIXED HEADER ***************/
header.smaller {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
  top: 0;
  box-shadow: 0px 1px 25px #0000003d;
  background-color: #172a3e;
}
header.smaller:after {
  display: none;
}
header.smaller .header-wrap {
  padding: 10px 0px 5px;
}

/*** bounce ***/
.bounce-animation {
  animation: bounce 4s ease infinite;
  -webkit-animation: bounce 4s ease infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/*********file chosen style**************/
input[type="file"] {
  display: none;
}
.custom-file-upload {
  border: 0;
  display: block;
  padding: 10px 20px;
  line-height: 32px;
  cursor: pointer;
}
.contact-info-section .single-item p {
  margin-bottom: 5px;
  min-height: 100%;
}
.contact-info-section .single-item {
  min-height: 100%;
}
.news-box-main .ns-date {
  border-bottom: 0;
  padding: 10px;
  display: inline-block;
  background-color: var(--secondary-color3);
  color: #fff;
}
.news-box-main h1 {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}
.news-box-main .ns-date i {
  margin-right: 5px;
  color: var(--primary-color);
}

/**********forms**************/
form {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none;
}
.fieldset {
  width: 100%;
  height: 50px;
  padding: 8px 15px;
  background-color: var(--white);
  display: block;
  border: 1px solid #c1c1c1;
  margin: 0 0 10px 0;
  color: #262626;
  font-size: 14px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -webkit-border-radius: 5px;
}
textarea.fieldset,
textarea {
  height: 140px;
  padding: 18px;
}
select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/icons/arrow-d.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px !important;
}
select:focus {
  background-image: url(../images/icons/arrow-t.png);
}
.sendbutton {
  width: auto;
  height: auto;
  border: 0;
  outline: 0;
  margin: 0 5px 0 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  vertical-align: top;
  padding: 13px 35px 13px;
  text-align: center;
  background-color: var(--secondary-color);
  text-transform: uppercase;
  border-radius: 50px;
}
.sendbutton:hover {
  background-color: var(--primary-color);
  color: #fff;
}
::-webkit-input-placeholder {
  color: #262626 !important;
}
:-moz-placeholder {
  color: #262626 !important;
}
::-moz-placeholder {
  color: #262626 !important;
}
:-ms-input-placeholder {
  color: #262626 !important;
}

.justify {
  text-align: justify !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  float: left !important;
  width: 100% !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  float: left !important;
  width: 100% !important;
}

.button-style a:hover {
  color: #fff !important;
}

.footer-links-ul .menu-footer-links-container ul {
  padding-left: 0 !important;
}

p.form-button {
  display: inline-block;
}
.university {
  margin-bottom: 25px;
}
.university .four-col {
  margin-bottom: 25px;
}
section.certif .certi-wrap {
  justify-content: space-between;
}

/************************************* 1200px *************************************/
@media only screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

/************************************* 1199px *************************************/
@media only screen and (max-width: 1199px) {
  .container {
    width: 90%;
  }
  header {
    position: relative;
    background-color: #172a3e;
  }
  header:after {
    display: none;
  }
  .logo {
    position: absolute;
    left: 50%;
    margin-left: -160px;
    top: 10px;
  }
  .header-right {
    flex: 0 0 100%;
    justify-content: space-between;
  }
  .header-wrap,
  header.smaller .header-wrap {
    padding: 20px 0px;
  }
  .banner {
    height: 380px;
  }
  .contact-left {
    flex: 0 0 49%;
  }
  .contact-right {
    flex: 0 0 100%;
    padding-left: 0px;
  }
  section.certif .certi-wrap {
    justify-content: center;
  }
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
  .intro-right:after {
    width: 300px;
    background-size: 100%;
  }
  .intro-left {
    background-position: left -100px center;
    background-size: cover;
  }
  .ftr-logo {
    flex: 0 0 50%;
    padding: 20px 0px;
    border-bottom: 1px solid #527395;
    text-align: center;
  }
  .ftr-col {
    flex: 0 0 50%;
    border: 1px solid #527395;
    padding: 20px;
  }
  .footer-wrap {
    gap: 0;
  }
  .msn-vsn-box {
    flex-direction: column;
    padding: 35px;
  }
  .msn-vsn-box:after {
    background: #000000ba;
  }
  .news-box {
    flex: 0 0 32.666666666%;
  }
  .career-form-wrap form .form-group {
    flex: 0 0 49%;
  }
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
  .col-flex-wrp {
    flex-direction: column;
  }
  .two-col,
  .three-col,
  .four-col,
  aside,
  summary {
    flex: 0 0 100%;
    margin: 0 0 25px 0;
  }
  .intro-wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .intro-left {
    background-image: none;
  }
  .intro-left img {
    display: block;
    width: 100%;
  }
  .admission-wrap {
    flex-wrap: wrap;
  }
  .admsn-box-big {
    flex: 0 0 100%;
    margin-bottom: 20px;
    min-height: inherit;
    padding-top: 50px;
  }
  .admsn-box-sml {
    flex: 0 0 49%;
  }
  .princ-wrap {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .princ-img {
    margin-bottom: 20px;
  }
  .testi-left {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
  .testi-right {
    width: 100%;
    text-align: center;
  }
  .certi-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .certi-box,
  .certi-box:last-child {
    margin-right: 0;
    padding: 20px;
    border: 1px solid #b9b9b9;
    flex: 0 0 28%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map-wrap img {
    width: 160px;
  }
  .princ-cnt {
    padding-right: 0px;
  }
  .msn-vsn-wrap,
  .team-wrap {
    flex-direction: column;
  }
  .msn-vsn-box {
    margin-bottom: 20px;
  }
  .pad {
    padding: 50px 0px;
  }
  .banner {
    height: 250px;
  }
  .banner-caption h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 5px;
  }
  .banner-caption {
    margin-bottom: 15px;
  }
  .team-left {
    margin-bottom: 25px;
  }
  .team-right h2 {
    font-size: 24px;
  }
  .news-box {
    flex: 0 0 49%;
  }
  .career-box-inn {
    flex: 0 0 49%;
  }
  .career-form-wrap form {
    padding: 35px;
  }
  .tittle {
    font-size: 18px;
  }
  .logo {
    position: relative;
    margin-left: 0px;
    left: 0px;
    top: 0px;
  }
  .header-right {
    flex: 0 0 0;
  }
  .menu-full-btn {
    display: none;
  }
  .header-wrap,
  header.smaller .header-wrap {
    padding: 12px 0px 6px;
  }
  .intro-right:after {
    width: 100%;
    height: 100%;
    background-size: 45%;
    top: 0px;
    right: 0;
  }
  .testi-right {
    display: block;
  }
  .princ-cnt {
    flex: 0 0 100%;
    padding-right: 0px;
  }
  .about-intro-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-intro-left {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  .about-intro-right {
    flex: 0 0 100%;
  }
  .widget,
  .news-para-lft {
    width: 100%;
    padding: 0;
  }
  .widget {
    height: auto;
    overflow-x: inherit;
  }
  .news-box-main .tittle {
    font-size: 20px;
  }
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
  .admsn-box-big h2,
  .admsn-box-big h2 span {
    font-size: 28px;
  }
  .admsn-box-big h2:after {
    border-top: 33px solid #2972b9;
    border-bottom: 33px solid #2972b9;
  }
  .heading-btn-wrap {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .copy-wrap {
    flex-direction: column;
    align-items: center;
  }
  .logo img {
    width: 260px;
  }
  .banner-caption {
    padding-left: 20px;
  }
  .banner {
    height: 190px;
  }
  .banner-caption h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .row-flex,
  .career-wrap {
    flex-direction: column;
  }
  .career-wrap {
    margin-top: 0px;
  }
  .career-form-wrap,
  .career-form-wrap form {
    flex-direction: column;
  }
  .intro-right {
    padding: 20px;
  }
  .logo {
    line-height: 0px;
  }
  .header-wrap,
  header.smaller .header-wrap {
    padding: 10px 0px;
  }
  .mob-btn {
    display: block;
  }
  .hide-mob {
    display: none;
  }
  .copy-wrap .social {
    display: none;
  }
  .mobile-btn-fxd {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -1px 16px #00000085;
  }
  .mobile-btn-fxd a {
    flex: 0 0 50%;
    text-align: center;
    padding: 13px 20px;
    background-color: var(--secondary-color2);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
  }
  .mobile-btn-fxd .whtsapp-btn {
    background-color: #08b52a;
  }
  footer {
    padding-bottom: 45px;
  }
  .map-hm {
    display: none;
  }
  .certif {
    padding-bottom: 40px;
  }
  .ftr-col h3 i {
    top: 4px;
  }
  .princ-img-inn {
    position: relative;
    top: 0px;
    margin-bottom: 25px;
  }
  .princ-img-inn,
  .princ-cnt-inn {
    width: 100%;
  }
  .princ-cnt-inn {
    padding-left: 0px;
  }
  .item .news-cnt {
    min-height: auto;
  }
  .news-box-main h1 {
    font-size: 20px;
  }
  .vedio-card-item {
    flex: 0 0 100%;
  }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
  .career-form-wrap form .form-group {
    margin-bottom: 0px;
  }
  .ftr-col h3 {
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 0px;
  }
  .ftr-col .list li {
    margin-bottom: 2px !important;
    line-height: 24px !important;
    font-size: 15px;
  }
  .ftr-col {
    padding: 7px 15px;
  }
  .footer-wrap .list {
    margin-bottom: 0px !important;
  }
  .footer-wrap {
    padding: 25px 0px;
  }
  .intro,
  .ytb-video-sld,
  .news-events,
  .testimonial,
  .map-hm {
    padding: 50px 0px;
  }
  .intro-right h1 {
    font-size: 28px;
  }
  .admsn-box-big h2,
  .admsn-box-big h2 span {
    font-size: 20px;
    line-height: 28px;
  }
  .admsn-box-big h2:after {
    border-top: 23px solid #2972b9;
    border-bottom: 23px solid #2972b9;
  }
  .admission-wrap {
    flex-direction: column;
  }
  .admsn-box-sml-inn {
    background-size: cover;
    background-position: top center;
    margin-bottom: 15px;
  }
  .heading {
    font-size: 28px;
  }
  .certi-box:last-child {
    padding: 18px;
    border: 1px solid #b9b9b9;
    flex: 0 0 50%;
  }
  .news-cnt h3 {
    font-size: 23px;
    font-weight: 600;
  }
  .news-cnt p {
    font-size: 16px;
    line-height: 25px;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .copy-wrap {
    text-align: center;
  }
  .logo img {
    width: 250px;
  }
  #status {
    background-size: 250px;
  }
  .banner {
    height: 170px;
  }
  .banner-caption h2 {
    font-size: 20px;
    line-height: 22px;
  }
  .ytb-video-sld {
    padding-bottom: 25px;
  }
  .label-style {
    position: relative;
    top: 11px;
    left: 8px;
  }
  .form-group p {
    margin-bottom: 10px;
  }
  .certi-box {
    padding: 18px;
    border: 1px solid #b9b9b9;
    flex: 0 0 48%;
    margin-bottom: 15px;
  }
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
  .intro-right {
    padding: 55px 20px;
  }
  .logo img {
    width: 200px;
  }
  .header-wrap,
  header.smaller .header-wrap {
    padding: 8px 0px;
  }
  .princ-cnt h2 {
    font-size: 26px;
  }
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
}

.notice-row {
    display: flex;
    gap: 20px;
    padding: 18px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    max-width: 650px;
    align-items: flex-start;
}

.icons .image img {
    width: 55px;
    height: auto;
}

.detail {
    flex: 1;
}

.detail .title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
}

.detail .title a {
    color: #000;
    text-decoration: none;
}

.detail .title a:hover {
    color: #0d6efd;
}

.date {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.date i {
    color: #0d6efd;
    margin-right: 5px;
}

.download {
    margin-left: 15px;
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

.download i {
    margin-right: 4px;
}

.download:hover {
    text-decoration: underline;
}

.desc p {
    margin: 0;
    font-size: 14px;
    color: #444;
}


/* bday css */


/* bday-text */
.testi-box{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image */
.testi-box img{
    width: 100%;
    display: block;
}

/* Title overlay */
.event-name{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
    font-size: 30px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(20px);
}

/* Animate ONLY active slide */
.owl-item.active .event-name{
    animation: slideUpFade 0.6s ease forwards;
}

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


/* new css */
/* Container */
.testi-box{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

/* Image */
.testi-box img{
    width: 100%;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.testi-box:hover img{
    transform: scale(1.1);
}
/* Event name overlay */
.event-desc{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    font-weight: 600;

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

    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Show text only on hover */
.testi-box:hover .event-desc{
    opacity: 1;
}

/* video css */
    .video-slider {
  position: relative;
  width: 100%;
  max-width: 400px; /* adjust */
  margin: auto;
  overflow: hidden;
}

.video-slide {
  display: none;
  transition: opacity 1s ease-in-out;
}

.video-slide.active {
  display: block;
}
.section-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  } /* -------- Left: Video (Horizontal scroll) -------- */
  .video-box {
    flex: 1;
    overflow: hidden; /* hide overflow */
    position: relative;
  }
  .video-track {
    display: flex; /* horizontal row */
    gap: 20px; /* space between videos */
  }
  .video-item {
    flex-shrink: 0; /* prevent shrinking */
    width: 400px; /* fixed width for each video */
  }
  .video-item iframe {
    width: 100%; /* takes full of .video-item */
    height: 330px;
    border-radius: 10px;
    border: none;
  } /* -------- Right: Notice -------- */
  .notice-box {
    flex: 1;
  }
  .notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .notice-header h2 {
    font-size: 22px;
    margin: 0;
    color: #007b5e;
  }
  .notice-header button {
    background: #007b5e;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
  }
  .notice-list {
    height: 320px; /* fixed height */
    overflow: hidden;
    position: relative;
  }
  .notice-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .notice-item {
    display: flex;
    gap: 12px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .notice-item:hover {
    background: #e8f5e9;
  }
  .notice-item img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
  }
  .notice-text {
    flex: 1;
  }
  .notice-text h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #007b5e;
  }
  .notice-text p {
    margin: 0;
    font-size: 13px;
    color: #555;
  }

  .h-320px {
    height: 320px !important;
}
        #myVideo {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            max-width: 100%;
            min-width: 100%;
            min-height: auto;
            width: auto;
            height: auto;
            object-fit: cover;
            background-color: rgba(0, 0, 0, 0.37);

        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            background: rgba(0, 0, 0, 0.5);
        }

        .overlayText {
            position: absolute;
            width: 100%;
            height: auto;
            /* top: 30%; */
            bottom: 15%;
            left: 0;
            z-index: 1;

        }

        #topText {
            color: white;
            /* font-size: 20px; */
            align-self: center;
        }
        
.scroll-progress {
    position: fixed;
    bottom: 40px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px); /* start from top */
    transition: all 0.5s ease;
    z-index: 9999;
}
.scroll-progress.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* slide to normal position */
}
    @media (min-width: 576px) {
  .yclass {
    margin-top: -7.5rem;
  }
} 

/* Default hidden */
.scroll-progress {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Visible after scroll >400 */
.scroll-progress.show {
  opacity: 1;
  visibility: visible;
}  

/* css */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title span {
  color: #0a8f4d;
}

.video-wrapper video {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  object-fit: cover;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.news-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.view-all {
  background: #0a8f4d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

/* lofty-app-start */
/*----------------------------------------*/
.app-store-btns {
  width: 100%;
  padding-bottom: 20px;
}

.app-store-btns a {
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  flex-grow: 1;
  flex-basis: 0;
  text-decoration: none;
  color: #000;
  background: #fff;
  background-repeat: no-repeat;
  padding: 6px 12px 6px 44px;
  min-height: 40px;
  font-weight: 400;
  background-position: 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  border-bottom: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.app-store-btns a.apple {
  background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K");
  background-size: 21px 25px;
}

.app-store-btns a.google {
  background-image: url("https://psycatgames.com/images/supporting/google-play.svg");
  background-size: 22px 25px;
}

.scroll-text {
    max-height: 420px;        /* adjust height as needed */
    overflow-y: auto;
    padding-right: 10px;      /* prevents text cut-off */
}

/* Hide scrollbar for Chrome, Edge, Safari */
.scroll-text::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* Hide scrollbar for Firefox */
.scroll-text {
    scrollbar-width: none;
}

/* Hide scrollbar for IE & old Edge */
.scroll-text {
    -ms-overflow-style: none;
}

/* table css */

.center-table {
    margin: auto;           
    width: 100%;
    border-collapse: collapse;
}

.center-table th,
.center-table td {
    text-align: center;      
    vertical-align: middle;  
}

.center-table thead {
    background-color: #2ecf56;
}

/* faq */
.faq-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 15px;
    font-family: Arial, sans-serif;
}

.faq-title {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #2ecf56;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #28b84c;
}

.icon {
    font-size: 22px;
    font-weight: bold;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f9f9f9;
}

/* Content with image */
.faq-content {
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: center;
}

.faq-content img {
    width: 220px;
    max-width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.faq-content p {
    margin: 0;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
        text-align: center;
    }

    .faq-content img {
        width: 100%;
    }
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin-top: 15px;
    background: linear-gradient(135deg, #2ecf56, #28b84c);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.download-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    animation: bounce 1.5s infinite;
}

/* Icon animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Layout */
.row-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card */
.news-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;        /* card width */
    height: 380px;           /* 🔒 FIXED CARD HEIGHT */
    background: #1f6fb2;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.news-box:hover {
    transform: translateY(-6px);
}

/* Image wrapper */
.news-img {
    width: 100%;
    height: 230px;           /* 🔒 FIXED IMAGE HEIGHT */
    overflow: hidden;
}

/* Image */
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔑 KEY: any image size fits */
    display: block;
}

/* Content */
.news-cnt {
    flex: 1;                 /* fills remaining height */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Date */
.news-cnt h5 {
    font-size: 13px;
    margin: 0 0 8px;
    opacity: 0.9;
}

/* Title */
.news-cnt h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;

    /* Prevent height break */
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .news-box {
        max-width: 100%;
        height: auto;        /* auto height on mobile */
    }

    .news-img {
        height: 200px;
    }
}

.faq-gallery {
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: flex-start;
    gap: 30px;                 /* space between cards */
    flex-wrap: nowrap;         /* keep in single line */
}

.faq-card {
    text-align: center;
}

.faq-card img {
    width: 200px;              /* adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 1.5rem; 
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.faq-card h5 {
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-gallery {
        flex-wrap: wrap;
    }
}

/* disclosure css */
.school-info-wrapper {
    padding: 20px;
    background: linear-gradient(to right, #e9f7f1, #3ccf8e);
    border-radius: 10px;
}

.school-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.school-info-table th {
    background: #0b3c5d;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.school-info-table td {
    border: 1px solid #d9e1e8;
    padding: 12px;
    font-size: 16px;
}

.school-info-table td:first-child {
    text-align: center;
    font-weight: 600;
    width: 80px;
}

.school-info-table tbody tr:nth-child(even) {
    background: #f9fbfc;
}

/* Responsive */
@media (max-width: 768px) {
    .school-info-table th,
    .school-info-table td {
        font-size: 16px;
        padding: 10px;
    }
}

/* back to top */
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.progress-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Circle */
.progress-circle {
    width: 100%;
    height: 100%;
}

.progress-circle path {
    fill: none;
    stroke: #0068d8;
    stroke-width: 4;
}

/* Arrow */
.progress-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #0068d8;
    pointer-events: none;
}

.whtsapp-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #25D366;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* notice css */
.news-imgs {
    width: 100%;
}

.feature-img {
    width: 100%;
}

.feature-img .item {
    width: 100%;
}

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

/* Optional: limit height on large screens */
@media (min-width: 992px) {
    .img-responsive {
        max-height: 550px;
    }
}

/* Image scroll wrapper */
.img-scroll-box {
    width: 100%;
    min-height: 550px;        /* Minimum visible height */
    max-height: 550px;        /* Fixed scroll height */
    overflow-y: auto;         /* Vertical scroll */
    overflow-x: hidden;
}

/* Image itself */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
