/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*Google web font family*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,600,700,800");

/*-------- Preloader --------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999999 !important;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #662d91;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #f8f8f8;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Cairo", sans-serif;
  color: #555;
  direction: ltr;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

p {
  margin-bottom: 30px;
}

strong {
  font-weight: 600;
}

hr {
  margin: 30px 0 30px 0;
  border-color: #ededed;
}

ul, ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.main_title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.main_title span {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: auto;
  margin-bottom: 20px;
  opacity: 1;
  background-color: #999;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.main_title.animated span {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main_title_2 {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
.main_title_2 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
  margin: auto;
}
.main_title_2 span em {
  width: 60px;
  height: 2px;
  background-color: #662d91;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .main_title_2 {
    margin-bottom: 10px;
  }
}
.main_title_2 h2 {
  margin: 25px 0 0 0;
}
@media (max-width: 767px) {
  .main_title_2 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.main_title_2 p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .main_title_2 p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/** Layes slider typography ab buttons **/
h3.slide_typo {
  color: #fff !important;
  font-weight: normal;
  font-size: 60px;
  font-size: 3.75rem;
}

/*General links color*/
a {
  color: #3f9fff;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #3f9fff;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
a.btn_1:hover,
.btn_1:hover {
  background: #0054a6;
  color: #fff;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
a.btn_1.medium,
.btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 40px;
}
a.btn_1.rounded,
.btn_1.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
}
a.btn_1.outline,
.btn_1.outline {
  border: 2px solid #3f9fff;
  color: #3f9fff;
  padding: 11px 40px;
  background: none;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: #0054a6;
  color: #fff;
  border-color: #0054a6;
}

a.btn_explore {
  background: #fff;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -30px;
  font-size: 24px;
  font-size: 1.5rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.btn_explore:hover {
  bottom: 30px;
}

.closebt {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  top: 10px;
  right: 15px;
  color: #fff;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}
.closebt:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

.btn_home_align {
  text-align: left;
}
@media (max-width: 767px) {
  .btn_home_align {
    text-align: center;
  }
}

/*Button plus-minus */
.button_plus {
  position: relative;
  width: 30px;
  height: 30px;
  /* Vertical line */
  /* horizontal line */
}
.button_plus:before, .button_plus:after {
  content: "";
  position: absolute;
  background-color: white;
  transition: transform 0.25s ease-out;
}
.button_plus:before {
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  margin-left: -2px;
}
.button_plus:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: -2px;
}
.button_plus:hover {
  cursor: pointer;
}
.button_plus:hover:before {
  transform: rotate(90deg);
}
.button_plus:hover:after {
  transform: rotate(180deg);
}

/*-------- 1.3 Structure --------*/
/* Header */

#logo {
  float: left;
}
@media (max-width: 991px) {
  #logo {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #logo img {
    width: auto;
    height: 30px;
    margin-top: 10px;
  }
}

#hero_in {
  width: 100%;
  height: 25vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #303030;
  background: linear-gradient(120deg, #b3b1b1, #ffffff);
}
@media (max-width: 767px) {
  #hero_in {
    height: 350px;
  }
}
#hero_in.general {
  border-bottom: 5px solid #FFC107;
}
#hero_in.general:before {
  background: url(/img/slides/Slider1.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hero_in.general .wrapper {
  /* background-color: #372675;
  background-color: rgba(57, 39, 121, 0.8); */
  background-color: rgba(171, 171, 171, 0.267);

}
#hero_in.courses:before {
  background: url(/img/slides/Slider1.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hero_in.courses .wrapper {
  /* background-color: #372675;
  background-color: rgba(57, 39, 121, 0.8); */
  background-color: rgba(171, 171, 171, 0.267);

}
#hero_in.contacts:before {
  background: url(/img/slides/Slider1.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hero_in.contacts .wrapper {
  /* background-color: black;
  background-color: rgba(0, 0, 0, 0.8); */
  background-color: rgba(171, 171, 171, 0.267);

}
#hero_in:before {
  animation: pop-in 5s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
#hero_in .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#hero_in .wrapper h1 {
  color: #444343;
  font-size: 42px;
  font-size: 2.625rem;
  text-transform: uppercase;
  font-weight: 700;
  
}
@media (max-width: 767px) {
  #hero_in .wrapper h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
#hero_in .wrapper h1 span {
  width: 80px;
  height: 4px;
  margin: auto;
  background-color: #FFC107;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  opacity: 1;
}
#hero_in .wrapper p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
#hero_in .wrapper p strong {
  font-weight: 600;
}

/* Animations */
@keyframes pop-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/* Delays */
#logo {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}

/* ul#top_menu {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
} */

#hero_in h1 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}

#hero_in p {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}

#hero_in a.btn_explore {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
}

/* Main */
main {
  background-color: #f8f8f8;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
     background-color: #121921;
    color: #fbfbfb;
    border-top: 3px solid #ffc107;
    box-shadow: -2px 0 6px rgb(255 193 7);
    padding: 20px;
    font-size: 16px;
}
footer .row {
  width: 100%; /* Keep row width */
   display: flex;
    justify-content: center;   /* Center columns horizontally */
    align-items: center;       /* Center vertically */
    flex-wrap: wrap;           /* Keep responsive */
    text-align: center;
    min-height: 100px;
}
footer h5 {
  color: #fff;
  margin: 25px 0;
}
@media (max-width: 575px) {
  footer h5 {
    margin: 25px 0 10px 0;
  }
}
footer ul li {
  margin-bottom: 5px;
}
footer ul li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #fff;
  opacity: 0.7;
}
footer ul li a:hover {
  color: #3f9fff;
  opacity: 1;
}
footer ul li a i {
  margin-right: 10px;
  color: #fff;
}
footer ul.links li a:hover {
  -webkit-transform: translate(-5px, 0);
  -moz-transform: translate(-5px, 0);
  -ms-transform: translate(-5px, 0);
  -o-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}
footer ul.links li a:hover:after {
  opacity: 1;
  color: #3f9fff;
}
footer ul.links li a:after {
  /* font-family: 'ElegantIcons'; */
  content: "\24";
  position: absolute;
  margin-right: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer ul.contacts li a i {
  margin-right: 10px;
}
footer hr {
  opacity: 0.1;
}
footer #copy {
  text-align: left;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer #copy {
    text-align: left;
    margin: 5px 0 20px 0;
  }
}
footer.fake-footer {
  display: none;
  visibility: hidden;
}

.follow_us {
  margin-top: 15px;
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}
.follow_us h5 {
  color: #fff;
}
.follow_us ul li {
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
.follow_us ul li:first-child {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.follow_us ul li a {
  color: #fff;
  opacity: 0.7;
}
.follow_us ul li a:hover {
  opacity: 1;
}

/* Wow on scroll event */
.wow {
  visibility: hidden;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home/front page--------*/
a#moveDown {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  -moz-animation-duration: 6s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

/* Home single hero */
.hero_single {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .hero_single {
    height: 450px;
  }
}
.hero_single:before {
  background: url(/img/slides/Slider1.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hero_single .wrapper {
  background-color: #632c8d;
  background-color: rgba(102, 45, 145, 0.8);
}
.hero_single.start_bg_zoom:before {
  animation: pop-in 5s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero_single .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero_single .wrapper h3 {
  color: #fff;
  font-size: 52px;
  font-size: 3.25rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 767px) {
  .hero_single .wrapper h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media (max-width: 575px) {
  .hero_single .wrapper h3 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
.hero_single .wrapper p {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0 20%;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}
.hero_single .wrapper p strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero_single .wrapper p {
    padding: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.hero_single.short {
  height: 600px;
}
.hero_single.version_2 {
  height: 600px;
}
@media (max-width: 767px) {
  .hero_single.version_2 {
    height: 450px;
  }
}
.hero_single.version_2:before {
  background: url(/img/slides/Slider1.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hero_single.version_2 .wrapper {
  background-color: #372675;
  background-color: rgba(57, 39, 121, 0.8);
}
.hero_single.version_2 .wrapper h3 {
  font-size: 42px;
  font-size: 2.625rem;
}
@media (max-width: 767px) {
  .hero_single.version_2 .wrapper h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media (max-width: 575px) {
  .hero_single.version_2 .wrapper h3 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
.hero_single.version_2 .wrapper p {
  font-weight: 400;
  margin: 5px 0 0 0;
  padding: 0;
  font-size: 21px;
  font-size: 1.3125rem;
}
.hero_single.version_2 .wrapper p strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero_single.version_2 .wrapper p {
    padding: 0;
    font-size: 16px;
    font-size: 1rem;
  }
}


.features {
  background-color: #121921;
  color: #fff;
  padding: 30px 30;
  text-align: center;
}
.features ul {
  margin: 0;
  padding: 0;
}
.features ul li {
  float: left;
  width: 33.33%;
  position: relative;
}
.features ul li span {
  opacity: 0.7;
}
.features ul li h4 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  color: #FFC107;
}
.features ul li i {
  color: #fff;
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .features ul li {
    width: 100%;
    float: none;
    margin-bottom: 35px;
  }
  .features ul li:last-child {
    margin-bottom: 5px;
  }
}

ul#grid_home {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
ul#grid_home li {
  position: relative;
  width: 33.33%;
  float: left;
}
@media (max-width: 767px) {
  ul#grid_home li {
    width: 100%;
    float: none;
  }
}
ul#grid_home li:nth-child(1) .short_info {
  background-color: #372675;
  background-color: rgba(57, 39, 121, 0.8);
}
ul#grid_home li:nth-child(2) .short_info {
  background-color: #8e268b;
  background-color: rgba(146, 39, 143, 0.8);
}
ul#grid_home li:nth-child(3) .short_info {
  background-color: #392779;
  background-color: #392779;
}
ul#grid_home li a.img_container {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  width: 100%;
  height: 280px;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container {
    width: 100%;
    float: none;
    height: 250px;
  }
}
ul#grid_home li a.img_container img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
@media (max-width: 1199px) {
  ul#grid_home li a.img_container img {
    height: 100%;
    width: auto;
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container img {
    width: 100%;
    height: auto;
  }
}
ul#grid_home li a.img_container:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
ul#grid_home li a.img_container .short_info {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  padding: 0 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
}
ul#grid_home li a.img_container .short_info h3 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 5px 0;
  padding: 0;
  font-weight: 400;
}
ul#grid_home li a.img_container .short_info h3 strong {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container .short_info h3 {
    margin-top: -20px;
  }
}
ul#grid_home li a.img_container .short_info div {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  transform: translateY(-25px);
  text-align: center;
  width: 100%;
  visibility: hidden;
  display: table;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
ul#grid_home li a.img_container .short_info div .btn_1 {
  padding: 10px 22px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  ul#grid_home li a.img_container .short_info div {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
ul#grid_home li a.img_container .short_info:hover div {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
ul#grid_home li:last-child .img_container:hover .short_info .btn_1 {
  background-color: #FFC107;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul#grid_home li:last-child .img_container:hover .short_info .btn_1:hover {
  background-color: #3f9fff;
}
/*Carousel home page*/
#reccomended {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #reccomended {
    margin-top: 0;
  }
}
#reccomended .item {
  margin: 0 15px;
}

#reccomended .owl-item {
  opacity: 0.5;
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}

#reccomended .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

#reccomended .owl-item.active.center .item .title h4,
#reccomended .owl-item.active.center .item .views {
  opacity: 1;
}

.owl-theme .owl-dots {
  margin-top: 25px !important;
}
@media (max-width: 767px) {
  .owl-theme .owl-dots {
    margin-top: 0 !important;
    margin-bottom: 20px;
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 13px !important;
  height: 13px !important;
}

a.box_news {
  position: relative;
  display: block;
  padding-right: 200px;
  color: #555;
  margin-bottom: 30px;
  min-height: 150px;
}
@media (max-width: 767px) {
  a.box_news {
    min-height: inherit;
    padding-right: 0;
  }
}
a.box_news figure {
  width: 200px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  a.box_news figure {
    position: relative;
    width: auto;
  }
}
a.box_news figure img {
  width: 250px;
  height: auto;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%) scale(1.1);
  -moz-transform: translate(50%, -50%) scale(1.1);
  -ms-transform: translate(50%, -50%) scale(1.1);
  -o-transform: translate(50%, -50%) scale(1.1);
  transform: translate(50%, -50%) scale(1.1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 767px) {
  a.box_news figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
a.box_news figure figcaption {
  background-color: #FFC107;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  color: #fff;
  width: 60px;
  height: 60px;
  padding: 15px;
  line-height: 1;
}
a.box_news figure figcaption strong {
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
}
a.box_news h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  a.box_news h4 {
    margin-bottom: 5px;
  }
}
a.box_news:hover img {
  -webkit-transform: translate(50%, -50%) scale(1);
  -moz-transform: translate(50%, -50%) scale(1);
  -ms-transform: translate(50%, -50%) scale(1);
  -o-transform: translate(50%, -50%) scale(1);
  transform: translate(50%, -50%) scale(1);
}
a.box_news:hover h4 {
  color: #3f9fff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.box_news ul {
  margin: 0;
  padding: 10px 0 0 0;
  direction: ltr;
}
@media (max-width: 767px) {
  a.box_news ul {
    padding: 0;
  }
}
a.box_news ul li {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 5px;
}
a.box_news ul li:last-child {
  margin-left: 0;
}
a.box_news ul li:last-child:after {
  content: '';
  margin: 0;
}
a.box_news ul li:after {
  content: '-';
  margin: 0 10px 0 0;
}

.secondary_nav {
  direction: ltr; /* ensure LTR */
  background: #333;
  padding: 15px 0;
}

.secondary_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.secondary_nav ul.menu-column {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.secondary_nav ul.menu-column li a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.secondary_nav ul.menu-column li a.active,
.secondary_nav ul.menu-column li a:hover {
  color: #ffc107;
}

.secondary_nav .contact-column {
  display: flex;
  gap: 15px;
  color: #fff;
  font-weight: 600;
}

.secondary_nav .contact-column span {
  white-space: nowrap;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .secondary_nav .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .secondary_nav .contact-column {
    gap: 10px;
  }
}



/* announcement-bar */
.announcement-bar {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 8px 0;
  direction: ltr;
  background-color: rgb(255, 193, 7)!important;
  font-weight: bold;
}

.announcement-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.announcement-text {
  display: inline-block;
  margin: 0 30px;
  font-size: 16px;
  color: #333;
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/*  about section  */
.about-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  direction: ltr;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: rgb(255, 193, 7);
  /* text-shadow: 2px 2px 4px rgba(0,0,0,0.6); */
}

.about-text p {
  font-size: 17px;
  line-height: 1.6;
  color: rgb(48, 47, 47);
  margin-bottom: 15px;
  text-align: justify;
}

/* Slide-In Animations */
.slide-in-left, .slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 2s ease-out;
}

.slide-in-left {
  transform: translateX(-100px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Call to Action Section */
.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px; /* Set a height for the section */
  color: white;
  overflow: hidden;
}

/* Video Background */
.cta-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Send the video behind the content */
}

/* Content wrapper (Text section) */
.cta-content {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  align-items: center;
  text-align: center; /* Ensure text is centered */
  z-index: 1;
}

/* Description section */
.cta-description {
  flex: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black background */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.cta-description h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-description p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-description .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color:  rgb(255, 193, 7);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-description .cta-button:hover {
  background-color: rgb(172, 129, 0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
  }

  .cta-description {
    max-width: 100%;
  }
}

.features {
  padding: 30px 30px;
  background-color: #222; /* Dark background for contrast */
}

.main_title_2 {
  text-align: center;
  margin-bottom: 20px;
}

.main_title_2 h2 {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(255, 193, 7);
  margin: 10px 0;
}

.features-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.btn-warning {
  background-color: rgb(255, 193, 7);
  border-color: rgb(255, 193, 7);
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
}

/* Counters Section */
.counters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* Ensures even spacing between counter boxes */
}

.counter-box {
  background: rgba(216, 206, 206, 0.2); /* lighter transparency */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  flex: 1 1 30%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;

  /* ✨ glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Counter Number */
.counter-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.counter-box .counter {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(255, 193, 7);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .features {
    padding: 20px;
  }

  .scnAff, .counters {
    padding: 10px;
  }

  .main_title_2 h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .counter-box h3, .counter {
    font-size: 1.5rem;
  }

  .counters .counter-box {
    height: 180px; /* Slightly smaller on mobile */
    flex: 1 1 30%; /* Ensures 3 items per row on small screens */
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* features faculty */
.box_grid {
  position: relative;  /* important for name overlay */
  text-align: center;
  border-radius: 90px;
  overflow: hidden;
}

.box_grid img {
  width: 70px;       /* image size */
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

/* name overlay */
.faculty-name {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(90, 89, 89, 0.747);
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
  color: rgb(255, 193, 7);
}

/* header menu */
.header {
  position: sticky;
  top: 0;
  background: #ffc107;
  z-index: 1000;
  border-bottom: 1px solid #000;
  box-shadow: 0 2px 6px rgb(0, 0, 0);
  direction: ltr;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

#logo img {
  height: 60px;
}

/* ===== Main Menu ===== */
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  text-decoration: none;
  padding: 10px 10px;
  display: block;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.main-menu ul li a:hover {
  color: white;
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
  transition: all 0.3s ease;
}
	.main-menu .mega > ul {
		display: none;              /* IMPORTANT */
		position: absolute;
		
		grid-template-columns: repeat(2, 1fr);
		column-gap: 24px; /* space between columns */
		row-gap: 8px;     /* space between items vertically */
		z-index: 999;
		}
		.main-menu .mega:hover > ul {
		display: grid;              /* or block if you remove columns */
		}

		.main-menu .mega > ul li a {
		padding: 6px 10px;
		white-space: nowrap;
		}
		html[dir="ltr"] .main-menu .mega > ul {
          left: 0;
          right: auto;
          text-align: left;
        }

/* ===== Dropdown ===== */
.dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 6px;
  min-width: 200px;
  z-index: 999;
}

.dropdown:hover ul {
  display: block;
}

.dropdown ul li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown ul li a:hover {
  background: #ffc10781;
  color: #111;
}

/* ===== Mobile Menu ===== */
.btn_mobile {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .btn_mobile {
    display: block;
  }

  .main-menu {
    display: none;
    width: 100%;
    background: #fff;
    padding: 15px;
    color: #111;
  }

  .main-menu.active {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .dropdown ul li {
    position: static;
    display: none;
    box-shadow: none;
    padding: 10px 0;
    min-width: 60%;
  }

  .main-menu li a:hover,
  .main-menu li a:active,
  .main-menu li a:focus {
    color: #111;               /* text turns black */
    background-color: #ffc10781;  /* background turns yellow */
  }
}

/* slider */
#full-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Slider itself */
#layerslider {
  width: 100% !important;
  height: 50vh !important;
}

#layerslider .ls-slide {
  position: relative !important;
}

/* strong override for the LayerSlider layer */
#layerslider .ls-l.slide_typo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;

  display: flex !important;
  justify-content: center;
  align-items: center;

  width: 100% !important;
  height: 100%;
  max-width: 100% !important;
  padding: 0.5em 1em !important;
  box-sizing: border-box !important;

  text-align: center !important;
  z-index: 9999 !important;

  font-size: 3.75rem !important;
  font-weight: bold;
  color: #fff !important;

  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}

/* Tablet */
@media (max-width: 992px) {
  #layerslider .ls-l.slide_typo {
    font-size: 2.25rem !important;
    max-width: 85% !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #layerslider .ls-l.slide_typo {
    font-size: 1.4rem !important;
    max-width: 95% !important;
  }
}

/* Announcement bar */
.announcement-bar {
  position: relative;
  width: 100%;
  background-color: #ffc;
  overflow: hidden;
  padding: 5px 0;
  font-size: 14px;
  direction: ltr;
}

.announcement-track {
  display: flex;
  animation: scroll-announcement 15s linear infinite;
  white-space: nowrap;
}

.announcement-text {
  margin-right: 20px;
  flex-shrink: 0;
}

/* Keyframes for scrolling */
@keyframes scroll-announcement {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Media query for extra small screens */
@media (max-width: 480px) {
  .announcement-bar {
    font-size: 12px;
  }
}

/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url('/img/bg-2.jpg') center/cover no-repeat;
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 15px;
  box-sizing: border-box;
}

.about-hero .about-text {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
}

/* Features Section */
.about-features .feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 0px 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  font-size: 1rem;
}

.about-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-features .icon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.about-features .icon-title .icon {
  font-size: 1.5rem;
}

.about-features .icon-title h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #222;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-card-large {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .about-features .row.g-4 {
    flex-direction: column;
  }
  
  .feature-card-large,
  .feature-card {
    text-align: center;
  }
}

/* team members secton */
.team-member {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  transition: 0.4s ease;
}

.team-member:hover {
  background-color: #ffc107;
  transform: translateY(-5px);
}

.team-member img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* contact page */
.map-wrapper {
  width: 100%;
  height: 80%;
  padding-bottom: 75%;
  position: relative;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-form {
  position: relative;
}

.contact-form .coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 0 0;
  z-index: 10;
}

.contact-form .coming-soon-overlay span {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.about-section h1 {
  font-size: 3rem;
  font-weight: bold;
}

.about-section img {
  max-width: 150px;
  height: 150px;
}

/* Tablets */
@media (max-width: 992px) {
  .about-section h1 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-section h1 {
    font-size: 2rem;
  }
  .about-section img {
    margin-top: 20px;
  }
}

/* Department Cards */
.department-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    text-align: left; /* ensure text aligns left for LTR */
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Department Title */
.dept-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left; /* enforce LTR alignment */
}

/* Program List Items */
.program-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
    text-align: left; /* LTR alignment */
    direction: ltr; /* explicitly set LTR */
}

/* Icon spacing */
.program-item i {
    margin-right: 0.5rem; /* spacing between icon and text */
    margin-left: 0; /* ensure no left margin */
}
