/*============================================================================================*/
/* 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;
}

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: right;
}
@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 {
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* X-offset, Y-offset, blur, color */
  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%; /* يحافظ على عرض الـrow */
   display: flex;
    justify-content: center;   /* توسيط الأعمدة أفقياً */
    align-items: center;       /* توسيطها عمودياً */
    flex-wrap: wrap;           /* ليبقى متجاوب */
    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-left: 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: right;
  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-right: 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:hover span {
  background: #3f9fff !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3f9fff !important;
}
.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-left: 200px;
  color: #555;
  margin-bottom: 30px;
  min-height: 150px;
}
@media (max-width: 767px) {
  a.box_news {
    min-height: inherit;
    padding-left: 0;
  }
}
a.box_news figure {
  width: 200px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  left: 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;
  left: 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;
  right: 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;
}
@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-right: 5px;
}
a.box_news ul li:last-child {
  margin-right: 0;
}
a.box_news ul li:last-child:after {
  content: '';
  margin: 0;
}
a.box_news ul li:after {
  content: '-';
  margin: 0 0 0 10px;
}

a.grid_item {
  display: block;
  margin-bottom: 30px;
}
a.grid_item .info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25px 25px 10px 25px;
  color: #fff;
  left: 0;
  bottom: 0;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  box-sizing: border-box;
}
a.grid_item .info small {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
}
a.grid_item .info small i {
  font-size: 18px;
  font-size: 1.125rem;
  margin-right: 10px;
}
a.grid_item .info h3 {
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
}
a.grid_item .info p {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}
a.grid_item figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  a.grid_item figure {
    height: 200px !important;
  }
}
a.grid_item figure img {
  -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;
  opacity: 0;
}
a.grid_item:hover figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.animated a.grid_item .info {
  animation: color 0.7s ease-in-out;
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

.animated a.grid_item figure img {
  animation: color 0.5s ease-in-out;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-------- 2.4 Course detail--------*/

 .secondary_nav {
  direction: rtl; /* ensure LTR */
  background: #333;
  padding: 15px 0;
  z-index: 999;
}

.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;
  }
}

.intro_title h2 {
  display: inline-block;
}
.intro_title ul {
  float: right;
  margin: 10px 0 0 0;
}
.intro_title ul li {
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}

.list_lessons ul {
  margin: 0;
}
.list_lessons ul li {
  border-bottom: 1px solid #ededed;
  padding: 5px 0;
}
.list_lessons ul li a {
  color: #555;
}
.list_lessons ul li a.video:before {
  font-family: 'ElegantIcons';
  content: "\49";
  margin-right: 10px;
}
.list_lessons ul li a.txt_doc:before {
  font-family: 'ElegantIcons';
  content: "\68";
  margin-right: 10px;
}
.list_lessons ul li span {
  float: right;
}

section#description, section#lessons, section#reviews {
  border-bottom: 3px solid #ededed;
  margin-bottom: 45px;
}

section#reviews {
  border-bottom: none;
}

#review_summary {
  text-align: center;
  background-color: #92278f;
  color: #fff;
  padding: 20px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  #review_summary {
    margin-bottom: 15px;
  }
}
#review_summary strong {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1;
}

.reviews-container .progress {
  margin-bottom: 10px;
}
.reviews-container .progress-bar {
  background-color: #92278f;
}
.reviews-container .review-box {
  position: relative;
  margin-bottom: 25px;
  padding-left: 100px;
  min-height: 100px;
}
@media (max-width: 767px) {
  .reviews-container .review-box {
    padding-left: 0;
  }
}
.reviews-container .rev-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.reviews-container .rev-thumb img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .reviews-container .rev-thumb {
    position: static;
    margin-bottom: 10px;
  }
}
.reviews-container .rev-content {
  position: relative;
  padding: 25px 25px 0 25px;
  border: 1px solid #ededed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.reviews-container .rev-info {
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

.box_detail {
  padding: 25px 25px 15px 25px;
  border: 1px solid #ededed;
  background-color: #f8f8f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.box_detail .price {
  line-height: 1;
  border-bottom: 1px solid #ededed;
  margin: 0 -25px 25px -25px;
  padding: 5px 25px 15px 25px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
.box_detail .price .original_price {
  color: #3f9fff;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
.box_detail .price .original_price em {
  text-decoration: line-through;
  margin: 0 10px;
  font-style: normal;
}
.box_detail h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
}
.box_detail ul {
  margin-bottom: 0;
}
.box_detail ul li {
  margin-bottom: 5px;
}
.box_detail ul li i {
  margin-right: 8px;
}
.box_detail figure {
  position: relative;
  background-color: #000;
}
.box_detail figure img {
  opacity: 0.8;
}
.box_detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}
.box_detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -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;
  z-index: 9;
}
.box_detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

/*-------- 2.5 Login/register/admission--------*/
#login_bg, #register_bg, #admission_bg {
  background: url(http://via.placeholder.com/1600x1067/ccc/fff/bg_login.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
}

#register_bg {
  background: url(http://via.placeholder.com/1600x1067/ccc/fff/bg_register.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#admission_bg {
  background: url(http://via.placeholder.com/1600x1067/ccc/fff/bg_admission.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#login figure, #register figure {
  text-align: center;
  margin-bottom: 30px;
  background: #480048;
  background: -webkit-linear-gradient(left, #480048, #C04848);
  background: linear-gradient(to right, #480048, #C04848);
  margin: -45px -60px 30px -60px;
  padding: 20px 60px 25px 60px;
}
@media (max-width: 767px) {
  #login figure, #register figure {
    margin: -30px -30px 20px -30px;
    padding: 15px 60px 20px 60px;
  }
}
#login aside, #register aside {
  width: 430px;
  padding: 45px 60px 60px 60px;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
  background-color: #fff;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #login aside, #register aside {
    width: 100%;
    padding: 30px;
  }
}
#login aside form, #register aside form {
  margin-bottom: 60px;
  display: block;
}
#login aside .copy, #register aside .copy {
  text-align: center;
  position: absolute;
  height: 30px;
  left: 0;
  bottom: 30px;
  width: 100%;
  color: #999;
  font-weight: 500;
}

.access_social {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .access_social {
    margin-top: 30px;
  }
}

.divider {
  text-align: center;
  height: 1px;
  margin: 30px 0 15px 0;
  background-color: #ededed;
}
.divider span {
  position: relative;
  top: -20px;
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  font-style: italic;
}

a.social_bt {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  min-width: 200px;
  margin-bottom: 10px;
  display: block;
  padding: 12px;
  line-height: 1;
  position: relative;
  -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;
}
a.social_bt:hover {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
}
a.social_bt.facebook:before, a.social_bt.google:before, a.social_bt.linkedin:before {
  font-family: 'ElegantIcons';
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
a.social_bt.facebook {
  background-color: #3B5998;
}
a.social_bt.facebook:before {
  content: "\e093";
}
a.social_bt.google {
  background-color: #DC4E41;
}
a.social_bt.google:before {
  content: "\e096";
  top: 12px;
}
a.social_bt.linkedin {
  background-color: #0077B5;
}
a.social_bt.linkedin:before {
  content: "\e09d";
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #fff !important;
  color: #444 !important;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.form-control {
  padding: 12px 12px;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ededed;
}

.bg_color_1 {
  background-color: #fff;
}

.box_1 {
  background-color: #121921;
  color: #fff;
  padding: 45px;
  opacity: 0;
}
.box_1 p {
  opacity: 0.8;
}
.box_1 h3 {
  color: #fff;
}

.badge_info {
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  line-height: 1;
  padding: 5px 8px 4px 8px;
  background-color: #FFC107;
  margin-left: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  top: -2px;
}

.animated .box_1 {
  animation: color 0.3s ease-in-out;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.call_section {
  background: url(http://via.placeholder.com/1600x1067/ccc/fff/bg_call_section.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 400px;
  padding: 10% 0;
}

.call_section_admission {
  background: #FFC107 url(../img/pattern_1.svg) center center repeat fixed;
  padding: 90px 0 90px 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 991px) {
  .call_section_admission {
    padding: 60px 0 35px 0;
  }
}
.call_section_admission .section_button {
  position: relative;
  display: inline-block;
}
.call_section_admission .section_button svg {
  width: 70px;
  height: 70px;
  position: absolute;
  left: -80px;
  top: -42px;
}
@media (max-width: 767px) {
  .call_section_admission .section_button svg {
    display: none;
  }
}
.call_section_admission .section_button svg .draw-arrow {
  stroke-width: 4;
  stroke: #3f9fff;
  fill: none;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-iteration-count: once;
  -webkit-animation-iteration-count: once;
  -moz-animation-iteration-count: once;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
}
.call_section_admission .section_button svg .draw-arrow.tail-1 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
.call_section_admission .section_button svg .draw-arrow.tail-2 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
.call_section_admission h3 {
  color: #222;
  /* font-family: c, "Times New Roman", Times, serif; */
  font-style: italic;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 400;
  margin: 10px 0 60px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .call_section_admission h3 {
    font-size: 32px;
    font-size: 2rem;
    margin: 10px 0 30px 0;
  }
}

.animated .draw-arrow {
  animation-name: draw;
  -webkit-animation-name: draw;
  -moz-animation-name: draw;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.box_faq {
  position: relative;
  padding-left: 50px;
}
.box_faq h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
.box_faq i {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

/*-------- 3.2 Accordion --------*/
.card {
  border-radius: 0;
  border: 0;
  margin-bottom: 5px;
}

.card-header h5 {
  font-size: 16px;
  font-size: 1rem;
}
.card-header h5 a {
  border: 0;
  display: block;
  color: #555;
}
.card-header h5 a i.indicator {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 5px;
  color: #3f9fff;
}

/*-------- 3.3 List --------*/
ul.list_ok {
  list-style: none;
  margin: 25px 0 30px 0;
  padding: 0;
}
ul.list_ok li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
ul.list_ok li:before {
  /* font-family: 'ElegantIcons'; */
  content: "\52";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 32px;
  font-size: 2rem;
  color: #8dc63f;
}

ul.bullets {
  line-height: 1.8;
  margin-bottom: 30px;
}
ul.bullets li {
  position: relative;
  padding-left: 20px;
}
ul.bullets li:before {
  font-style: normal;
  font-weight: normal;
  /* font-family: 'ElegantIcons'; */
  font-size: 14px;
  font-size: 0.875rem;
  content: "\5c";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------- 3.4 Input forms --------*/
.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  overflow: hidden;
}

.input_field {
  position: relative;
  display: block;
  float: right;
  border: none;
  border-radius: 0;
  color: #aaa;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
  margin-top: 1em;
  padding: 1.3rem 0.15em;
  width: 100%;
  background: transparent;
  color: #555;
  outline: none;
}
.input_field:focus + .input_label::after {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input_label {
  display: inline-block;
  float: right;
  color: #999;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.25em;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
}
.input_label::before, .input_label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-bottom: 2px solid #ddd;
}
.input_label::after {
  margin-top: 0;
  border-bottom: 2px solid #3f9fff;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
  transition: transform 0.3s;
}

.input__label-content {
  display: block;
  padding: 1.6em 0;
  width: 100%;
  position: absolute;
}

.input--filled .input_label::after {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input_field:focus + .input_label .input__label-content,
.input--filled .input__label-content {
  -webkit-animation: anim-1 0.3s forwards;
  animation: anim-1 0.3s forwards;
  color: #999;
}

@-webkit-keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    -moz-transform: translate3d(1em, 0, 0);
    -ms-transform: translate3d(1em, 0, 0);
    -o-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    -moz-transform: translate3d(-1em, -40%, 0);
    -ms-transform: translate3d(-1em, -40%, 0);
    -o-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    -moz-transform: translate3d(0, -40%, 0);
    -ms-transform: translate3d(0, -40%, 0);
    -o-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
}
/*-------- 3.5 Spacing --------*/
.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_10 {
  margin-top: 10px;
}

.add_top_15 {
  margin-top: 15px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}
@media (max-width: 575px) {
  .margin_60_35 {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .margin_120 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .margin_120 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.margin_120_95 {
  padding-top: 120px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .margin_120_95 {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .margin_120_95 {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_120_0 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .margin_120_0 {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .margin_120_0 {
    padding-top: 30px;
  }
}

.margin_30_95 {
  padding-top: 30px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .margin_30_95 {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .margin_30_95 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .hidden_tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden_mobile {
    display: none !important;
  }
}



/*announcment-bar    */
.announcement-bar {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 8px 0;
  direction: rtl;
  background-color: rgb(255, 193, 7)!important;
  font-weight: bold;
}

/* المسار الذي يتحرك بداخله النص */
.announcement-track {
display: inline-block;
white-space: nowrap;                /* منع النص من النزول لسطر جديد */
animation: scroll-right 30s linear infinite; /* الحركة */
}

/* شكل النصوص */
.announcement-text {
display: inline-block;
margin: 0 30px;       /* مسافة بين كل إعلان */
font-size: 16px;
color: #333;
}

/* الحركة من اليسار إلى اليمين */
@keyframes scroll-right {
0%   { transform: translateX(-100%); } /* يبدأ من خارج يسار الشاشة */
100% { transform: translateX(100%); }  /* يخرج من يمين الشاشة */
}

/*  about section  */
    .about-section {
      padding: 40px 20px;
      background-color: #f9f9f9;
    }

    .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 */
        }
    
        .counters .counter-box {
          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;  /* مهم لوضع الاسم فوق الصورة */
				text-align: center;
				border-radius:90px;
				overflow: hidden;
			}

			.box_grid img {
				width: 70px;       /* حجم الصورة */
				height: auto;
				object-fit: contain;
				display: block;
				margin: 0 auto;
				border-radius: 50%;
			}

			/* اسم الكلية فوق منتصف الصورة */
			.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 manu   */
      		.header {
		position: sticky;
		top: 0;
		background: #ffc107;
		z-index: 1000;
		border-bottom: 1px solid #000;
		box-shadow: 0 2px 6px rgb(0, 0, 0);
		}

		.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;                     /* لون النص */
		/* background: rgba(255, 255, 255, 0); خلفية شفافة */
		border: 1px solid #ffffff;          /* لون الحد */
		border-radius: 8px;
		box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff; /* تأثير Glow على الحد */
		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;
		}


		/* ===== Dropdown ===== */
		.dropdown ul {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		background: #fff;
		border-radius: 6px;
		/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
		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: #f5f5f5; */
    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; /* horizontal center */
      align-items: center;     /* vertical 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); /* full-width highlight */
      border-radius: 0;               /* remove if you want square edges */
    }

    /* 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; /* light yellow background */
    overflow: hidden;
    padding: 5px 0;
    font-size: 14px;
}

.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; /* adjust height as needed */
  background: url('/img/bg-2.jpg') center/cover no-repeat;
}

/* Overlay fills the hero and centers content */
.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; /* horizontal center */
  align-items: center;     /* vertical center */
  text-align: center;
  padding: 15px 15px;         /* safe spacing on mobile */
  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; /* vertical center */
  align-items: center;     /* horizontal 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;   /* vertically center icon & h3 */
  justify-content: center; /* horizontal center in card */
  gap: 10px; /* space between icon and h3 */
  margin-bottom: 15px;
}

.about-features .icon-title .icon {
  font-size: 1.5rem;   /* adjust size as needed */
}

.about-features .icon-title h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #222;
}

/* Large card for Mission */


/* Responsive */
@media (max-width: 992px) {
  .feature-card-large {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  /* Stack all vertically on small screens */
  .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 */
  /* Make map responsive */
    .map-wrapper {
      width: 100%;
      height: 80%;
      padding-bottom: 75%; /* 4:3 ratio */
      position: relative;
    }

    .map-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Coming Soon overlay */
    .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-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dept-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.program-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
}
