/* Define CSS Variables for Light Mode (default) */
:root {
  --bg-color: #fff;
  --text-color: #2a2a2a;
  --heading-color: #1f272b;
  --link-color: #3CF;
  --link-hover-color: #011f60;
  --link-hover-colora: #3CF;
  --button-bg: #3CF;
  --button-text: #fff;
  --section-bg: #f8f9fa;
  --card-bg: #fff;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-color: #1f272b;
  --text-color: #e0e0e0;
  --heading-color: #fff;
  --link-color: #f5a425;
  --link-hover-color: #fff;
  --button-bg: #011f60;
  --button-text: #3CF;
  --section-bg: #2c3438;
  --card-bg: #343b40;
  --shadow-color: rgba(255, 255, 255, 0.1);
}

/* Font & Reset CSS */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: var(--link-color);
}

a:hover {
  color: var(--link-hover-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: var(--heading-color);
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: var(--text-color);
}

img {
  width: 100%;
  overflow: hidden;
}

/* Global Styles */
html,
body {
  background: var(--bg-color);
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #f5a425;
  color: #fff;
}

::-moz-selection {
  background: #f5a425;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: var(--button-text);
  background-color: var(--button-bg);
  border: 1px solid white;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red-login a {
  font-size: 13px;
  color: var(--button-text);
  background-color: var(--button-bg);
  padding: 0px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}
.main-button-red a:hover {
  opacity: 0.9;
  background-color: var(--link-hover-color);
  color: var(--button-bg);
}

.main-button-yellow a {
  font-size: 13px;
  color: var(--button-text);
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  line-height: 40px;
  margin-top: 0px;
  margin-bottom: 50px; 
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

/* Header */
.sub-header {
  background-color: var(--card-bg);
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: var(--text-color);
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: var(--text-color);
  font-size: 14px;
  transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
  color: var(--link-hover-color);
}

.sub-header .left-content p em {
  font-style: normal;
  color: #f5a425;
}

.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.theme-toggle-btn:hover {
  color: var(--link-hover-color);
}

.background-header {
  background-color: var(--bg-color) !important;
  height: 80px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px var(--shadow-color) !important;
}

.background-header .main-nav .nav li a {
  color: var(--text-color) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: var(--text-color) !important;
}

.background-header .main-nav .nav li:hover a {
  color: var(--link-hover-color) !important;
}

.background-header .nav li a.active {
  color: var(--link-hover-color) !important;
}

.header-area {
  background-color: rgba(250,250,250,0.15);
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: var(--link-hover-color) !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: var(--link-hover-color) !important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
}

.background-header .main-nav .nav li.has-sub:after {
  color: var(--text-color);
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 var(--shadow-color);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: var(--card-bg);
  color: var(--text-color) !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: var(--bg-color);
  color: var(--link-hover-color) !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--text-color);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: var(--text-color);
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--text-color);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: var(--text-color);
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: var(--text-color);
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: var(--text-color);
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: var(--text-color);
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: var(--text-color);
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: var(--link-hover-color);
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: var(--text-color);
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--link-hover-color) !important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: var(--section-bg);
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--card-bg);
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: var(--section-bg) !important;
    color: var(--text-color) !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: var(--bg-color) !important;
    color: var(--link-hover-color) !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: var(--text-color);
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, 
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* Banner */
.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 110vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(22, 25, 27, 0.378);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }
  .main-banner .caption h2 {
    font-size: 36px;
  }
}

/* Services */
.services {
  margin-top: -135px;
  position: absolute;
  width: 100%;
}

.services .item {
  background-image: url(../images/service-item-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  padding: 40px;
}

.services .item .icon {
  max-width: 60px;
  margin: 0 auto;
}

.services .item h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.services .item p {
  color: #fff;
  font-size: 13px;
}

.services .owl-nav {
  display: inline-block !important;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-25px);
}

.services .owl-nav .owl-prev {
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.services .owl-nav .owl-prev span,
.services .owl-nav .owl-next span {
  opacity: 0;
}

.services .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-color);
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: var(--card-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.services .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.services .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-color);
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: var(--card-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

/* Courses */
section.our-courses {
  background-image: url(../images/meetings-bg.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 130px;
}

.our-courses .item .down-content {
  background-color: var(--card-bg);
}

.our-courses .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: var(--heading-color);
  text-align: center; 
  border-bottom: 1px solid #eee;
}

.our-courses .item .down-content .info {
  padding: 25px;
}

.our-courses .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.our-courses .item .down-content .info ul li i {
  color: #f5a425;
  font-size: 14px;
}

.our-courses .item .down-content .info span {
  color: var(--button-bg);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.our-courses .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.our-courses .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.our-courses .owl-dots .owl-dot {
  transition: all .5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.our-courses .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}

.our-courses .owl-nav .owl-prev {
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.our-courses .owl-nav .owl-prev span,
.our-courses .owl-nav .owl-next span {
  opacity: 0;
}

.our-courses .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-color);
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: var(--card-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.our-courses .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.our-courses .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: var(--text-color);
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: var(--card-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

/* Facts */
section.our-facts {
  background-image: url(../images/facts-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 125px 0px;
}

section.our-facts h2 {
  font-size: 38px;
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.count-area-content {
  text-align: center;
  background-color: rgba(250,250,250,0.15);
  border-radius: 20px;
  padding: 25px 30px 35px 30px;
  margin: 15px 0px;
}

.percentage .count-digit:after {
  content: '%';
  margin-left: 3px;
}

.count-digit {
  margin: 5px 0px;
  color: #f5a425;
  font-weight: 700;
  font-size: 36px;
}

.count-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
}

.new-students {
  margin-top: 45px;
}

section.our-facts .video {
  text-align: center;
  margin-left: 70px;
  background-image: url(../images/video-item-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}

section.our-facts .video img {
  padding: 170px 0px;
  max-width: 56px;
}

/* Contact Us */
section.contact-us {
  background-image: url(../images/meetings-bg.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 0px 0px;
}

section.contact-us #contact {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
}

section.contact-us #contact h2 {
  text-transform: uppercase;
  color: var(--heading-color);
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: var(--section-bg);
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 20px;
  background-color: var(--section-bg);
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  padding: 15px;
  margin-bottom: 30px;
}

section.contact-us #contact button {
  font-size: 13px;
  color: var(--button-text);
  background-color: var(--button-bg);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us .right-info {
  background-color: var(--button-bg);
  border-radius: 20px;
  padding: 40px;
}

section.contact-us .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.contact-us .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.contact-us .right-info ul li h6 {
  color: var(--button-text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.contact-us .right-info ul li span {
  display: block;
  font-size: 18px;
  color: var(--button-text);
  font-weight: 700;
}

.footer {
  text-align: center;
  margin-top: 140px;
  border-top: 1px solid rgba(250,250,250,0.15);
  padding: 50px 0px;
  background: var(--section-bg);
}

.footer p {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-color);
}

.footer p a {
  color: #f5a425;
}

/* Announcements Section */
.announcements {
  padding: 60px 0;
  background: var(--section-bg);
}

.announcement-list {
  margin-bottom: 20px;
}

.announcement-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px var(--shadow-color);
  transition: transform 0.3s ease;
}

.announcement-item:hover {
  transform: translateY(-5px);
}

.announcement-item .icon {
  font-size: 1.5em;
  margin-right: 15px;
}

.announcement-item p {
  margin: 0;
  font-size: 1.1em;
  color: var(--text-color);
}

.announcement-item p strong {
  color: var(--heading-color);
}

.announcement-item a {
  color: #e74c3c;
  text-decoration: none;
}

.announcement-item a:hover {
  text-decoration: underline;
}

.cta-button {
  text-align: center;
  margin-top: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background: var(--bg-color);
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px var(--shadow-color);
}

.feature-item:hover {
  background: #e74c3c;
  color: #fff;
  transform: scale(1.05);
}

.feature-item .icon {
  font-size: 2em;
  color: #f5a425;
  margin-bottom: 15px;
}

.feature-item:hover .icon {
  color: #fff;
}

.feature-item h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.feature-item:hover h4 {
  color: #fff;
}

.feature-item p {
  font-size: 1em;
  color: var(--text-color);
}

.feature-item:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 1300px) {
  .services .owl-nav .owl-next {
    right: -30px;
  }
  .services .owl-nav .owl-prev {
    left: -25px;
  }
  .our-courses .owl-nav .owl-next {
    right: -30px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -25px;
  }
}

@media (max-width: 1200px) {
  .services .owl-nav .owl-next {
    right: -70px;
  }
  .services .owl-nav .owl-prev {
    left: -65px;
  }
  .our-courses .owl-nav .owl-next {
    right: -70px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -65px;
  }
}

@media (max-width: 1085px) {
  .services .owl-nav .owl-next {
    right: -30px;
  }
  .services .owl-nav .owl-prev {
    left: -25px;
  }
  .our-courses .owl-nav .owl-next {
    right: -30px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -25px;
  }
}

@media (max-width: 1005px) {
  .services .owl-nav .owl-next {
    display: none;
  }
  .services .owl-nav .owl-prev {
    display: none;
  }
  .our-courses .owl-nav .owl-next {
    display: none;
  }
  .our-courses .owl-nav .owl-prev {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner .caption {
    top: 60%;
  }
  .main-banner .caption h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  .main-banner .caption .main-button-red {
    margin-top: 15px;
  }
  .services {
    margin-top: 60px;
  }
  section.our-facts .video {
    margin-left: 0px;
    margin-top: 15px;
  }
  section.contact-us #contact {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sub-header .left-content p {
    display: none;
  }
  .sub-header .right-icons {
    text-align: center;
  }
  .header-area .main-nav .nav li ul.sub-menu li a {
    color: var(--text-color);
  }
}

.white-text {
  color: #fff;
}



/* Section Styling */
.section {
  padding: 80px 0;
  background: var(--section-bg);
}

/* Card Styling */
.card {
  background: var(--card-bg);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px var(--shadow-color);
}

.card-body {
  padding: 20px;
}

.card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.card h4 i {
  margin-right: 10px;
  color: #f5a425;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 10px 0;
  margin-top: 20px;
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item.active {
  color: #f5a425;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #f5a425;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f5a425;
  border-radius: 50%;
  top: 30px;
}

.timeline-item:nth-child(odd):before {
  right: -6px;
}

.timeline-item:nth-child(even):before {
  left: -6px;
}

.timeline-content {
  background: var(--card-bg);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.timeline-content p {
  font-size: 14px;
}

/* Faculty Table */
.faculty-table {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
}

.faculty-table th,
.faculty-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faculty-table th {
  background: var(--button-bg);
  color: var(--button-text);
  text-transform: uppercase;
}

.faculty-table tr:hover {
  background: rgba(245, 164, 37, 0.1);
}

/* List Inline */
.list-inline-item {
  margin-right: 20px;
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .timeline:before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 40px;
  }
  .timeline-item:before {
    left: 14px !important;
    right: auto !important;
  }
}

/* Acadmics */

/* Tabs Styling */
.nav-tabs {
  border-bottom: 2px solid #f5a425;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  color: #f5a425;
  border-bottom: 3px solid #f5a425;
}

.tab-content .card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.3s ease;
}

.tab-content .card:hover {
  transform: translateY(-5px);
}

.tab-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tab-content .card-body ul {
  list-style: none;
  padding-left: 0;
}

.tab-content .card-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.tab-content .card-body ul li:before {
  content: "✔";
  color: #f5a425;
  position: absolute;
  left: 0;
}

/* Pills for Higher Secondary Streams */
.nav-pills .nav-link {
  background: var(--button-bg);
  color: var(--button-text);
  margin-right: 10px;
  border-radius: 20px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background: #f5a425;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .nav-tabs .nav-link {
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-pills .nav-link {
    margin-bottom: 10px;
  }
}

/* Ensure @import (if any) is at the very top */
@import url('https://some-other-font.css'); /* Only if needed, otherwise remove */

/* Accordion Styling */
.accordion .card {
  background: var(--card-bg);
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: all 0.3s ease;
}

.accordion .card-header {
  background: var(--button-bg);
  border-bottom: none;
  padding: 15px;
}

.accordion .card-header h3,
.accordion .card-header h5 {
  margin: 0;
  font-weight: 600;
  color: var(--button-text);
}

.accordion .btn-link {
  color: var(--button-text);
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 18px;
  transition: color 0.3s ease;
}

.accordion .btn-link:hover,
.accordion .btn-link:focus {
  text-decoration: none;
  color: #f5a425;
}

.accordion .card-body {
  padding: 20px;
  color: var(--text-color);
}

.accordion .card-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.accordion .card-body ul {
  list-style: none;
  padding-left: 0;
}

.accordion .card-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.accordion .card-body ul li:before {
  content: "✔";
  color: #f5a425;
  position: absolute;
  left: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .accordion .btn-link {
    font-size: 16px;
  }
  .accordion .card-body h4 {
    font-size: 18px;
  }
}

.gallery-grid {
  margin-top: 40px;
}

.gallery-item {
  margin-bottom: 50px; /* Increased spacing for a premium feel */
}

.gallery-content {
  position: relative;
  width: 350px; /* Fixed width */
  height: 300px; /* Fixed height for the entire container */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect on container */
  margin: 0 auto; /* Center the fixed-size div within the column */
}

.gallery-content:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.video-fixed {
  width: 350px; /* Matches container width */
  height: 220px; /* Fixed height for video, leaving space for caption */
  object-fit: cover; /* Ensures video fills the space without distortion */
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.gallery-caption {
  padding: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53); /* Gradient background for vibrancy */
  color: #fff;
  text-align: center;
  height: 80px; /* Fixed height for caption */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.gallery-caption h4 {
  margin: 0;
  font-size: 22px; /* Bold and larger font */
  font-weight: 700;
  text-transform: uppercase; /* Uppercase for emphasis */
  letter-spacing: 1px; /* Slight spacing for elegance */
}
/* Ensure full responsiveness */
@media (max-width: 991px) {
  .main-banner .caption h2 {
    font-size: 28px; /* Reduce heading size on tablets */
    line-height: 36px;
  }
  .main-button-red a {
    padding: 10px 20px; /* Smaller buttons */
    font-size: 12px;
  }
  .services {
    margin-top: 0; /* Remove negative margin on smaller screens */
    position: relative;
  }
  .services .item {
    padding: 20px; /* Reduce padding */
  }
  .announcement-item {
    flex-direction: column; /* Stack icon and text */
    text-align: center;
  }
  .announcement-item .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .feature-item {
    margin-bottom: 30px; /* More spacing between items */
  }
  .our-courses .section-heading h2 {
    font-size: 20px; /* Smaller headings */
  }
  .contact-us .right-info {
    margin-top: 30px; /* Stack contact info below form */
  }
}

@media (max-width: 767px) {
  .main-banner .caption h2 {
    font-size: 20px; /* Even smaller on mobile */
    line-height: 28px;
  }
  .main-banner .caption {
    top: 40%; /* Adjust caption position */
  }
  .main-button-red a {
    display: block; /* Stack buttons vertically */
    margin-bottom: 10px;
  }
  .sub-header .right-icons ul li {
    margin-left: 10px; /* Tighter spacing */
  }
  .services .owl-carousel .item {
    max-width: 100%; /* Ensure carousel items fit */
  }
  .our-courses .col-lg-6, .our-courses .col-4 {
    width: 100%; /* Stack columns */
    margin-bottom: 20px;
  }
  .contact-us #contact {
    padding: 20px; /* Reduce padding */
  }
}

/* Fix video responsiveness */
#bg-video {
  width: 100%;
  height: auto; /* Let height adjust naturally */
  min-height: 100vh; /* Ensure it fills the viewport */
  object-fit: cover; /* Maintain aspect ratio */
}