
/*@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');*/

:root {
            --body-font: 'Segoe UI', sans-serif;
            --heading-font: 'Yantramanav', sans-serif;
            --theme-color: #03254c;
            --theme-color2: #f4bc06;
            --theme-color-light: rgb(17, 110, 99, 0.09);
            --theme-bg-light: #fffaec;
            --body-text-color: #000;
            --color-white: #ffffff;
            --color-dark: #19232B;
            --hero-overlay-color: #000000;
            --slider-arrow-bg: rgba(255, 255, 255, 0.2);
            --box-shadow: 0 0 40px 5px rgb(0 0 0 / 14%);
            --box-shadow2: 0 0 40px 5px rgb(0 0 0 / 14%);
            --transition: all .5s ease-in-out;
            --transition2: all .3s ease-in-out;
            --border-info-color: rgba(0, 0, 0, 0.08);
            --border-info-color2: rgba(0, 0, 0, 0.05);
            --border-white-color: rgba(255, 255, 255, 0.08);
            --border-white-color2: rgba(255, 255, 255, 0.05);
            --footer-bg: #012758;
            --footer-bg2: #116E63;
            --footer-text-color: #F5FAFF;
            
            /* Additions for feature highlights based on design */
            --bs-blue: #0d6efd;
            --bs-green: #198754;
            --bs-red: #dc3545;
        }


/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

/* Modern Scrollbar */

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#edf2f7;
    border-radius:20px;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        var(--theme-color2),
        #d89d00
    );
    border-radius:20px;
    border:3px solid #edf2f7;
    transition:.3s;
}

::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(
        180deg,
        var(--theme-color),
        #021a37
    );
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--bs-black);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
  color:#000;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #212529;
  cursor: pointer;
  font-weight: bold;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #333333a8;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #333333a8;
  font-size: 16px;
  opacity: 1;
}


@media (min-width: 992px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.login-form .form-control::placeholder,.login-form select.form-control:first-child {
  color: #333333a8;
}

/*.container-fluid {*/
/*    padding-left: 30px;*/
/*    padding-right: 30px;*/
/*}*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-book {
  border: 5px solid var(--color-white);
  width: 100px;
  height: 61px;
  position: relative;
  perspective: 150px;
}

.loader-book-page {
  display: block;
  width: 50px;
  height: 60px;
  border: 5px solid var(--color-white);
  border-left: 5px solid var(--color-white);
  margin: 0;
  position: absolute;
  right: -4px;
  top: -4px;
  overflow: hidden;
  background: var(--theme-color);
  transform-style: preserve-3d;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.loader-book-page:nth-child(1) {
  -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite;
  animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite;
}

.loader-book-page:nth-child(2) {
  -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite;
  animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite;
}

.loader-book-page:nth-child(3) {
  -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite;
  animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite;
}

@-webkit-keyframes loader-book {
  0% {
    -webkit-transform: rotateY( 0deg);
    transform: rotateY( 0deg);
  }
  20% {
    background: var(--theme-color2);
  }
  40% {
    background: var(--theme-color2);
    -webkit-transform: rotateY( -180deg);
    transform: rotateY( -180deg);
  }
  100% {
    background: var(--theme-color);
    -webkit-transform: rotateY( -180deg);
    transform: rotateY( -180deg);
  }
}

@keyframes loader-book {
  0% {
    transform: rotateY( 0deg);
  }
  20% {
    background: var(--theme-color2);
  }
  40% {
    background: var(--theme-color2);
    transform: rotateY( -180deg);
  }
  100% {
    background: var(--theme-color);
    transform: rotateY( -180deg);
  }
}




/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}




/*====================
6. Margin & padding
======================*/

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-50 {
  padding: 50px 0;
}
.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}



/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
    text-transform: uppercase;
    /* letter-spacing: 4px; */
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-color2);
    position: relative;
    background: #03254c;
    padding: 10px;
    border-radius: 10px;
}



.site-title-tagline i{
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 50px;
  color:  var(--theme-color);
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span{
  color: var(--theme-color2);
} 

.site-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #03254c 0%,
        #f4bc06 50%,
        #03254c 100%
    );
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px; 
  border: 3px solid rgba(33, 46, 84, 1);
  border-right-color: transparent;
}

.heading-divider.light{
  border-color: rgba(255, 255, 255, 0.2);
  border-right-color: transparent;
}

.heading-divider::after {
  position: absolute;
  content: '';
  width: 30px;
  background-color: var(--theme-color);
  top: 0;
  bottom: 0;
  left: 18px;
}




/*====================
8. Theme button
======================*/
.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--theme-color2);
    color: #000;
    border: 2px solid var(--theme-color2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.theme-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    transition: .4s ease;
    z-index: -1;
}

/*.theme-btn:hover::before{*/
/*    left: 0;*/
/*}*/

.theme-btn:hover{
    border-color: var(--theme-color);
    background:#03254c;
    color:#fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.theme-btn:active{
    transform: translateY(-1px);
}

.theme-btn i{
    font-size: 14px;
    transition: transform .3s ease;
}

.theme-btn:hover i{
    transform: translateX(5px);
}
.btn-outline-light:hover i{
    transform: translateX(5px);
    transition: transform .3s ease;
}


/* White Button */

.theme-btn2{
    background: #fff;
    color: var(--theme-color2);
    border: 2px solid #e5e7eb;
}

.theme-btn2::before{
    background: var(--theme-color2);
}

.theme-btn2:hover{
    color: #fff;
    border-color: var(--theme-color2);
}


.pulse-animation {
    animation: customPulse 2s infinite;
}
@keyframes customPulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 188, 6, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(244, 188, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 188, 6, 0); }
}


/*====================
9. Container
======================*/

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1300px;
  }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color2);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 75px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
  
  
}



/*====================
11. Header top css
======================*/

.header-top {
  padding: 9px 0 10px 0;
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.header-top::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 30%;
  background: var(--theme-color2);
  z-index: -1;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-contact ul li{
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  padding-right: 20px;
}

.header-top-contact ul li:last-child{
  border: none;
  padding-right: 0;
}

.header-top-contact ul li a {
  color: var(--color-white);
  font-weight: 400;
}

.header-top-contact ul li a i{
  color: var(--theme-color2);
  margin-right: 5px;
}

.header-top-social span{
  color: var(--color-white);
  font-weight: 500;
}

.header-top-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: var(--color-white);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.header-top-social a:hover {
  background: var(--theme-color2);
  color:#000 !important;
}


@media all and (max-width: 1199px) {
  .header-top-contact ul{
    gap: 10px;
  }

  .header-top-social a{
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}



/*====================
12. Navbar css
======================*/

.navbar {
  background: var(--color-white);
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.custom-nav{
  background: var(--color-white);
  position: relative;
}

.navbar.fixed-top {
  background: var(--color-white) !important;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
    padding: 5px 0px;
    height: 85px;
}
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 2px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
}

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0px;
    border-top: 4px solid var(--theme-color2);
    background: var(--theme-color);
    width: auto;
    box-shadow: var(--box-shadow);
  }

 

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 25px;
    font-weight: 500;
    color:  var(--color-white);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    white-space: nowrap;
    transition: all .3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color2);
    padding-left: 32px;
  }

  

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active, .navbar .nav-item:hover .nav-link {
    background: var(--theme-color2);
    padding: 5px;
    border-radius: 5px;
    transition: 0.6s;
}

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
    border-radius:0px 0px 10px 10px;
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: flex-end;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color:  var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }

  .nav-right .cart-btn span{
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }

}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    /*position: fixed;*/
  }
  /*.navbar-brand {*/
  /*  padding-left: 10px;*/
  /*}*/

  .navbar-brand img {
    height: 70px;
  }

  .navbar-collapse {
    max-height: 420px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 5px;
    background-color: var(--color-white);
}

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }

  .search-area.open{
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color:  var(--color-dark);
    font-weight: 500;
  }

  .navbar .dropdown-menu {
    border-radius: 0px;
  }

  .nav-right {
    display: none;
  }

}


/*============================
13. Mega menu
==============================*/

@media (min-width: 992px){
  .nav-item.mega-menu {
    position: static;
  }
  
  .navbar .nav-item.mega-menu .dropdown-menu{
    width: 98%;
    left: 12px;
  } 

  .mega-menu .mega-content{
    padding: 30px;
  }

  .mega-menu .mega-content h5{
    color: var(--theme-color2);
    font-size: 22px;
    margin-bottom: 20px;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item{
    padding-left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before{
    left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover{
    padding-left: 15px;
  }

  .menu-about-logo{
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .menu-about-logo img {
    width: 210px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

  .menu-about p{
    color: var(--color-white);
            text-align: justify;
  }
}


@media (max-width: 991px){
  .menu-about-logo{
    display: none;
  }

  .mega-menu .mega-content h5{
    margin: 15px 0;
  }
}



/*============================
14. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}



/*====================
15. Search popup css 
======================*/

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, .8);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  text-align: center;
  background: var(--theme-color2);
  text-align: center;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search:hover{
  background: var(--theme-color);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .form-group input[type="text"], 
.search-popup .form-group input[type="search"] {
  position: relative;
  width: 100%;
  height: 65px;
  outline: none;
  border-radius: 8px;
  border: none;
  padding: 0 100px 0 35px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 10px;
  top: 9px;
  background: var(--theme-color2);
  text-align: center;
  font-size: 20px;
  color: var(--color-white);
  padding: 6px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background: var(--theme-color);
  color: var(--color-white);
}



/*====================
16. Main section css 
======================*/

.main {
  margin-top: 0rem;
}



/*====================
17. Hero css 
======================*/

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 120px;
  padding-bottom: 120px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  height:480px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: rgba(11, 28, 57, .7);
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
}

.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: capitalize;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color2);
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color2);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  border-bottom: 3px solid var(--theme-color2);
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
    gap: 1rem;
    display: flex;
    margin-top: 35px;
    justify-content: center;
}

.hero-single .hero-img::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--theme-color);
  right: 100px;
  bottom: 0px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.hero-single .hero-img{
  position: absolute;
  right: 100px;
  bottom: 120px;
  width: 50%;
  z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 30px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before{
    width: 250px;
    height: 250px;
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }

}



/*===================
18. Play btn
=====================*/

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}



/*====================
19. About css 
======================*/
/* Base Section Settings */
        .si-about-wrapper {
            position: relative;
            background-color: var(--color-white);
            font-family: var(--body-font);
            color: var(--body-text-color);
        }

        /* --- Image Showcase Area --- */
        .si-img-canvas {
            position: relative;
            padding: 20px 0 40px 20px;
            z-index: 1;
        }

        .si-primary-photo {
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            width: 100%;
            object-fit: cover;
        }

        /* Top Left Floating Badge */
        .si-experience-stamp {
            position: absolute;
            top: 0;
            left: 0;
            background: var(--theme-color);
            color: var(--color-white);
            width: 130px;
            padding: 20px 10px;
            border-radius: 16px;
            box-shadow: var(--box-shadow2);
            z-index: 2;
            text-align: center;
        }

        .si-experience-stamp h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--theme-color2);
            font-family: var(--heading-font);
            margin-bottom: 0;
            line-height: 1.1;
        }

        .si-experience-stamp span {
            font-size: 0.85rem;
            line-height: 1.2;
            font-weight: 500;
            display: block;
            margin-top: 5px;
        }

        /* Bottom Floating Cards */
        .si-overlay-cards {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            display: flex;
            gap: 15px;
            z-index: 2;
        }

        .si-stat-chip {
            flex: 1;
            background: var(--color-white);
            border-radius: 12px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--box-shadow);
        }

        .si-chip-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .si-stat-chip h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--theme-color);
            font-family: var(--heading-font);
            margin: 0;
        }

        .si-stat-chip p {
            font-size: 0.75rem;
            margin: 0;
            line-height: 1.2;
            color: var(--body-text-color);
        }

        /* --- Content & Typography --- */
        .si-badge-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(3, 37, 76, 0.08); /* Light version of theme-color */
            color: var(--theme-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .si-headline-main {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--theme-color);
            font-family: var(--heading-font);
            margin-bottom: 20px;
        }
        
        .si-text-brand-secondary { color: var(--theme-color2); }
        .si-text-brand-blue { color: var(--bs-blue); }

        .si-body-copy {
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* Buttons */
        .si-action-btn {
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition2);
            font-family: var(--heading-font);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }
        .si-btn-fill {
            background: var(--bs-blue);
            color: var(--color-white);
            border: 2px solid var(--bs-blue);
        }

        .si-btn-fill:hover {
            background: var(--theme-color);
            border-color: var(--theme-color);
            color: var(--color-white);
        }

        .si-btn-outline {
            background: transparent;
            color: #03254c;
            border: 2px solid rgb(3 37 75 / 71%);
        }

        .si-btn-outline:hover {
            background:#03254c;
            color:#fff;
            border: 2px solid rgb(3 37 76);
        }

        /* --- Features Grid --- */
        .si-perk-box {
            background: var(--color-white);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            border: 1px solid var(--border-info-color2);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            height: 100%;
            transition: var(--transition2);
        }

        .si-perk-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--box-shadow);
        }

        .si-perk-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            color: var(--color-white);
        }

        .si-perk-box h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--theme-color);
            font-family: var(--heading-font);
            margin-bottom: 6px;
        }

        .si-perk-box p {
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Feature Color Variations */
        .si-line-blue { border-left: 4px solid var(--bs-blue); }
        .si-line-green { border-left: 4px solid var(--bs-green); }
        .si-line-yellow { border-left: 4px solid var(--theme-color2); }
        .si-line-red { border-left: 4px solid var(--bs-red); }

        .si-bg-solid-blue { background-color: var(--bs-blue); }
        .si-bg-solid-green { background-color: var(--bs-green); }
        .si-bg-solid-yellow { background-color: var(--theme-color2); color: var(--theme-color) !important; }
        .si-bg-solid-red { background-color: var(--bs-red); }

        /* --- Bottom Metrics Bar --- */
        .si-metrics-panel {
            background: var(--color-white);
            border-radius: 16px;
            box-shadow: var(--box-shadow);
            padding: 30px 20px;
        }

        .si-metric-divider {
            border-right: 1px solid var(--border-info-color);
        }

        .si-metric-symbol {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .si-metric-divider h4 {
            font-size: 1.6rem;
            font-weight: 700;
            font-family: var(--heading-font);
            /*margin: 0 0 3px 0;*/
        }

        .si-metric-divider p {
            /*font-size: 0.85rem;*/
            margin: 0;
        }

        /* Metric Colors & Light Backgrounds */
        .si-tint-blue { background: rgba(13, 110, 253, 0.1); color: var(--bs-blue); }
        .si-text-blue { color: var(--bs-blue); }
        
        .si-tint-green { background: rgba(25, 135, 84, 0.1); color: var(--bs-green); }
        .si-text-green { color: var(--bs-green); }

        .si-tint-yellow { background: rgba(244, 188, 6, 0.15); color: var(--theme-color2); }
        .si-text-yellow { color: var(--theme-color2); }

        .si-tint-red { background: rgba(220, 53, 69, 0.1); color: var(--bs-red); }
        .si-text-red { color: var(--bs-red); }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .si-img-canvas {
                padding: 0;
                margin-bottom: 50px;
                margin-top: 20px;
            }
            .si-experience-stamp {
                top: -20px;
                left: -10px;
            }
            .si-overlay-cards {
                bottom: -30px;
                flex-direction: row;
                width: 95%;
            }
            
            .si-headline-main { font-size: 2.2rem; }
            .si-metric-divider {
                border-right: none;
                border-bottom: 1px solid var(--border-info-color2);
                padding-bottom: 20px;
            }
            .si-metric-divider:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }
/*====================
20. Course css 
======================*/
.course-area{
    position:relative;
    
}

/* Card */

.course-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
    margin-bottom:20px;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    border-bottom:5px solid var(--theme-color2);
}

.course-item:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* Top Accent */

/*.course-item::before{*/
/*    content:"";*/
/*    position:absolute;*/
/*    bottom:0;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:4px;*/
/*    background:var(--theme-color2);*/
/*    transform:scaleX(1);*/
/*    transition:.35s;*/
/*    transform-origin:left;*/
/*    z-index:2;*/
/*}*/


/* Image */

.course-img{
    overflow:hidden;
}

.course-img img{
    width:100%;
    /*height:220px;*/
    /*object-fit:cover;*/
    transition:.5s;
}


/* Hide Old Badges */

.course-img .d-flex{
    display:none !important;
}

/* Content */

.course-content{
    padding:10px 25px;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 50px;
}

.course-title a{
    color:var(--theme-color);
    text-decoration:none;
}



/* Info Chips */

.course-meta-info{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:5px;
}

.course-meta-info span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f4f6f9;
    border:1px solid #e6ebf1;
    color:var(--theme-color);
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.course-meta-info i{
    color:var(--theme-color2);
}

/* Description */

.course-text{
    color:var(--body-text-color);
    line-height:1.8;
    font-size:15px;
}

/* Bottom */

.course-bottom{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #edf1f6;
}

/* Buttons */

.course-bottom .theme-btn {
    flex: 1;
    justify-content: center;
    border-radius: 10px !important;
    padding: 10px 12px;
    font-size: 12px;
}

/* View Button */

.course-bottom .theme-btn:first-child{
    background:#fff;
    color:var(--theme-color);
    border:1px solid var(--theme-color);
}

.course-bottom .theme-btn:first-child:hover{
    background:var(--theme-color);
    color:#fff;
}

/* Register Button */

.course-bottom .theme-btn:last-child{
    background:var(--theme-color2);
    color:var(--theme-color);
}

.course-bottom .theme-btn:last-child:hover{
    background:var(--theme-color);
    color:#fff;
}

/* Mobile */

@media(max-width:767px){

.course-content{
    padding:20px;
}

.course-title{
    font-size:20px;
}

.course-meta-info{
    gap:8px;
}

.course-meta-info span{
    font-size:13px;
}

.course-img img {
    height: auto !important;
}


}


/*====================
22. Feature css 
======================*/
/*==========================
 SAV FEATURE AREA
==========================*/



.sav-feature-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    border-bottom: 3px solid;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
    transition: .45s;
}

.sav-feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}


/* Decorative Shape */

.sav-feature-shape{

    position:absolute;

    width:140px;
    height:140px;

    right:-55px;
    top:-55px;

    border-radius:50%;
    opacity:.45;
}

.shape-1{
    background:#eef3ff;
}

.shape-2{
    background:#eef8f8;
}

.shape-3{
    background:#fff5ea;
}

.shape-4{
    background:#fff1f4;
}



/*==================
 ICON
==================*/

.sav-feature-icon{

    width:92px;
    height:92px;

    margin:0 auto 28px;

    border-radius:50%;

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

    color:#fff;

    font-size:38px;

    transition:.45s;
}

.sav-feature-card.blue{
    border-color:#2b78f6;
}

.sav-feature-card.yellow{
    border-color:#f4bc06;
}

.sav-feature-card.orange{
    border-color:#ffb000;
}

.sav-feature-card.pink{
    border-color:#ff4369;
}


.sav-feature-icon.blue{
    background:#2b78f6;
}

.sav-feature-icon.yellow{
    background:#f4bc06;
}

.sav-feature-icon.orange{
    background:#ffb000;
}

.sav-feature-icon.pink{
    background:#ff4369;
}


.sav-feature-card:hover .sav-feature-icon{

    transform:
    rotate(8deg)
    scale(1.08);

}



.sav-feature-card h4 {
    font-size: 25px;
    font-weight: 700;
    color: #17315d;
}


.sav-feature-card p {
    color: #000000;
    font-size: 16px;
}



/*==================
 Responsive
==================*/

@media(max-width:991px){

.sav-feature-card{

padding:35px 25px;

}

.sav-feature-card h4{

font-size:23px;

}

.sav-feature-icon{

width:82px;
height:82px;
font-size:32px;

}

}


@media(max-width:767px){

.sav-feature-card{

padding:30px 22px;

}

}


/* ========================
23. Portfolio css 
=========================== */

.portfolio-area{
  position: relative;
}

.portfolio-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.portfolio-img {
  height: 100%;
}

.portfolio-img img {
  width: 100%;
  border-radius: 50px 50px 50px 0;
}

.portfolio-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.portfolio-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.portfolio-item:hover .portfolio-info{
  bottom: 30px;
}

.portfolio-subtitle {
  font-size: 14px;
  color: var(--theme-color);
  margin-bottom: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-subtitle span {
  color: var(--theme-color);
}

.portfolio-title {
  color: var(--color-dark);
  font-size: 24px;
}

.portfolio-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  border-radius: 50px;
}

.portfolio-btn:hover{
  background: var(--theme-color2);
  color: var(--color-white);
}



/* ======================
24. Portfolio single
====================== */

.portfolio-sidebar .portfolio-sidebar-content ul li {
  border-bottom: 1px solid var(--border-info-color);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
  border-bottom: none;
}

.portfolio-sidebar-title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
  display: block;
  font-weight: normal;
  margin: 0;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
  color: var(--theme-color2);
}

.new-portfolio {
  background: var(--theme-color) !important;
}

.new-portfolio h4 {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 28px;
}

.new-portfolio .theme-btn::before{
  background: var(--color-dark);
}

.portfolio-single-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.portfolio-details h3 {
  font-weight: 700;
}

.portfolio-details img{
  border-radius: 20px;
}




/* ========================
25. Gallery css 
=========================== */
.gallery-area{
    position:relative;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    margin-bottom:25px;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.gallery-img{
    position:relative;
    overflow:hidden;
}

.gallery-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.6s;
}

.gallery-item:hover .gallery-img img{
    transform:scale(1.08);
}

/* Overlay */

.gallery-content{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(3,37,76,.92) 0%,
        rgba(3,37,76,.20) 55%,
        transparent 100%);
    opacity:0;
    transition:.35s;
}

.gallery-item:hover .gallery-content{
    opacity:1;
}

/* View Button */

.gallery-link{
    position:absolute;
    right:18px;
    top:18px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    color:var(--theme-color);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transform:translateY(-20px);
    opacity:0;
    transition:.35s;
}

.gallery-item:hover .gallery-link{
    transform:translateY(0);
    opacity:1;
}

.gallery-link:hover{
    background:var(--theme-color2);
    color:var(--theme-color);
}

/* Bottom Caption */

.gallery-content::after{
    content:"Campus Gallery";
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:.3px;
    opacity:0;
    transform:translateY(15px);
    transition:.35s;
}

.gallery-item:hover .gallery-content::after{
    opacity:1;
    transform:translateY(0);
}

/*====================
26. Choose css 
======================*/
/*=========================
      WHY CHOOSE US
=========================*/

.choose-area{
    background:#03254c;
    position:relative;
    overflow:hidden;
    padding:50px 0px;
}

.choose-area::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(244,188,6,.05);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.choose-area::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
}

.choose-desc{
    color:#d4ddea;
    max-width:720px;
    margin:auto;
    margin-top:15px;
}

.choose-box{
    position:relative;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    height:100%;
    overflow:hidden;
    z-index:2;
}

.choose-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--theme-color2);
    transform:scaleX(0);
    transition:.35s;
}

.choose-box:hover::before{
    transform:scaleX(1);
}

.choose-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.08);
}

.choose-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:22px;
    border-radius:18px;
    background:rgba(244,188,6,.12);
    color:var(--theme-color2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.35s;
}

.choose-box:hover .choose-icon{
    background:var(--theme-color2);
    color:var(--theme-color);
    transform:rotateY(360deg);
}

.choose-box h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.choose-box p{
    color:#c7d3df;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

.choose-box{
    padding:30px 20px;
}

.choose-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

}
/*====================
27. Testimonial css 
======================*/
/*===================================
      TESTIMONIAL SECTION
===================================*/

.testimonial-area{
    position:relative;
    overflow:hidden;
}

.ts-bg{
    background:url('../img/testimonial/bg.webp') center center/cover fixed;
    position:relative;
}

.ts-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(3,37,76,.92);
}

/* Card */

.testimonial-item{
    position:relative;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
    margin:10px;
    transition:.35s;
    overflow:hidden;
}

.testimonial-item:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
    border-color:rgba(244,188,6,.30);
}

/* Yellow Accent */

.testimonial-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--theme-color2);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.testimonial-item:hover::before{
    transform:scaleX(1);
}

/* Rating */

.testimonial-rate{
    margin-bottom:18px;
}

.testimonial-rate i{
    color:var(--theme-color2);
    margin-right:2px;
    font-size:15px;
}

/* Review */

.testimonial-quote {
    height: 140px;
    overflow-y: auto;
    scrollbar-width: none;
}

.testimonial-quote::-webkit-scrollbar{
    width:0;
}

/* Hover */
.testimonial-item:hover .testimonial-quote{
    scrollbar-width:thin;
}

.testimonial-item:hover .testimonial-quote::-webkit-scrollbar{
    width:6px;
}

.testimonial-quote::-webkit-scrollbar-thumb{
    background:var(--theme-color2);
    border-radius:20px;
}

.testimonial-quote p{
    color:#d6dde8;
    line-height:1.9;
    font-size:15px;
    margin:0;
}

/* Footer */

.testimonial-content{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:30px;
}

/* Image */

.testimonial-author-img{
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid var(--theme-color2);
    flex-shrink:0;
}

.testimonial-author-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Name */

.testimonial-author-info h4{
    color:#fff;
    font-size:20px;
    margin-bottom:4px;
    font-weight:700;
}

.testimonial-author-info p{
    color:var(--theme-color2);
    margin:0;
    font-size:15px;
}

/* Quote Icon */

.testimonial-quote-icon{
    position:absolute;
    right:25px;
    top:20px;
    font-size:55px;
    color:rgba(255,255,255,.08);
}

/* Dots */

.testimonial-area .owl-dots{
    margin-top:40px;
    text-align:center;
}

.testimonial-area .owl-dot span{
    width:10px;
    height:10px;
    border-radius:30px;
    background:rgba(255,255,255,.25);
    transition:.35s;
    display:block;
    margin:5px;
}

.testimonial-area .owl-dot.active span{
    width:35px;
    background:var(--theme-color2);
}

.testimonial-area .owl-dot:hover span{
    background:var(--theme-color2);
}

/*====================
28. Counter css 
======================*/
/*=============================
   Savtron Highlight Strip
=============================*/

.savtron-highlight-section {
    position: relative;
    padding: 30px 0;
    background: #03254c;
}

.savtron-highlight-wrapper {
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #dddddd17;
}

.savtron-highlight-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 26px;
    height:100%;
    border-right:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.savtron-highlight-item:hover{
    background:rgba(255,255,255,.04);
}

.savtron-highlight-icon{
    width:60px;
    height:60px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.savtron-highlight-icon::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    background:rgba(255,255,255,.08);
}

.savtron-highlight-icon i{
    position:relative;
    z-index:2;
}

/* Colors */

.savtron-highlight-icon.yellow{
    background:#f4bc06;
    color:#111;
}

.savtron-highlight-icon.green{
    background:#00c26e;
}

.savtron-highlight-icon.blue{
    background:#5468ff;
}

.savtron-highlight-icon.red{
    background:#ff4f73;
}

.savtron-highlight-icon.cyan{
    background:#29b6ff;
}

.savtron-highlight-content h4{
    color:#fff;
    font-size:20px;
    margin-bottom:4px;
    font-weight:700;
}

.savtron-highlight-content p{
    margin:0;
    color:#d8e0ee;
    font-size:16px;
}

/* Hover */

.savtron-highlight-item:hover .savtron-highlight-icon{
    transform:translateY(-6px) rotate(-5deg);
}

.savtron-highlight-item:hover .savtron-highlight-content h4{
    color:var(--theme-color2);
}

/* Responsive */

@media(max-width:991px){

.savtron-highlight-item{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.savtron-highlight-item.border-0{
    border-bottom:none;
}

.savtron-highlight-content h4{
    font-size:20px;
}

.savtron-highlight-content p{
    font-size:15px;
}

}

@media(max-width:576px){

.savtron-highlight-item{
    padding:18px;
}

.savtron-highlight-icon{
    width:60px;
    height:60px;
    font-size:26px;
}

}
/*====================
29. Cta css 
======================*/

.cta-area{
  position: relative;
  background-image: url(../img/cta/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-content{
  position: relative;
  padding: 80px 40px;
  margin-top: -40px;
  z-index: 1;
}

.cta-content::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color2);
  border-radius: 80px 80px 80px 0;
  z-index: -1;
}

.cta-content::after{
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
  border: 8px double var(--color-white);
  border-radius: 70px 70px 70px 0;
  z-index: -1;
}

.cta-content h1{
  color: var(--color-white);
  font-size: 45px;
}

.cta-content p{
  color: var(--color-white);
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-btn .theme-btn{
  background: var(--color-white);
  color: var(--color-dark);
}

.cta-btn .theme-btn:hover{
  color: var(--color-white);
}



/* ===================
30. Event css 
====================== */

.event-item{
  position: relative;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0;
  padding: 20px 20px 20px 20px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.event-location{
  margin-bottom: 12px;
}

.event-location i{
  color: var(--theme-color2);
}

.event-img{
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 40px 0;
}

.event-img img{
  border-radius: 40px 40px 40px 0;
  box-shadow: var(--box-shadow);
}

.event-item:hover .event-img img{
  transform: scale(1.1);
} 

.event-meta{
  display: flex;
  gap: 15px;
  margin: 14px 0;
}

.event-meta i{
  color: var(--theme-color2);
  margin-right: 5px;
}

.event-title{
  margin-bottom: 10px;
}

.event-title:hover{
  color: var(--theme-color2);
}

.event-btn{
  margin-top: 20px;
}

.event-btn .theme-btn{
  padding: 11px 15px;
}

.event-slider .event-item{
  box-shadow: none;
  margin-bottom: 0;
}

.event-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.event-slider .owl-dots .owl-dot span {
  background: var(--theme-color2);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.event-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color2);
  width: 20px;
}

.event-slider .owl-nav {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	margin: 0;
}

.event-slider:hover .owl-nav{
	display: block;
	opacity:1;
	visibility:visible;
}

.event-slider .owl-nav button {
	height: 48px;
	width: 48px;
	line-height: 45px !important;
	top: 50%;
	background: var(--theme-color2) !important;
	color: var(--color-white) !important;
	font-size: 25px !important;
	position: absolute;
	border: none;
	margin: 0;
	padding: 0;
	transition: var(--transition);
	border-radius: 100%;
	margin-top: -24px;
}

.event-slider .owl-nav button:hover{
	background: var(--theme-color) !important;
}

.event-slider .owl-nav .owl-prev{
	left:-75px;
}

.event-slider .owl-nav .owl-prev:hover{
	left:-65px;
}

.event-slider .owl-nav .owl-next{
	right:-75px;
}

.event-slider .owl-nav .owl-next:hover{
	right:-65px;
}



/* ===================
31. Event single css 
====================== */

.event-details img{
  border-radius: 20px;
}

.event-map{
  margin-bottom: 20px;
}

.event-map iframe{
  border-radius: 20px;
  height: 400px;
  width: 100%;
}

.event-content-single{
  margin-bottom: 20px;
}

.event-content-single h5{
  margin-bottom: 5px;
}

.event-content-single i{
  color: var(--theme-color2);
  margin-right: 5px;
}

.event-single-info p{
  margin-bottom: 20px;
}

.event-author-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-top: 50px;
}

.event-author-info img{
  border-radius: 50%;
}

.event-author-info h5{
  margin-top: 5px;
}



/*====================
32. Enroll css 
======================*/

.enroll-area{
  position: relative;
  background-image: url(../img/enroll/01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.enroll-area::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--footer-bg);
  opacity: .8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.enroll-left{
  margin-right: 30px;
}

.enroll-form{
  background: var(--color-white);
  border-radius: 80px 80px 80px 0;
  box-shadow: var(--box-shadow);
}

.enroll-form form{
  padding: 30px;
}

.enroll-form-header{
  background: var(--theme-color2);
  border-radius: 50px 50px 50px 0;
  padding: 20px 30px;
}

.enroll-form-header h3{
  color: var(--color-white);
}

.enroll-form-header p{
  color: var(--color-white);
}

.enroll-form .form-group {
  margin-bottom: 20px
}

.enroll-form .form-group .form-control {
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 12px;
  color: #6C757D;
  background-color: var(--theme-bg-light);
  border: none;
  box-shadow: none
}

.enroll-form .form-group .form-select{
  padding: 15px 22px;
  background-color: var(--theme-bg-light);
  color: #6C757D;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

@media all and (max-width: 991px) {
  .enroll-left{
    margin-right: 0px;
  }
}



/* ===================
33. Skill css 
====================== */

.progress-box {
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.progress-box:last-child {
  margin-bottom: 0;
}

.progress-box h5 {
  color: var(--color-white);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-box .progress {
  height: 8px;
  background: var(--color-white);
  border-radius: 50px;
}

.progress-box .progress .progress-bar {
  background: var(--theme-color2);
}



/* ===================
34. Department css 
====================== */

.department-area{
  position: relative;
}

.department-item{
  position: relative;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0;
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
} 

.department-item::before{
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 10px solid var(--theme-color2);
  transition: var(--transition);
  opacity: .2;
}

.department-item:hover::before{
  opacity: 1;
}

.department-icon{
  margin-bottom: 20px;
}

.department-icon img{
  width: 60px !important;
}

.department-title{
  margin-bottom: 10px;
}

.department-title:hover{
  color: var(--theme-color2);
}

.department-btn{
  margin-top: 10px;
}

.department-btn a{
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.department-btn a:hover{
  color: var(--theme-color2);
}

.department-btn a i{
  margin-left: 5px;
}

.department-slider .department-item{
  box-shadow: none;
  margin-bottom: 0;
}

.department-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.department-slider .owl-dots .owl-dot span {
  background: var(--theme-color2);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.department-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color2);
  width: 20px;
}

.department-slider .owl-nav {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	margin: 0;
}

.department-slider:hover .owl-nav{
	display: block;
	opacity:1;
	visibility:visible;
}

.department-slider .owl-nav button {
	height: 48px;
	width: 48px;
	line-height: 45px !important;
	top: 50%;
	background: var(--theme-color2) !important;
	color: var(--color-white) !important;
	font-size: 25px !important;
	position: absolute;
	border: none;
	margin: 0;
	padding: 0;
	transition: var(--transition);
	border-radius: 100%;
	margin-top: -54px;
}

.department-slider .owl-nav button:hover{
	background: var(--theme-color) !important;
}

.department-slider .owl-nav .owl-prev{
	left:-75px;
}

.department-slider .owl-nav .owl-prev:hover{
	left:-65px;
}

.department-slider .owl-nav .owl-next{
	right:-75px;
}

.department-slider .owl-nav .owl-next:hover{
	right:-65px;
}



/*==================
35. Department single
====================*/

.department-single-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.department-download a {
  border: 2px solid var(--theme-color2);
  padding: 12px 20px;
  color:  var(--color-dark);
  display: block;
  margin-bottom: 20px;
  border-radius: 30px 30px 30px 0;
  font-weight: 600;
  transition: var(--transition);
}

.department-download a i {
  margin-right: 10px;
}

.department-download a:hover {
  background-color: var(--theme-color2);
  color: var(--color-white);
}

.department-details h3 {
  color:  var(--color-dark);
}

.department-details img{
  border-radius: 20px;
}




/*====================
36. Partner css 
======================*/
/*=============================
      Placement Section
==============================*/

.placement-area{
    /**/
    position:relative;
}

.placement-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #edf1f6;
    transition:.35s;
    box-shadow:0 10px 25px rgb(0 0 0 / 17%);
    margin:8px;
}

.placement-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.placement-img{
    position:relative;
    overflow:hidden;
}

.placement-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    transition: .5s;
}

.placement-card:hover .placement-img img{
    transform:scale(1.08);
}

/* Badge */

.placed-badge{
    position:absolute;
    left:15px;
    top:15px;
    background:#28a745;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.placed-badge i{
    margin-right:5px;
}

/* Content */

.placement-content{
    padding:25px;
    text-align:center;
}

.placement-content h4{
    color:var(--theme-color);
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.company-name{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(244,188,6,.12);
    color:var(--theme-color);
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.company-name i{
    color:var(--theme-color2);
}

/* Button */

.placement-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    color:var(--theme-color);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.placement-btn:hover{
    color:var(--theme-color2);
}

.placement-btn i{
    transition:.3s;
}

.placement-btn:hover i{
    transform:translateX(5px);
}

/* Owl */

.placement-area .owl-dots{
    margin-top:35px;
    text-align:center;
}

.placement-area .owl-dot span{
    width:10px;
    height:10px;
    border-radius:20px;
    background:#d7dde5;
    transition:.3s;
}

.placement-area .owl-dot.active span{
    width:30px;
    background:var(--theme-color2);
}

/*====================
37. Blog css 
======================*/
/*==================================
        BLOG SECTION
==================================*/

.blog-area{
    position:relative;
}

/*.blog-slider-item{*/
/*    padding:12px;*/
/*}*/

/* Card */

.blog-slider-item .wow{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    position:relative;
    height:100%;
    box-shadow: 0 10px 25px rgb(0 0 0 / 17%);
    border-bottom: 5px solid var(--theme-color2);
}

.blog-slider-item .wow:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* Accent */


.blog-slider-item .wow:hover::before{
    transform:scaleX(1);
}

/* Image */

.blog-item-img{
    overflow:hidden;
    position:relative;
}

.blog-item-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .6s;
}



/* Date */

.blog-date{
    color:var(--theme-color);
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-date i{
    color:var(--theme-color2);
    margin-right:6px;
}

/* Content */

.blog-item-info {
    padding: 10px 25px;
}

.blog-title {
    margin-bottom: 18px;
    line-height: 1.5;
    height: 85px;
}

.blog-title a{
    color:var(--theme-color);
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.blog-title a:hover{
    color:var(--theme-color2);
}

/* Button */



.blog-item-info .theme-btn:hover{
    background:var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
}

.blog-item-info .theme-btn i{
    margin-left:8px;
    transition:.3s;
}

.blog-item-info .theme-btn:hover i{
    transform:translateX(5px);
}

/* Owl */

.blog-area .owl-stage {
    display: flex;
    padding-bottom: 20px;
}

.blog-area .owl-item{
    display:flex;
}

.blog-area .owl-item .blog-slider-item{
    width:100%;
}

/* Dots */

.blog-area .owl-dots{
    margin-top:35px;
    text-align:center;
}

.blog-area .owl-dot span{
    width:10px;
    height:10px;
    background:#d8dee8;
    border-radius:30px;
    display:block;
    transition:.3s;
}

.blog-area .owl-dot.active span{
    width:35px;
    background:var(--theme-color2);
}


/*========================
38. Blog single css
==========================*/

.blog-single-content img{
  border-radius: 20px;
}

.blog-thumb-img {
  margin-bottom: 20px;
}

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

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color2);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--color-dark);
}

.blockqoute {
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color2);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 50px 50px 50px 0;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color2);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: var(--color-dark);
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color-dark);
  padding: 6px 18px;
  border-radius: 8px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img{
  border-radius: 40px 40px 40px 0;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color: var(--color-dark);
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-single img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color2);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color2);
}

.blog-comments-content a:hover {
  color: var(--theme-color);
}

.blog-comments-content h5 {
  color: var(--color-dark);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 20px;
  background: var(--theme-bg-light);
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color2);
}



@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info{
    margin-top: 25px;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-single img{
    margin: 0 auto 20px auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
  
  .placement-img img {
    height: auto !important;
}
}







/*=======================
39. Widget sidebar css
=========================*/

.widget {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
}

.blog-details {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  color:  var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color2);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color2);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 8px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color2);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color2);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color2);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 10px;
}

.widget .recent-post-img img {
    max-width: 100px;
    height: 53px;
    border-radius: 10px;
    object-fit: contain;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color2);
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color2);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color:  var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color2);
  color: var(--color-white);
}



/*===================
40. Contact us css 
=====================*/
.contact-section{
    /*background:#fff;*/
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--theme-color2);
    color:var(--theme-color);
    padding:12px 24px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-title{
    font-size:58px;
    color:var(--theme-color);
    font-weight:800;
    margin-bottom:35px;
}

.contact-info-card{
    display:flex;
    gap:22px;
    background:#fff;
    border-left:4px solid var(--theme-color2);
    border-radius:18px;
    padding:22px 25px;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
    margin-bottom:20px;
}

.contact-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--theme-color);
    color:var(--theme-color2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-info-card h4{
    color:var(--theme-color);
    font-weight:700;
    margin-bottom:10px;
}

.contact-info-card p{
    margin-bottom:6px;
    color:#000;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-form-box h2{
    text-align:center;
    color:var(--theme-color);
    font-weight:800;
    margin-bottom:35px;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
    height:50px;
    border-radius:12px;
    margin-bottom:18px;
}

.contact-form-box textarea{
    height:150px!important;
    padding-top:15px;
}

.contact-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background:var(--theme-color);
    color:#fff;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.contact-btn:hover{
    background:var(--theme-color2);
    color:var(--theme-color);
}

.section-title h2{
    color:var(--theme-color);
    font-size:52px;
    font-weight:800;
}

.section-title span{
    width:120px;
    height:5px;
    background:linear-gradient(90deg,var(--theme-color),var(--theme-color2),var(--theme-color));
    display:block;
    margin:18px auto 0;
    border-radius:20px;
}

.contact-map iframe{
    width:100%;
    height:560px;
    border:0;
}

@media(max-width:991px){

.contact-title{
    font-size:42px;
}

.contact-form-box{
    margin-top:20px;
}

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

.contact-map iframe{
    height:400px;
}

}
/*===================
41. Team css 
=====================*/
.faculty-card {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    border-bottom: 3px solid rgb(3 37 76);
    transition: .35s;
    box-shadow: 0px 0px 5px 1px #ddd;
}

.faculty-card:hover{
    border-color:var(--theme-color2);
}

/* Image */

.faculty-image{
    flex:0 0 140px;
}

.faculty-image img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.faculty-card:hover .faculty-image img{
    transform:scale(1.05);
}

/* Content */

.faculty-content{
    flex:1;
}

.faculty-content h4{
    font-size:24px;
    color:var(--theme-color);
    margin-bottom:5px;
    font-weight:700;
}

.faculty-designation{
    display:inline-block;
    padding:6px 14px;
    background:rgba(244,188,6,.12);
    color:var(--theme-color);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.faculty-info-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:16px;
}

.faculty-info-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--theme-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.faculty-info-item small{
    color:#777;
    display:block;
    margin-bottom:2px;
}

.faculty-info-item h6{
    margin:0;
    color:var(--color-dark);
    font-size:15px;
}

/* Button */

.faculty-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:5px;
    color:var(--theme-color);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.faculty-btn:hover{
    color:var(--theme-color2);
}

.faculty-btn i{
    transition:.3s;
}

.faculty-btn:hover i{
    transform:translateX(5px);
}

@media(max-width:767px){

.faculty-card{
    flex-direction:column;
    text-align:center;
}

.faculty-image{
    flex:unset;
}

.faculty-info-item{
    justify-content:center;
    text-align:left;
}

}

/*====================
43. Video css 
======================*/

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px 80px 80px 0;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, .2);
  border-radius: 80px 80px 80px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 350px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}



/*===================
44. Pricing css 
=====================*/

.pricing-area{
  position: relative;
}

.pricing-item{
  position: relative;
  padding: 20px 40px;
  text-align: center;
  border-radius: 50px 50px 50px 0;
  background: var(--color-white);
  margin-bottom: 25px;
}

.pricing-item::before{
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  top: -5px;
  height: 5px;
  border-radius: 10px 10px 0 0;
  background: var(--theme-color);
}

.pricing-icon{
  width: 100px;
  height: 100px;
  line-height: 90px;
  background: var(--theme-color2);
  margin: 20px auto 0 auto;
  position: relative;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 70px;
}

.pricing-icon img{
  width: 60px;
  filter: brightness(0) invert(1);
}

.pricing-icon::before{
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 3px solid var(--theme-color2);
}

.pricing-header-content{
  margin: 30px 0 20px 0;
}

.pricing-header-content h4{
  margin-bottom: 20px;
  color: var(--theme-color2);
  font-size: 30px;
}

.pricing-duration{
  color: var(--theme-color2);
  font-size: 16px;
}

.pricing-amount{
  font-size: 60px;
  color: var(--theme-color);
}

.pricing-feature ul{
  padding-top: 10px;
  margin-bottom: 25px;
  text-align: left;
  border-top: 1px solid var(--border-info-color);
}

.pricing-feature ul li{
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before{
  content: "\f560";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  color: var(--theme-color);
  left: 0;
  top: 0;
}

.pricing-feature .theme-btn{
  width: 100%;
}

.pricing-item.active{
  background: var(--theme-color);
}

.pricing-item.active::before{
  background: var(--theme-color2);
}

.pricing-item.active .pricing-amount{
  color: var(--color-white);
}

.pricing-item.active ul li{
  color: var(--color-white);
}

.pricing-item.active ul li::before{
  color: var(--color-white);
}

.pricing-item.active .theme-btn{
  background: var(--theme-color2);
}

.pricing-item.active .theme-btn:hover{
  color: var(--theme-color);
}

.pricing-item.active .theme-btn::before{
  background: var(--color-white);
}




/*====================
45. Faq css 
======================*/
/*==================================
    FAQ SECTION
==================================*/

.faq-area{
    position:relative;
}

.faq-area .accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card */

.faq-area .accordion-item{
    border:1px solid #e8edf4;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:none;
    background:#fff;
    transition:.35s;
    position:relative;
}

.faq-area .accordion-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Left Accent */

.faq-area .accordion-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--theme-color2);
    transform:scaleY(0);
    transition:.35s;
}

.faq-area .accordion-item:hover::before,
.faq-area .accordion-item:has(.accordion-button:not(.collapsed))::before{
    transform:scaleY(1);
}

/* Header */

.faq-area .accordion-button{
    background:#fff;
    border:none;
    box-shadow:none !important;
    padding:15px 20px;
    font-size:18px;
    font-weight:600;
    color:var(--theme-color);
    line-height:1.5;
}

/* Icon */

.faq-area .accordion-item span{
    width:42px;
    height:42px;
    min-width:42px;
    margin-right:16px;
}

.faq-area .accordion-item span i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(244,188,6,.15);
    color:var(--theme-color);
    border-radius:12px;
    transition:.3s;
    font-size:15px;
}

/* Active */

.faq-area .accordion-button:not(.collapsed){
    background:#fff;
    color:var(--theme-color);
    border-bottom:1px solid #edf2f7;
}

.faq-area .accordion-button:not(.collapsed) span i{
    background:var(--theme-color);
    color:#fff;
    transform:rotate(90deg);
}

/* Remove Bootstrap Arrow */

.faq-area .accordion-button::after{
    display:none;
}

/* Body */

.faq-area .accordion-body{
    padding:22px 25px 25px 83px;
}

.faq-area .accordion-body p{
    margin:0;
    color:var(--body-text-color);
    line-height:1.9;
}

/* Hover */

.faq-area .accordion-item:hover span i{
    background:var(--theme-color2);
    color:var(--theme-color);
}

/* Mobile */

@media(max-width:991px){

.faq-area .accordion-button{
    font-size:16px;
    padding:18px;
}

.faq-area .accordion-body{
    padding:18px;
}

}

/*====================
46. Breadcrumb css
======================*/

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 1;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(        rgba(3,37,76,0.85),        rgba(3,37,76,0.75)    );
    opacity: 1;
    z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 45px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
  padding:0;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child::after {
    content: "\f015";
    font-family: "Font Awesome 6 Pro";
    left: -22px;
    top: 1px;
    font-size: 15px;
    color: var(--color-white);
    position: absolute;
}


.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color2);
}




/*====================
47. Pagination css 
======================*/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  background:  var(--theme-color2);
  color: var(--color-white);
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}




/*====================
48. Auth css 
======================*/

.login-form {
    position: relative;
    padding: 25px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--box-shadow);
}

/*.login-form::before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 50px;*/
/*  bottom: 50px;*/
/*  width: 4px;*/
/*  background: var(--theme-color);*/
/*}*/

.login-form .login-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid var(--border-info-color); */
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color:  var(--theme-color2);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color:  var(--color-dark);
  margin-bottom: 5px;
}

.login-form .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
  appearance: auto;
  height: 50px;
}

.login-form .form-control:focus {
  border-color: var(--theme-color);
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .form-check-input:focus{
  border-color: var(--theme-color);
}

.login-form .forgot-pass {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color:  var(--theme-color2);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: var(--theme-color);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.social-login {
  border-top: 1px solid #F1F1F1;
  margin-top: 15px;
}

.social-login p {
  margin: 10px 0;
}

.social-login-list {
  text-align: center;
}

.social-login-list a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
}

.social-login-list a i {
  color: var(--color-white);
}

.social-login-list a:hover {
  background:  var(--color-dark);
}


@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}



/*====================
49. Coming soon css 
======================*/

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 10px;
  background: var(--theme-color2);
  display: inline-block;
  color: var(--color-white);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--color-white);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: var(--theme-color2);
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 50px 50px 50px 0;
  box-shadow: var(--box-shadow);
}

.countdown-single h2 {
  color: var(--color-white);
}

.countdown-single h5 {
  color: var(--color-white);
}




/*====================
50. Error css 
======================*/

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
}

.error-wrapper h1 span {
  color:  var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}




/*====================
51. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}



/*====================
52. How Apply
======================*/

.how-apply{
  position: relative;
}

.how-apply .content-img{
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.how-apply .content-img::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 100px 100px 100px 0;
  transform: rotate(-8deg);
  z-index: -1;
}

.how-apply .content-img img{
  border-radius: 100px 100px 100px 0;
  width: 100%;
}

.how-apply .content-list li{
  margin-top: 8px;
}

.how-apply .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.how-apply .content-btn{
  margin-top: 40px;
}

.apply-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.apply-details .content-list li{
  margin-top: 8px;
}

.apply-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

@media all and (max-width: 991px) {
  .how-apply .content-img{
    margin-left: 0px;
  }

  .how-apply .content-info{
    margin-bottom: 70px;
  }

  .apply-details .details-left{
    margin-bottom: 40px;
  }
}



/*====================
53. Application css 
======================*/

.application{
  position: relative;
}

.application-form{
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.application-form h3{
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-info-color);
}

.application-form .form-group{
  margin-bottom: 18px;
}

.application-form .form-group label{
  color: #212536;
  margin-bottom: 5px;
}

.application-form .form-control,
.application-form .form-select{
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: none;
  appearance:auto
}

.application-form .form-control:focus,
.application-form .form-select:focus{
  border-color: var(--theme-color);
}

.application-form .form-check-input{
  margin-top: 6.5px;
  box-shadow: none;
}

.application-form .form-check-input:focus{
  border-color: var(--theme-color);
}

.application-form .form-check a{
  color: var(--theme-color);
}

.application-form .form-check label{
  color: #212536;
  font-weight: 500;
}

.application-form .theme-btn{
  margin-top: 30px;
}



/*====================
54. Campus tour css 
======================*/

.campus-tour{
  position: relative;
}

.campus-tour .content-img{
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.campus-tour .content-img::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 50px 50px 50px 0;
  transform: rotate(-8deg);
  z-index: -1;
}

.campus-tour .content-img img{
  border-radius: 100px 100px 100px 0;
  width: 100%;
}

.campus-tour .content-btn{
  margin-top: 40px;
}

.tour-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.tour-details .content-list li{
  margin-top: 8px;
}

.tour-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

@media all and (max-width: 991px) {
  .campus-tour .content-img{
    margin-left: 0px;
  }

  .campus-tour .content-info{
    margin-bottom: 70px;
  }

  .tour-details .details-left{
    margin-bottom: 40px;
  }
}




/*====================
55. Campus life css 
======================*/

.campus-life{
  position: relative;
}

.campus-life .content-img{
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.campus-life .content-img::before{
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border: 7px solid var(--theme-color2);
  border-radius: 100px 100px 100px 0;
  z-index: -1;
}

.campus-life .content-img img{
  border-radius: 90px 90px 90px 0;
  width: 100%;
}

.campus-life .content-btn{
  margin-top: 40px;
}

.campus-life-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.campus-life-details .content-list li{
  margin-top: 8px;
}

.campus-life-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.campus-life-details .details-item{
  margin-bottom: 40px;
}

.campus-life-details .details-item img{
  border-radius: 20px;
}

@media all and (max-width: 991px) {
  .campus-life .content-info{
    margin-top: 70px;
  }
}


/*====================
56. Notice board css 
======================*/

.notice-board{
  position: relative;
}

.notice-item{
  padding: 25px 25px;
  border-radius: 50px 50px 50px 0;
  margin-bottom: 25px;
  border: 2px solid transparent;
  background: var(--theme-bg-light);
  transition: var(--transition);
}

.notice-item:hover{
  border-color: var(--theme-color);
}

.notice-item h4:hover{
  color: var(--theme-color);
}

.notice-meta{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}

.notice-meta i{
  color: var(--theme-color);
}



/*====================
57. Student Activity css 
======================*/

.activity{
  position: relative;
}

.activity .content-img{
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.activity .content-img::before{
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border: 7px solid var(--theme-color2);
  border-radius: 100px 100px 100px 0;
  z-index: -1;
}

.activity .content-img img{
  border-radius: 90px 90px 90px 0;
  width: 100%;
}

.activity .content-btn{
  margin-top: 40px;
}

.activity-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.activity-details .content-list li{
  margin-top: 8px;
}

.activity-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.activity-details .details-item{
  margin-bottom: 40px;
}

.activity-details .details-item img{
  border-radius: 20px;
}

@media all and (max-width: 991px) {
  .activity .content-info{
    margin-bottom: 70px;
  }
}



/*====================
58. Facility css 
======================*/

.facility-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.facility-item {
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 50px 50px 0;
  background: var(--color-white);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.facility-item:hover {
  transform: translateY(-10px);
}

.facility-img {
  position: relative;
  z-index: 1;
}

.facility-img img{
  border-radius: 50px 50px 50px 0;
}

.facility-content {
  position: relative;
  padding: 20px 20px 15px 20px;
}

.facility-arrow {
  margin-top: 25px;
}

.facility-title a {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.facility-title a:hover {
  color: var(--theme-color);
}

.facility-arrow .theme-btn{
  padding: 12px 22px;
}




/*==================
59. Facility single
====================*/

.facility-details img{
  border-radius: 20px;
}

.facility-single-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.facility-download a {
  border: 2px solid var(--theme-color2);
  padding: 12px 20px;
  color:  var(--color-dark);
  display: block;
  margin-bottom: 20px;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  transition: var(--transition);
}

.facility-download a i {
  margin-right: 10px;
}

.facility-download a:hover {
  background-color: var(--theme-color2);
  color: var(--color-white);
}

.facility-details h3 {
  color: var(--color-dark);
}




/*====================
60. Research css 
======================*/

.research-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.research-item {
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 50px 50px 0;
  padding: 20px 20px 15px 20px;
  background: var(--color-white);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.research-item:hover {
  transform: translateY(-10px);
}

.research-img {
  position: relative;
  z-index: 1;
}

.research-img img{
  border-radius: 40px 40px 40px 0;
}

.research-content {
  position: relative;
  margin-top: 15px;
}

.research-arrow {
  margin-top: 25px;
}

.research-title a {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.research-title a:hover {
  color: var(--theme-color);
}

.research-arrow .theme-btn{
  padding: 12px 22px;
}




/*==================
61. Research single
====================*/

.research-details img{
  border-radius: 20px;
}

.research-single-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.research-download a {
  border: 2px solid var(--theme-color2);
  padding: 12px 20px;
  color:  var(--color-dark);
  display: block;
  margin-bottom: 20px;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  transition: var(--transition);
}

.research-download a i {
  margin-right: 10px;
}

.research-download a:hover {
  background-color: var(--theme-color2);
  color: var(--color-white);
}

.research-details h3 {
  color: var(--color-dark);
}



/*====================
62. Club css 
======================*/

.club-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.club-item {
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 50px 50px 0;
  padding: 20px 20px 15px 20px;
  background: var(--color-white);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.club-item:hover {
  transform: translateY(-10px);
}

.club-img {
  position: relative;
  z-index: 1;
}

.club-img img{
  border-radius: 40px 40px 40px 0;
}

.club-content {
  position: relative;
  margin-top: 15px;
}

.club-arrow {
  margin-top: 25px;
}

.club-title a {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.club-title a:hover {
  color: var(--theme-color);
}

.club-arrow .theme-btn{
  padding: 12px 22px;
}




/*==================
63. Club single
====================*/

.club-details img{
  border-radius: 20px;
}

.club-single-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.club-download a {
  border: 2px solid var(--theme-color2);
  padding: 12px 20px;
  color:  var(--color-dark);
  display: block;
  margin-bottom: 20px;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  transition: var(--transition);
}

.club-download a i {
  margin-right: 10px;
}

.club-download a:hover {
  background-color: var(--theme-color2);
  color: var(--color-white);
}

.club-details h3 {
  color: var(--color-dark);
}



/*====================
64. Tuition fee css 
======================*/

.tuition-fee{
  position: relative;
}



/*====================
65. Alumni css 
======================*/

.alumni{
  position: relative;
}

.alumni .content-img{
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.alumni .content-img::before{
  content: "";
  position: absolute;
  left: 30px;
  top: -30px;
  bottom: -30px;
  width: 80%;
  background: var(--theme-color2);
  border-radius: 50px 50px 50px 0;
  transform: rotate(5deg);
  z-index: -1;
}

.alumni .content-img img{
  border-radius: 50px 50px 50px 0;
  width: 100%;
}

.alumni .content-btn{
  margin-top: 40px;
}

.alumni-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.alumni-details .content-list li{
  margin-top: 8px;
}

.alumni-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.alumni-details .details-item{
  margin-bottom: 40px;
}

.alumni-details .details-item img{
  border-radius: 20px;
}

@media all and (max-width: 991px) {
  .alumni .content-info{
    margin-top: 70px;
  }
}



/*====================
66. Scholarship css 
======================*/

.scholarship{
  position: relative;
}

.scholarship-content img{
  border-radius: 20px;
}

.scholarship-item{
  margin-bottom: 25px;
}

.scholarship-icon img{
  width: 60px;
}

.scholarship-item h4{
  margin-top: 20px;
  margin-bottom: 10px;
}

.scholarship-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.scholarship-details .content-list li{
  margin-top: 8px;
}

.scholarship-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.scholarship-details .details-item{
  margin-bottom: 40px;
}



/*====================
67. Fund css 
======================*/

.fund-area{
  position: relative;
}

.fund-content img{
  border-radius: 20px;
}

.fund-contact{
  margin: 20px 0;
  background: var(--theme-bg-light);
  padding: 30px;
  border-radius: 10px;
}

.fund-contact li{
  margin: 8px 0;
}

.fund-contact i{
  color: var(--theme-color2);
  margin-right: 5px;
}

.fund-btn{
  margin-bottom: 20px;
}

.fund-btn .theme-btn{
  width: 100%;
}

.fund-btn .theme-btn::before{
  width: 400px;
  height: 400px;
}

.fund-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}


/*====================
68. Athletic css 
======================*/

.athletic{
  position: relative;
}

.athletic-content img{
  border-radius: 20px;
}



/*====================
69. Health care css 
======================*/

.health-care{
  position: relative;
}

.health-care-content img{
  border-radius: 20px;
}

.health-care-content .content-list li{
  margin-top: 8px;
}

.health-care-content .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}



/*====================
70. Footer css 
======================*/
/*==========================
        FOOTER
===========================*/

.footer{
    background:#082c58;
    border-top:4px solid var(--theme-color2);
    padding:70px 0 0;
    color:#fff;
}

.footer-grid{
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* Logo */

.brand-col img {
    max-width: 260px;
    height: auto !important;
    margin-bottom: 25px;
}

/* Contact */

.footer-contact-info{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    color:#fff;
    line-height:1.8;
    font-size:16px;
}

.footer-contact-info i{
    width:18px;
    color:var(--theme-color2);
    font-size:17px;
    margin-top:5px;
}

.footer-contact-info strong{
    display:block;
    margin-bottom:2px;
    font-weight:700;
}

.footer-contact-info a{
    color:#fff;
    transition:.3s;
}

.footer-contact-info a:hover{
    color:var(--theme-color2);
}

/* Heading */

.footer-col h4 {
    position: relative;
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    letter-spacing: .5px;
}

.footer-col h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:42px;
    height:3px;
    background:var(--theme-color2);
    border-radius:5px;
}

/* Links */

.footer-links{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links li:last-child{
    margin-bottom:0;
}

.footer-links a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:.35s;
}

.footer-links a i{
    color:var(--theme-color2);
    font-size:12px;
    transition:.35s;
}

.footer-links a:hover{
    color:var(--theme-color2);
    padding-left:8px;
}

.footer-links a:hover i{
    transform:translateX(4px);
}

/* Social */

.social-icons{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.social-icons a{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--theme-color2);
    border-color:var(--theme-color2);
    color:var(--theme-color);
    transform:translateY(-4px);
}

/* Bottom */

.footer-bottom {
    padding: 5px 0;
    border-top: 1px solid #d1d1d13d;
    margin-top: 20px;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.65);
    font-size:16px;
}

.footer-bottom span{
    color:var(--theme-color2);
    font-weight:600;
}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:1200px){

.footer-grid{
    grid-template-columns:repeat(3,1fr);
}

.brand-col{
    grid-column:span 3;
}

}

@media(max-width:991px){

.footer{
    padding-top:60px;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.brand-col{
    grid-column:span 2;
}

.footer-col h4{
    font-size:20px;
}

}

@media(max-width:767px){

.footer-grid{
    width:94%;
    grid-template-columns:1fr;
    gap:30px;
}

.brand-col{
    grid-column:auto;
}

.footer-col{
    padding-bottom:20px;
}

.footer-col:last-child{
    border-bottom:none;
}

.footer-col h4{
    margin-bottom:18px;
    font-size:19px;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    font-size:15px;
}

.footer-contact-info{
    font-size:15px;
}

.social-icons{
    justify-content:flex-start;
}

.footer-bottom{
    padding:18px 0;
}

.footer-bottom p{
    font-size:14px;
}

}
/*====================
71. Home 2
======================*/

.home-2 .header{
  background: var(--theme-color);
}

.home-2 .header-top{
  padding: 12px 0 13px 0;
}

.home-2 .header-top::before{
  display: none;
}

.home-2 .header-top::after{
  display: none;
}

.home-2 .header-top-contact ul li{
  border-color: rgba(255, 255, 255, 0.5);
}

.home-2 .header-top-social a{
  background: var(--color-white);
  color: var(--theme-color2);
}

.home-2 .header-top-social a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.home-2 .hero-single{
  padding-top: 200px;
  padding-bottom: 180px;
}

.home-2 .hero-single::before{
  background: rgba(0, 0, 0, .65);
}

.home-2 .hero-single .hero-title span{
  -webkit-text-stroke: 2px var(--theme-color2);
  -webkit-text-fill-color: transparent;
}


@media all and (min-width: 1199px) {
  .home-2 .navbar{
    background: transparent;
    padding-right: 25px;
  }
  
  .home-2 .navbar.fixed-top{
    padding-right: 0;
  }
  
  .home-2 .navbar::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 11%;
    background: var(--color-white);
    height: 100%;
    border-radius: 0 10px 10px 0;
  }
  
  .home-2 .main{
    margin-top: -3rem;
  }
  
}

@media all and (min-width: 992px) {
  .home-2 .navbar .dropdown-menu{
    border-top: none;
    border-radius: 20px;
    background: var(--color-white);
  }
  
  .home-2 .navbar .dropdown-menu .dropdown-item{
    color: var(--color-dark);
    border-bottom: 1px dashed var(--border-info-color);
  }
  
  .home-2 .navbar .dropdown-menu li:last-child .dropdown-item{
    border-bottom: none;
  }
  
  .home-2 .menu-about p{
    color: var(--color-dark);
  }
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
      border-radius: 20px;
  }
}




/*====================
72. Home 3
======================*/

.home-3 .theme-btn{
  border-radius: 10px;
}

.home-3 .header-top{
  padding: 12px 0 14px 0;
  background: var(--theme-color);
}

.home-3 .header-top::before,
.home-3 .header-top::after{
  display: none;
}

.home-3 .header-top-news{
  color: var(--color-white);
  text-transform: capitalize;
}

.home-3 .header-top-menu a{
  color: var(--color-white);
  margin-right: 6px;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.home-3 .header-top-menu a:last-child{
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.home-3 .header-top-menu a:hover{
  color: var(--theme-color);
}

.home-3 .hero-single::before {
    background:rgb(0 0 0 / 49%);
    opacity: unset;
}

.home-3 .hero-single .hero-title span{
  -webkit-text-stroke: 2px var(--theme-color2);
  -webkit-text-fill-color: transparent;
}

.home-3 .counter-box .icon{
  border-radius: 12px 12px 12px 0;
}

.home-3 .counter-box .icon::before{
  border-radius: 12px 12px 12px 0;
}

.home-3 .footer-area{
  position: relative;
  background-image: url(../img/footer/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.home-3 .footer-area::before{
  content: "";
  position: absolute;
  background: var(--footer-bg);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .95;
}

.header-mid
    {
        position: relative;
        background-color: #03254c;  
        padding: 8px 0;
    }
    
.header-mid marquee {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0px;
    margin-left: 18px;
}
.header-mid strong {
    background: var(--theme-color2);
    color: #000;
    padding: 2px 10px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    border-radius: 10px;
    text-transform: uppercase;
}

.header-mid a {
    color: #fff;
    position: relative;
    margin-right: 10px;
}

.header-mid a.icon {
    margin-right: 10px;
}

        .hdr-top {    background-color: #0B2F55;
    position: relative;padding-top: 4px;padding-bottom: 3px;z-index: 9999;
}
.hdr-social-link li{padding-right: 2px;
    padding-left: 2px;}
.hdr-social-link li a {font-size: 14px;
    color: #000;
    transition: 0.5s;
    display: block;
    background-color: #f0f0f0;
    width:28px;
    height:28px;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
}
.hdr-social-link li a.linden{background-color: #007BB5;color: #fff;}
.hdr-top-cnt{margin-bottom: 0px;}
.hdr-top-cnt li{margin-right: 10px;}
.hdr-top-cnt li:last-child{margin-right: 0px;}
.hdr-top-cnt li a {color: #fff;
    font-weight: 600;
    font-size: 13px;
    display: block;
    padding: 5px;
    position: relative;
}
.hdr-top-cnt-left li a:before{position: absolute;
    right: -7px;
    content: "";
    background-color: #fff;
    width: 2px;
    top: 9px;
    bottom: 9px;}
    .hdr-top-cnt-left li:last-child a:before{display: none;}
.hdr-top-cnt li a>span{font-size: 12px;}
.hdr-top-cnt li a i{margin-right: 4px;}

.hdr-top-cnt li a.btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,.12);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: .35s;
    z-index: 1;
}

.hdr-top-cnt li a.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.6s;
    z-index:-1;
}

.hdr-top-cnt li a.btn:hover{
    background:var(--theme-color2);
    color:var(--theme-color);
    transform:translateY(-3px);
}

.hdr-top-cnt li a.btn:hover i{
    color: #000;
}
.hdr-top-cnt li a.btn:hover::before{
    left:120%;
}

.txt-rgt{ text-align:right;}

     .dropdown-2 {
    position: relative;
    display: inline-block;
  }

  .dropdown-content-2 {
    display: none;
    position: absolute;
    width: 149px;
    left: -20px;
    top: 30px;
    border-radius: 0 0 4px 4px;
    background: #000666;
    z-index: 1;
    /* padding-top: 10px; */
}
   .dropdown-content-2 ul{
    
    padding-left: 0px
  }
  .dropdown-content-2 li{
    list-style: none;
    width:120px;
  }

  .dropdown-content-2 a {
    color: black;
    padding: 4px 10px !important;
    text-decoration: none;
    display: block;

  }

  .dropdown-content-2 a:hover {
   color: var(--theme-color2)
  }

  .dropdown-2:hover .dropdown-content-2 {
    display: block;
  }

  .login-btn {
    padding: 8px 16px;
    background-color: #3a3464;
    color: white;
    border-radius: 5px;
    text-decoration: none;
  }

  .login-btn:hover {
    background-color: #0056b3;
  }
   /*.blinking-text {*/
   /*      animation: blink 1.7s step-start infinite;*/
   /*      color: red;                   */
   /*      font-weight: bold;*/
   /*    }*/

   /*    @keyframes blink {*/
   /*      50% {*/
   /*        opacity: 0;*/
   /*      }*/
   /*    }*/
     
.header-cta ul li {
   display: inline-block;
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid #e1e1e140;
}
.header-cta ul li:first-child{margin-left: 0;}
.header-cta ul li:last-child{padding-right: 0; border-right: none;margin-right: 0;}
.header-cta ul li i {
display: inline-block;
margin-right: 5px;
position: relative;
top: 1px;
color: #f4bc06;
}
.header-top-cta ul li {
	display: inline-block;
	width: 200px;
	margin-right: 80px;
}
.header-top-cta ul li:last-child {margin-right: 0;}
.header-cta .call-box {
  display: flex;
  text-align: left;
}
.header-cta .call-box .icon img{
    width: 35px;
}
.h-cta-icon {
	float: left;
	display: block;
	margin-right: 20px;
}
.h-cta-content {
	overflow: hidden;
}
.h-cta-content h5 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0;
}
.h-cta-content p {
	margin-bottom: 0;
	line-height: 1.5;
}
  
.second-header {
    border: none;
    padding: 8px 0px;
    background: var(--theme-color);
    color: #fff;
    position: relative;
    z-index: 1;
}

/*.second-header::before {*/
/*content: "";*/
/*height: 100%;*/
/*position: absolute;*/
/*width: 32%;*/
/*background: var(--theme-color2);*/
/*top: 0;*/
/*z-index: -1;*/
/*left: -25px;*/
/*transform: skew(30deg);*/
/*}*/
.second-header a,.second-header span{
    color: #fff;
}
.second-header a:hover {
    color: #e3bb1b;
}
.second-menu {
	position: relative;
	z-index: 9;
}
.sticky-menu .second-menu {
	margin: 0;
	box-shadow: none;
	padding: 0;
}
.sticky-menu .second-menu::before{content: none;}
.second-menu .main-menu ul li{margin-left: 40px;}
.second-menu .main-menu ul li:first-child{margin-left: 0;}
.second-menu .main-menu ul li a::before{content: none;}
.second-header-btn .btn {
background: #f4bc06;
font-size: 16px;
color: #fff;
padding: 25px 30px;
position: relative;
border-radius: 0;
}
.second-header-btn .btn:hover {
color: #fff;
background: #125875;
}

.img-main {
    position: relative;
z-index: 2;
}

.offcanvas-menu {
	position: fixed;
	right: 0;
	height: 100%;
	width: 300px;
	z-index: 999;
	background: #00081b;
	top: 0;
	padding: 30px;
	transition: .5s;
	transform: translateX(100%);
}
.offcanvas-menu.active{
	transform: translateX(0)
}
.menu-close i {
	font-size: 18px;
	color: #fff;
	transition: .3s;
	cursor: pointer;
}
.menu-close:hover i{
	color: #f4bc06;
}
.offcanvas-menu ul {
	margin-top: 30px;
}
.offcanvas-menu ul li {
	border-bottom: 1px solid #101c38;
}
.offcanvas-menu ul li a {
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
	padding: 6px 0;
	display: block;
}
.offcanvas-menu ul li:hover a{
	color: #f4bc06;
}
.side-social a {
	color: #fff;
	margin-right: 10px;
}
.side-social {
	margin-top: 30px;
}
.side-social a:hover{
	color: #f4bc06;
}
.offcanvas-menu form {
	position: relative;
	margin-top: 30px;
}
.offcanvas-menu form input {
	width: 100%;
	background: none;
	border: 1px solid #2d3547;
	padding: 7px 10px;
	color: #fff;
}
.offcanvas-menu form button {
    position: absolute;
    border: none;
    right: 0;
    background: #f4bc06;
    padding: 8px 14px;
	top: 0;
	cursor: pointer;
}
.offcanvas-menu form button i {
	color: #fff;
}
.offcanvas-overly {
	position: fixed;
	background: #000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 11;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.offcanvas-overly.active{
	opacity: .5;
	visibility: visible;
}
.off-logo {display: none;}


.mega-menu-item a i {
    color:var(--theme-color2)
}
.dropdown-menu a i {
    color: var(--theme-color2);
    margin-right: 5px;
}


.user-profile-sidebar {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 20px;
    box-shadow: 3px 3px 3px #ddd;
}

.user-profile-sidebar-top {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.user-profile-sidebar-top .blinking{
    animation: blink 1.2s infinite;
}

.user-profile-img i {
    font-size: 38px;
    color: #000;
}

.user-profile-img img {
  border-radius: 50%
}

.profile-img-file {
  display: none
}

.user-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0
}

.user-profile-sidebar-list li {
  margin: 5px 0
}

.user-profile-sidebar-list li a {
  color: var(--color-dark);
  padding: 6px 6px 6px 15px;
  display: block;
  font-weight: 500;
  transition: var(--transition)
}

.user-profile-sidebar-list li a:hover {
  padding-left: 20px
}

.user-profile-sidebar-list li a i {
  margin-right: 5px;
  color: var(--theme-color)
}

.user-profile-sidebar-list .active i {
  color: var(--color-white)
}

.user-profile-sidebar-list .active {
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 8px
}

.user-profile-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 3px 3px 3px #ddd;
}

.user-profile-card-title {
  color: var(--color-dark);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd
}

.user-profile-card .text-success {
  color: #000 !important
}

.user-profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd
}

.user-profile-card-header .user-profile-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.user-profile-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px
}

.user-profile-search .form-group {
  position: relative
}

.user-profile-search .form-control {
  padding: 10px 12px 10px 35px;
  box-shadow: none;
  border-radius: 10px
}

.user-profile-search .form-control:focus {
  border-color: var(--theme-color)
}

.user-profile-search i {
  position: absolute;
  left: 12px;
  top: 15px
}

.user-profile-card-header .theme-btn {
  padding: 8px 15px
}

.profile-info-list li {
  margin: 12px 0;
  font-weight: 500
}

.profile-info-list li span {
  float: right;
  font-weight: 400
}

.user-profile-form .form-group {
  margin-bottom: 20px
}

.user-profile-form .form-group label {
  color: var(--color-dark);
  margin-bottom: 5px
}

.user-profile-form .form-control {
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: none;
  border-color: #e8e8e8
}

.user-profile-form .nice-select {
  border-color: #e8e8e8
}

.user-profile-form .nice-select:focus,
.user-profile-form .form-control:focus {
  border-color: var(--theme-color)
}

.user-profile-form .theme-btn {
  width: unset
}

.user-profile .badge-success {
  background: #dcfce7;
  color: #22c79c
}

.user-profile .badge-info {
  background: #f3e8ff;
  color: #a855f7
}

.user-profile .badge-primary {
  background: #dbf7fd;
  color: #0dcaf0
}

.user-profile .badge-danger {
  background: #fee2e2;
  color: #ef4444
}

.question-formating .inside {
    width: 20%;
    float: left;
    background: #000360;
    border: 1px solid #ddd;
    color:#fff;
    text-align:center;
}
.buy-price {
    font-size: 20px;
    color: #008000;
    font-weight: 600;
}

.student-dashboard-box {
    font-size: 18px;
    width: 100%;
}
.student-dashboard-box .numbers {font-size:24px;}
.user-profile-card .card-body {padding:1rem 0;}

.small-input-field {
    width: 80%;
    margin: auto;
    padding: 8px;
    height: 35px;
    line-height: 16px;
}

/*.header-mid a.icon:before {*/
/*    content: '';*/
/*    width: 37px;*/
/*    height: 28px;*/
/*    background-image: url('https://www.ciit.org.in/assets/img/new.gif');*/
/*    position: absolute;*/
/*    left: -38px;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*}*/


.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
    background-color: var(--theme-color) !important;
}

.modal-title {
    font-weight: bold;
    color: #fff;
}

.form-label {
  font-weight: 600;
}

.btn-success {
  background: linear-gradient(45deg, #28a745, #218838);
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(45deg, #218838, #1e7e34);
  transform: translateY(-2px);
}


.ho-ev-latest2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px;
    margin-bottom: 0px;
    border-radius: 10px 10px 0px 0px;
    background: #f4bc06;
}


#latest_news {
    border: 0px solid;
    padding: 10px;
    /*box-shadow: 5px 8px 8px lightgray;*/
    background-color: #fff;
    /*backdrop-filter: blur(4px);*/
    /*-webkit-backdrop-filter: blur(4px);*/
    border-radius: 0px 0px 10px 10px;
}

.ho-event ul li {
    border-bottom: 1px solid #000000;
    padding: 15px 0px;
    position: relative;
    overflow: hidden;
    align-items: center;
    display: flex;
}
.ho-ev-date{
     border-radius: 3px;
     display: inline-block;
     float: left;
     color: #fff;
     text-align: center;
     padding: 14px 0;
     margin-right: 20px;
     text-transform: uppercase;
     width: 20%;
     background: #02294e;
     background: -webkit-linear-gradient(to top, #012951, #03294e);
     background: linear-gradient(to top, #012951, #03294e);
}
 .ho-ev-date span:first-child{
     display: block;
     font-size: 25px;
     font-weight: 500;
     margin-top: 0px;
     line-height: 25px;
     color: #fff;
}
 .ho-ev-date span:last-child{
     font-size: 12px;
     color: #fff;
}
 .ho-ev-link{
     float: left;
     width: 70%;
}
 .ho-ev-link a{
}
 .ho-ev-link a h4{
     color: #112842;
     padding-bottom: 5px;
     margin-bottom: 3px;
     border-bottom: 0px;
     text-overflow: ellipsis;
     white-space: pre;
     overflow: hidden;
	    letter-spacing: 0px; 
}
 .ho-ev-link p{
     color: #203245;
     margin-bottom: 0px;
     text-overflow: ellipsis;
     white-space: pre;
     overflow: hidden;
}
 .ho-ev-link span{
     color: #959595;
     font-size: 12px;
     font-weight: 500;
}
 .ho-ev-link-full{
     width:100%;
}

.footer-contact , .header-cta ul , .form_ul ul{
    padding:0px;
    margin:0px;
}

.about-text{
    text-align:justify;
}

.inn-title {
    background: #03254c;
    color: #fff;
    padding: 12px 18px;
    border-left: 4px solid #f4bc06;
    border-radius: 8px;
    margin: 10px 0 15px;
    font-size: 16px;
    font-weight: 600;
}
.inn-title h4 {
    font-weight: 700;
    padding-bottom: 0px;
    color: #fff;
}

.form-inline input {
    vertical-align: middle;
    margin: 5px 5px 1 0;
    padding: 5px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: black;
}

 .home-top-cour {
     position: relative;
     overflow: hidden;
     background: #ffffff;
     padding: 15px 0px;
     margin-bottom: 30px;
     -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
     transition: all 0.5s ease;
     border: 1px solid #e4e4e4;
}
 .home-top-cour:hover {
     -moz-transform: scale(1.02);
     -webkit-transform: scale(1.02);
     -o-transform: scale(1.02);
     transform: scale(1.02);
     box-shadow: 0px 11px 9px -10px rgba(0, 0, 0, 0.52);
     -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
     transition: all 0.5s ease;
}
 .home-top-cour img {
     width: 100%;
}
 .home-top-cour-desc {
}
 .home-top-cour-desc span {
     text-transform: uppercase;
     font-size: 12px;
}
 .home-top-cour-desc h3 {
     font-size: 20px;
     padding-bottom: 8px;
     color: #000000;
     margin: 0px;
}
 .home-top-cour-desc h4 {
     font-size: 15px;
     padding-bottom: 8px;
}
 .home-top-cour-desc p {
     margin-bottom: 0px;
     font-size: 13px;
}
 .home-top-cour-rat {
     position: absolute;
     background: #607D8B;
     padding: 0px 5px;
     font-weight: 600;
     color: #fff;
     right: 15px;
     top: 0px;
     font-size: 14px;
     border-radius: 2px;
}

.contact-whatsapp {
    width: 50px;
    position: fixed;
    bottom: 180px;
    right: 15px;
    z-index: 9999;
    display: inline-block;
    animation: up-down 2s infinite;
}

.cell {
    width: 50px;
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 999;
    display: inline-block;
    animation: up-down 2s infinite;
}

@keyframes up-down {
    0% {transform:translateY(0px);}
    50% {transform:translateY(20px);}
    100% {transform:translateY(0px);}
    /*50% {margin-top:-20px;}*/
    /*100% {margin-top: 0px;}*/

}
.student-switch {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.student-switch input[type="radio"] {
  display: none;
}

.student-switch label {
  padding: 10px 20px;
  border: 2px solid #3a3464;
  border-radius: 30px;
  background-color: #fff;
  color: #3a3464;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.student-switch input[type="radio"]:checked + label {
  background-color: #3a3464;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.student-switch label:hover {
  background-color: #e6f0ff;
  border-color: #0056b3;
}

.select2-container .select2-selection--multiple {min-height:48px !important;}
.select2-container .select2-search--inline .select2-search__field {height:20px !important;}

.profile-card {
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 10px;
        background-color: #f9f9f9;
        margin-top: 00px;
    }

    .profile-header {
        font-size: 20px;
        font-weight: bold;
        border-bottom: 2px solid #002147;
        padding-bottom: 5px;
        margin-bottom: 10px;
        color: #002147;
    }

    .profile-label {
        font-weight: bold;
        color: #444;
    }
    .section-title {
        font-weight: bold;
        padding: 8px;
        margin-top: 20px;
        color: #f25b2c;
    }

    .profile-table td {
        padding: 6px 10px;
        white-space: nowrap;
    border-top: 1px solid #999;
    color: #333;
    }
    
    .notice-heading {
    color: #e66030;
    margin-bottom: 15px;
}

.table tbody tr {
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.table tbody tr:hover {
  background-color: #f1f7ff; /* light blue background */
  /*box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);*/
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}
.navbar.fixed-top {padding-right: 0 !important;}

.g-recaptcha > div {width:100% !important;}

@keyframes backgroundChange {
  0% {
    background-color: #0b2f55; /* Initial background color (blue) */
  }
  50% {
    background-color: #e66030; /* Midway color (green) */
  }
  100% {
    background-color: green; /* Final background color (yellow) */
  }
}

/* Apply the animation to the badge */
.course-img .badge , .course-details .badge {
  animation: backgroundChange 3s infinite alternate; /* 3 seconds duration, infinite loop, alternating direction */
}


.top-university .partner-slider h3 {
    background:transparent;
    color:unset;
}
.top-university .partner-wrapper img {
    height: 120px;
    object-fit: contain;
    border-radius: 0px;
}

.top-university .partner-wrapper h3 {
    font-size: 18px;
    margin-top: 12px !important;
    text-align: center;
}
.top-university .partner-wrapper .college-item {
    margin-bottom: 15px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.top-university .partner-wrapper .college-item:hover {
    opacity: 1;
    transform: scale(1.05); /* zoom in */
}


.bar 
{ width: 80px; height: 5px; background: linear-gradient(to right, #f05a28, #ffc107); margin: 15px auto; border-radius: 10px; 
}

@media (max-width:767px) {
    .col-6.footer-col {
    margin-top: 20px;
}
    
}

.savtron-banner{
        background: linear-gradient(135deg, rgba(3, 37, 76, 0.95), rgba(2, 14, 28, 0.92)), url(https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1200&q=80) center / cover no-repeat;
    padding: 55px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.savtron-tag{
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 20px;
}

.savtron-title{
    font-size:56px;
    font-weight:700;
    color: #ffffff;
}

.savtron-title span{
    color:var(--theme-color2);
}

.savtron-desc{
    color: #e5e5e5;
    font-size:17px;
    line-height:1.8;
}

.savtron-box {
    background: #fff;
    border-radius: 24px;
    padding: 10px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    border: 1px solid #ececec;
    border-bottom: 4px solid var(--theme-color2);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.savtron-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* Icon */

.savtron-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: .4s;
}

.blue .savtron-icon{
    background:#eef4ff;
    color:#2563eb;
}

.green .savtron-icon{
    background:#eafaf5;
    color:#10b981;
}

.pink .savtron-icon{
    background:#fff0f6;
    color:#ec4899;
}

.savtron-box:hover .savtron-icon{
    transform:scale(1.08) rotate(-8deg);
}

/* Number */

.savtron-box h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
    color:var(--theme-color);
}

/* Title */

.savtron-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--theme-color);
}

/* Description */

.savtron-box p{
    font-size:16px;
    line-height:1.4;
    margin-bottom:5px;
}

/* Bottom Line */

.savtron-line{
    display:block;
    width:65px;
    height:4px;
    margin:auto;
    border-radius:30px;
    transition:.4s;
}

.blue .savtron-line{
    background:#2563eb;
}

.green .savtron-line{
    background:#10b981;
}

.pink .savtron-line{
    background:#ec4899;
}

.savtron-box:hover .savtron-line{
    width:110px;
}

/* Colored Bottom Border */

.blue{
    border-bottom-color:#2563eb;
}

.green{
    border-bottom-color:#10b981;
}

.pink{
    border-bottom-color:#ec4899;
}

/* Responsive */

@media(max-width:991px){

.savtron-box{
    padding:30px 20px;
}

.savtron-box h3{
    font-size:36px;
}

.savtron-box h5{
    font-size:22px;
}

.savtron-icon{
    width:75px;
    height:75px;
    font-size:30px;
}

}

.savtron-form{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 25px;
    border-top:5px solid var(--theme-color2);
}



.savtron-form h3{
    color:var(--theme-color2);
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.savtron-form p{
    color:#cfd6df;
    margin-bottom:30px;
}

.savtron-input{
    position:relative;
}


.savtron-input i{
    position:absolute;
    top:50%;
    left:20px;
    transform:translateY(-50%);
    color:var(--theme-color);
    font-size:18px;
    z-index:2;
}

.savtron-input i.select-arrow {
    right: 20px !important;
    left: inherit;
}

.savtron-input .form-control,
.savtron-input .form-select{
    height:56px;
    border:none;
    border-radius:14px;
    padding-left:50px;
    background:#fff;
    color:#444;
    box-shadow:none;
    font-size:15px;
}

.savtron-input .form-control:focus,
.savtron-input .form-select:focus{
    box-shadow:0 0 0 .2rem rgba(244,188,6,.18);
    border:none;
}



.form-check-input{
    border-radius:3px;
}

.form-check-label{
    color:#ddd;
    line-height:1.5;
}

.form-check-label a{
    color:var(--theme-color2);
    font-weight:600;
}

.savtron-submit-btn{
    height:56px;
    border:none;
    border-radius:14px;
    background:var(--theme-color);
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.savtron-submit-btn:hover{
    background:var(--theme-color2);
    color:var(--theme-color);
}

.savtron-submit-btn i{
    transition:.3s;
}

.savtron-submit-btn:hover i{
    transform:translateX(4px);
}

.savtron-banner .btn-primary{
    background:var(--theme-color);
    border-color:var(--theme-color);
}

.savtron-banner .btn-primary:hover{
    background:var(--theme-color2);
    border-color:var(--theme-color2);
    color:var(--theme-color);
}

.savtron-banner .btn-outline-dark{
    border:2px solid var(--theme-color);
    color:var(--theme-color);
    background:transparent;
}

.savtron-banner .btn-outline-dark:hover{
    background:var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
}

@media(max-width:991px){

.savtron-banner{
    padding:70px 0;
    text-align:center;
}

.savtron-title{
    font-size:38px;
}

}
.clients-area {
    background: var(--theme-color2);
}

.clients-wrapper{
    
}

.clients-title{
    text-align:center;
    margin-bottom:25px;
}

.clients-title span{
    color:var(--theme-color);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.clients-title h4{
    color:var(--theme-color);
    font-weight:700;
    margin-top:8px;
}

.client-item{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--border-info-color);
    border-radius:12px;
    transition:.35s;
    background:#fff;
}

.client-item img {
    max-width: 180px;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: .65;
    transition: .35s;
    object-fit: contain;
}

.client-item:hover{
    border-color:var(--theme-color);
}

.client-item:hover img{
    filter:none;
    opacity:1;
}

.savtron-news-section{

    

}

.savtron-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #edf1f6;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    height:100%;

}

.savtron-card-header{

    background:var(--theme-color);

    color:#fff;

    padding:18px 25px;

}

.savtron-card-header h4{

    margin:0;

    font-size:22px;

    font-weight:700;

}

.savtron-card-header h4 i{

    color:var(--theme-color2);

    margin-right:8px;

}

.savtron-card-header a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.savtron-card-header a:hover{

    color:var(--theme-color2);

}

.savtron-news-list{

    max-height:500px;

    overflow-y:auto;

}

.savtron-news-item{

    display:flex;

    gap:18px;

    padding:22px;

    border-bottom:1px solid #edf1f6;

    transition:.3s;

}

.savtron-news-item:last-child{

    border-bottom:none;

}

.savtron-news-item:hover{

    background:#fbfcfe;

}

.news-date{

    min-width:75px;

    height:75px;

    background:var(--theme-color2);

    color:var(--theme-color);

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    font-size:13px;

    font-weight:700;

    padding:10px;

}

.news-content{

    flex:1;

}

.news-content h5{

    font-size:17px;

    color:var(--theme-color);

    margin-bottom:10px;

    line-height:1.6;

}

.news-content a{

    color:var(--theme-color);

    font-weight:600;

    text-decoration:none;

}

.news-content a:hover{

    color:var(--theme-color2);

}

.news-content img{

    width:40px;

    margin-left:6px;

}

.savtron-news-list::-webkit-scrollbar{

    width:6px;

}

.savtron-news-list::-webkit-scrollbar-thumb{

    background:var(--theme-color2);

    border-radius:30px;

}

/*==========================
 Chairman Message
===========================*/

.chairman-section {
    
    padding: 50px 0px;
}

.chairman-wrapper{
    background:#fff;
    border-radius:24px;
    padding:60px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

/*.chairman-wrapper::before{*/
/*    content:"";*/
/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:6px;*/
/*    background:var(--theme-color2);*/
/*}*/

/* Heading */

.chairman-heading{
    margin-bottom:50px;
}

/* Profile */

.chairman-profile{
    text-align:center;
}

.chairman-img{
    position:relative;
    display:inline-block;
}

.chairman-img::before{
    content:"";
    position:absolute;
    left:-12px;
    top:-12px;
    width:100%;
    height:100%;
    border:3px solid var(--theme-color2);
    border-radius:18px;
    z-index:0;
}

.chairman-img img{
    position:relative;
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    z-index:1;
}

.chairman-profile h4{
    margin-top:25px;
    color:var(--theme-color);
    font-weight:700;
}

.chairman-profile span{
    color:var(--theme-color2);
    font-weight:600;
}

/* Message */

.chairman-message{
    position:relative;
}

.quote-icon {
    font-size: 45px;
    color: rgba(244,188,6,.20);
}

.chairman-message p{
    font-size:16px;
    margin-bottom:35px;
}

/* Footer */

.chairman-footer{
    display:flex;
    align-items:flex-start;
    gap:25px;
    margin-top:35px;
}

.chairman-line{
    width:5px;
    height:90px;
    background:var(--theme-color2);
    border-radius:20px;
}

.chairman-footer h5{
    color:var(--theme-color);
    font-style:italic;
    font-size:20px;
    margin-bottom:18px;
    line-height:1.6;
}

.chairman-footer h4{
    color:var(--theme-color);
    margin-bottom:4px;
    font-weight:700;
}

.chairman-footer span{
    color:var(--theme-color2);
    font-weight:600;
}

/* Responsive */

@media(max-width:991px){

.chairman-wrapper{
    padding:35px;
}

.chairman-heading{
    margin-bottom:35px;
}

/*.chairman-profile{*/
/*    margin-bottom:40px;*/
/*}*/

.chairman-footer{
    flex-direction:column;
    gap:15px;
}

.chairman-line{
    width:80px;
    height:5px;
}

}

/*==========================
 Approval Section
===========================*/
.approval-area{
    padding:50px 0;
}
.approval-card{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    border-left:4px solid var(--theme-color2);
  
    border-radius:18px;
    padding:25px;
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}



.approval-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.approval-card:hover::before{
    transform:scaleY(1);
}

.approval-logo{
    width:120px;
    min-width:120px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    
    border-radius:15px;
    border:1px solid #edf1f6;
}

.approval-logo img{
    max-width:90px;
    max-height:90px;
    object-fit:contain;
}

.approval-content{
    flex:1;
}

.approval-content h4{
    color:var(--theme-color);
    font-size:22px;
    font-weight:700;
    line-height:1.5;
    margin-bottom:0px;
}

.approval-info{
    margin-bottom:0px;
}

.approval-info:last-child{
    margin-bottom:0;
}

.approval-info span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:var(--theme-color2);
    margin-bottom:0px;
}

.approval-info p{
    margin:0;
    color:#5d6776;
    line-height:1.7;
}

@media(max-width:767px){

.approval-card{
    flex-direction:column;
    text-align:center;
    padding:25px 20px;
}

.approval-logo{
    width:100px;
    height:100px;
}

.approval-logo img{
    max-width:70px;
}

.approval-content h4{
    font-size:19px;
}

}

/*======================================
 Vision Mission Section
======================================*/

.vm-section{
    padding:70px 0;
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}

.vm-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(3,37,76,.04);
    border-radius:50%;
    right:-170px;
    top:-170px;
}

.vm-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(244,188,6,.08);
    border-radius:50%;
    left:-130px;
    bottom:-130px;
}

.vm-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    border-left:4px solid var(--theme-color2);
    box-shadow:0 15px 45px rgba(0,0,0,.07);
    transition:.35s;
    position:relative;
    z-index:2;
}

.vm-card:hover{
    transform:translateY(-8px);
}

.vm-card h3{
    color:var(--theme-color);
    margin-bottom:20px;
    font-size:28px;
}

.vm-card p{
    color:#000;
    line-height:1.9;
    margin-bottom:0;
}

.vm-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:20px;
    background:var(--theme-color);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.vm-list{
    margin:0;
    padding:0;
    list-style:none;
}

.vm-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    color:#555;
    font-size:16px;
}

.vm-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:var(--theme-color2);
    font-weight:700;
}

.value-tag{
    display:inline-block;
    padding:10px 22px;
    margin:6px;
    border-radius:50px;
    
    border:1px solid rgba(3,37,76,.08);
    color:var(--theme-color);
    font-weight:600;
    transition:.3s;
}

.value-tag:hover{
    background:var(--theme-color);
    color:#fff;
}

.future-box{
    background:var(--theme-color);
    border-radius:22px;
    padding:45px;
    overflow:hidden;
    position:relative;
}

.future-box::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-90px;
    top:-90px;
}

.future-icon{
    width:90px;
    height:90px;
    background:var(--theme-color2);
    color:var(--theme-color);
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:20px;
    font-size:40px;
}

.future-box h2{
    color:#fff;
    margin-bottom:15px;
}

.future-box p{
    color:rgba(255,255,255,.85);
    line-height:2;
    margin:0;
}

@media(max-width:991px){

.vm-icon{
    margin-bottom:20px;
}

.future-box{
    text-align:center;
}

.future-icon{
    margin-bottom:25px;
}

}

    /*===============================
      STUDENT LOGIN
================================*/

.student-login-area{
    
    min-height:650px;
}
.student-login-area{
    position: relative;
    overflow: hidden;
}

.student-login-area canvas{
    position:absolute !important;
    inset:0;
    width:100% !important;
    height:100% !important;
    z-index:0;
}

.student-login-area .container{
    position:relative;
    z-index:2;
}

.student-login-box{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

    border-top:5px solid var(--theme-color2);

    transition:.35s;
}

.student-login-box:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.student-login-top{

    text-align:center;

    margin-bottom:30px;

}

.student-login-icon{

    width:85px;

    height:85px;

    margin:auto;

    background:rgba(3,37,76,.08);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.student-login-icon i{

    font-size:42px;

    color:var(--theme-color);

}

.student-login-top h2{

    color:var(--theme-color);

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.student-login-top p{

    color:#7d8793;

    margin:0;

}

/*========================*/

.student-input{

    position:relative;

    margin-bottom:20px;

}

.student-input i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:var(--theme-color);

    z-index:2;

}

.student-input .form-control{

    height:56px;

    border-radius:12px;

    padding-left:52px;

    border:1px solid #d8dde6;

    box-shadow:none;

    transition:.3s;

}

.student-input .form-control:focus{

    border-color:var(--theme-color2);

}

/*========================*/

.student-login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:12px;

    background:var(--theme-color);

    color:#fff;

    font-size:19px;

    font-weight:600;

    transition:.3s;

}

.student-login-btn i{

    margin-right:8px;

}

.student-login-btn:hover{

    background:var(--theme-color2);

    color:var(--theme-color);

}

/*========================*/

.student-register{

    margin-top:28px;

    text-align:center;

    color:#777;

}

.student-register a{

    color:var(--theme-color);

    font-weight:700;

    text-decoration:none;

}

.student-register a:hover{

    color:var(--theme-color2);

}

.student-register i{

    margin-right:6px;

}

@media(max-width:767px){

.student-login-box{

padding:30px 22px;

}

.student-login-top h2{

font-size:32px;

}

}

/* =========================================================
   STUDENT VERIFICATION
========================================================= */

.sv-page {
    position: relative;
    background: #f7f9ff;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.sv-page-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.sv-heading-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;

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

    border-radius: 50%;

    background: #f1edff;
    color: #6338d8;

    border: 1px solid #ddd3ff;

    font-size: 27px;

    box-shadow: 0 5px 18px rgba(99,56,216,.10);
}

.sv-page-heading h2 {
    margin: 0 0 4px;

    color: #071d49;

    font-size: 29px;
    font-weight: 800;
}

.sv-page-heading p {
    margin: 0;

    color: #68748a;

    font-size: 15px;
}


/* =========================================================
   MAIN CARD
========================================================= */

.sv-main-card {
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 22px;

    border: 1px solid #e7eaf2;

    box-shadow: 0 15px 45px rgba(20,40,90,.08);

    overflow: hidden;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.sv-profile-card {
    position: relative;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e6e9f0;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);

    text-align: center;
}

.sv-profile-cover {
    height: 145px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,.14) 1px,
            transparent 2px
        ),
        linear-gradient(
            135deg,
            #244df0,
            #6437e8
        );

    background-size: 16px 16px, auto;

    position: relative;
}

.sv-profile-cover:after {
    content: "";

    position: absolute;

    left: -10%;
    right: -10%;
    bottom: -38px;

    height: 75px;

    background: #fff;

    border-radius: 50% 50% 0 0;
}


/* =========================================================
   PHOTO
========================================================= */

.sv-photo-wrap {
    position: relative;

    width: 150px;
    height: 150px;

    margin: -75px auto 0;

    z-index: 3;
}

.sv-profile-photo {
    width: 150px;
    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    background: #fff;

    border: 5px solid #fff;

    box-shadow:
        0 6px 25px rgba(0,0,0,.18);
}

.sv-verified-icon {
    position: absolute;

    right: 5px;
    bottom: 8px;

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: #20c997;

    color: #fff;

    border: 3px solid #fff;

    font-size: 13px;
}


/* =========================================================
   PROFILE CONTENT
========================================================= */

.sv-profile-content {
    padding: 17px 22px 25px;
}

.sv-profile-content h3 {
    color: #071d49;

    font-size: 21px;

    font-weight: 800;

    margin: 0 0 5px;

    text-transform: uppercase;
}

.sv-course-name {
    color: #59667c;

    font-size: 14px;

    line-height: 1.6;

    margin: 0 auto 20px;

    max-width: 230px;
}


/* =========================================================
   ENROLLMENT
========================================================= */

.sv-enrollment-box {
    background: #f5f3ff;

    border: 1px solid #e5ddff;

    border-radius: 13px;

    padding: 13px 10px;

    margin-bottom: 14px;
}

.sv-enrollment-box span {
    display: block;

    color: #596174;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 3px;
}

.sv-enrollment-box strong {
    display: block;

    color: #3921a2;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   STATUS
========================================================= */

.sv-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 15px;

    border-radius: 30px;

    background: #eafaf3;

    color: #159466;

    border: 1px solid #ccefe0;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   VERIFICATION NOTE
========================================================= */

.sv-verification-note {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 14px;

    border-radius: 15px;

    background: #f5f9ff;

    border: 1px solid #e1ebfa;

    text-align: left;
}

.sv-note-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

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

    border-radius: 50%;

    background: #e8f1ff;

    color: #1464d9;

    font-size: 18px;
}

.sv-verification-note strong {
    display: block;

    color: #071d49;

    font-size: 14px;

    margin-bottom: 2px;
}

.sv-verification-note p {
    margin: 0;

    color: #727c8c;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   DETAIL CARD
========================================================= */

.sv-detail-card {
    background: #fff;

    border: 1px solid #e7eaf0;

    border-radius: 18px;

    padding: 20px;

    box-shadow: 0 7px 25px rgba(0,0,0,.045);

    margin-top: 18px;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.sv-section-title {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 12px;

    margin-bottom: 5px;

    border-bottom: 1px solid #e8ebf0;
}

.sv-section-icon {
    width: 39px;
    height: 39px;

    min-width: 39px;

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

    border-radius: 50%;

    background: #eaf2ff;

    color: #175bc8;

    font-size: 17px;
}

.sv-section-icon.sv-purple {
    background: #f1ebff;

    color: #733de1;
}

.sv-section-title h4 {
    margin: 0;

    color: #101e3d;

    font-size: 16px;

    font-weight: 800;
}

.sv-section-title span span {
    display: block;
}


/* Purple/blue underline */

.sv-section-title div > span {
    display: block;

    width: 48px;

    height: 3px;

    margin-top: 5px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #7439df
    );
}


/* =========================================================
   DETAILS
========================================================= */

.sv-details-table {
    width: 100%;
}

.sv-detail-row {
    display: grid;

    grid-template-columns: 235px 20px 1fr;

    align-items: center;

    min-height: 43px;

    padding: 5px 10px;

    border-radius: 7px;

    transition: .2s ease;
}

.sv-detail-row:nth-child(even) {
    background: #f8f9fc;
}

.sv-detail-row:hover {
    background: #f1f5ff;
}


/* Label */

.sv-detail-label {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #17213a;

    font-size: 13px;
}

.sv-detail-label i {
    width: 20px;

    color: #285ac5;

    text-align: center;

    font-size: 14px;
}

.sv-detail-label strong {
    font-weight: 700;
}


/* Colon */

.sv-colon {
    color: #7d8491;

    text-align: center;

    font-weight: 600;
}


/* Value */

.sv-detail-value {
    color: #424d62;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;
}


/* =========================================================
   PERSONAL CARD
========================================================= */

.sv-personal-card {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px) {

    .sv-detail-row {
        grid-template-columns: 190px 18px 1fr;
    }

}

@media(max-width:991px) {

    .sv-profile-card {
        height: auto;

        margin-bottom: 18px;
    }

    .sv-verification-note {
        margin-bottom: 20px;
    }

    .sv-detail-row {
        grid-template-columns: 200px 18px 1fr;
    }

}

@media(max-width:767px) {

    .sv-page {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sv-page-heading {
        margin-bottom: 18px;
    }

    .sv-heading-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;

        font-size: 22px;
    }

    .sv-page-heading h2 {
        font-size: 23px;
    }

    .sv-page-heading p {
        font-size: 13px;
    }

    .sv-main-card {
        padding: 12px;

        border-radius: 18px;
    }

    .sv-detail-card {
        padding: 14px;

        border-radius: 15px;
    }

    .sv-detail-row {
        grid-template-columns: 1fr;

        gap: 3px;

        padding: 10px 8px;
    }

    .sv-colon {
        display: none;
    }

    .sv-detail-value {
        padding-left: 31px;
    }

    .sv-detail-label {
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .sv-profile-cover {
        height: 125px;
    }

    .sv-photo-wrap {
        width: 130px;
        height: 130px;

        margin-top: -65px;
    }

    .sv-profile-photo {
        width: 130px;
        height: 130px;
    }

    .sv-verified-icon {
        right: 0;
        bottom: 5px;
    }

    .sv-profile-content h3 {
        font-size: 19px;
    }

    .sv-section-title h4 {
        font-size: 14px;
    }

    .sv-detail-value {
        font-size: 12px;
    }

}

.password-wrapper{
    position:relative;
}

.password-wrapper input{
    padding-right:50px !important;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
    z-index: 10;
}

.password-toggle:hover{
 
    color:var(--theme-color);
}

.education-table{
    border:1px solid #dbe3ee;
    margin-bottom:0;
}

.education-table thead th{
    background:var(--theme-color);
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    padding:15px 12px;
    vertical-align:middle;
    white-space:nowrap;
    border:1px solid rgba(255,255,255,.15);
}

.education-table tbody td{
    padding:10px;
    vertical-align:middle;
    background:#fff;
}

.education-table tbody tr:nth-child(even){
    background:#f8fbff;
}

.education-table tbody tr:nth-child(even) td{
    background:#f8fbff;
}

.education-table tbody td:first-child{
    color:var(--theme-color);
    white-space:nowrap;
    background:#f3f7fb;
}

.education-table .form-control{
    height:42px;
    border:1px solid #ced4da;
    border-radius:6px;
    box-shadow:none;
    font-size:14px;
}

.education-table .form-control:focus{
    border-color:var(--theme-color2);
    box-shadow:0 0 0 .15rem rgba(244,188,6,.15);
}

@media(max-width:991px){

    .education-table{
        min-width:1100px;
    }

}

.container-padd-tb{
    padding: 20px;
    background-color: #fff9e6;
    border: none;
    border-left: 5px solid #ffcc00;
    border-radius: 8px;
    margin-bottom: 20px;
}

.notice-page{
    
}

/* Sidebar Button */

.sidebar-btn a {
    display: block;
    background: linear-gradient(135deg,#03254c,#0a3d7a);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    transition: .6s;
    margin-bottom: 20px;
}

.sidebar-btn a:hover{
    background:var(--theme-color2);
    color:var(--theme-color);
}

/* Sidebar Card */

.sidebar-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    border-top:4px solid var(--theme-color2);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.sidebar-card h4{
    font-size:18px;
    font-weight:700;
    color:var(--theme-color);
    text-transform:uppercase;
    margin-bottom:18px;
    padding-bottom:10px;
    border-bottom:1px solid #ddd;
}

.sidebar-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.sidebar-card ul li{
    margin-bottom:14px;
}

.sidebar-card ul li:last-child{
    margin-bottom:0;
}

.sidebar-card ul li a{
    color:#111;
    font-weight:600;
    transition:.3s;
    display:flex;
    align-items:center;
}

.sidebar-card ul li a i{
    color:var(--theme-color2);
    margin-right:10px;
    
    transition:.3s;
}

.sidebar-card ul li a:hover{
    color:var(--theme-color2);
    padding-left:8px;
}

.sidebar-card ul li a:hover i{
    margin-right:5px;
}

/* Table */

.notice-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.notice-table{
    margin:0;
}

.notice-table thead th{
    background:var(--theme-color);
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:10px;
    border:1px solid rgba(255,255,255,.15);
}

.notice-table tbody td {
    padding: 10px 10px;
    vertical-align: middle;
    border: 1px solid #e9eef5;
    font-size: 16px;
    background: transparent;
}

.notice-table tbody tr:nth-child(even){
    background-color:#F5FAFF !important;
}

.notice-table tbody tr:hover{
    background-color:#FFFDF5 !important;
    transition:.3s;
}

.pdf-icon{
    color:#ff2c2c;
    font-size:20px;
    transition:.3s;
}

.pdf-icon:hover{
    transform:scale(1.15);
}

/* Responsive */

@media(max-width:991px){

.sidebar-btn a{
    font-size:20px;
}

.notice-table{
    min-width:900px;
}

.notice-card{
    overflow:auto;
}

}

.video-gallery-section{
    background:#f5f8fc;
}

.gallery-tag{
    display:inline-block;
    background:#f4bc06;
    color:#03254c;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.gallery-title{
    font-size:40px;
    font-weight:700;
    color:#03254c;
    margin-bottom:15px;
}

.gallery-title span{
    color:#f4bc06;
}

.video-gallery-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border-top:5px solid #03254c;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.video-gallery-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.video-box{
    padding:10px;
}

.video-box iframe{
    width:100%;
    height:240px;
    border:none;
    border-radius:10px;
}

.video-info{
    padding:10px;
}

.activity-badge{
    display:inline-block;
    background:#03254c;
    color:#fff;
    padding:6px 14px;
    font-size:13px;
    border-radius:20px;
    margin-bottom:15px;
}

.video-info h4{
    color:#03254c;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.4;
}

.video-info p{
    color:#000;
    line-height:28px;
    margin-bottom:25px;
}

.video-btn{
    display:inline-block;
    background:#f4bc06;
    color:#03254c;
    padding:12px 28px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.video-btn:hover{
    background:#03254c;
    color:#fff;
}

.video-btn i{
    margin-left:8px;
}

@media(max-width:991px){

.video-info{
    padding-top:0;
}

.gallery-title{
    font-size:32px;
}

}

@media(max-width:767px){

.video-box iframe{
    height:220px;
}

.gallery-title{
    font-size:28px;
}

.video-info{
    padding:10px;
}

}

.placement-intro{
    background:#f7f9fc;
}

.placement-box{
    background:#fff;
    border-radius:20px;
    padding:60px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border-top:5px solid var(--theme-color2);
}

.placement-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#fff6da;
    color:var(--theme-color2);
    font-weight:600;
    margin-bottom:20px;
}

.placement-title{
    color:var(--theme-color);
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
}

.placement-text{
    color:#000;
    line-height:30px;
    margin-bottom:30px;
}

.placement-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature-item{
    background:#f8f9fa;
    border-radius:8px;
    padding:15px;
    font-weight:600;
    color:var(--theme-color);
}

.feature-item i{
    color:var(--theme-color2);
}
.feature-item:hover i{
    color:var(--theme-color);
}

.placement-btns{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.call-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 25px;
    border:2px solid var(--theme-color);
    color:var(--theme-color);
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    background:var(--theme-color);
    color:#fff;
}

.placement-side-card{
    background:linear-gradient(135deg,var(--theme-color),#054a8b);
    color:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
}

.placement-side-card .icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:var(--theme-color2);
    margin-bottom:20px;
}

.placement-side-card h4{
    color:#fff;
    margin-bottom:15px;
}

.placement-side-card p{
    margin:0;
    opacity:.95;
}

@media(max-width:991px){

.placement-box{
    padding:35px;
}

.placement-title{
    font-size:32px;
}

.placement-side-card{
    margin-top:30px;
}

}

@media(max-width:767px){

.placement-features{
    grid-template-columns:1fr;
}

.placement-title{
    font-size:26px;
}

.placement-btns{
    flex-direction:column;
}

.call-btn,
.theme-btn{
    justify-content:center;
}

}


.download-section{
    
}

.download-card{
    display:block;
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    text-decoration:none;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
    position:relative;
    overflow:hidden;
}

.download-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--theme-color2);
}

.download-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.download-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:var(--theme-color);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.download-card:hover .download-icon{
    background:var(--theme-color2);
    color:var(--theme-color);
    transform:rotateY(180deg);
}

.download-content h4{
    color:var(--theme-color);
    font-size:22px;
    margin:25px 0 15px;
    font-weight:700;
}

.download-content p{
    color:#000;
    line-height:1.7;
    min-height:70px;
}

.download-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:var(--theme-color);
    font-weight:600;
    transition:.3s;
}

.download-card:hover .download-btn{
    color:var(--theme-color2);
}

@media(max-width:991px){
    .download-banner-content h2{
        font-size:34px;
    }
}

@media(max-width:767px){
    .download-banner-content h2{
        font-size:28px;
    }
}

.practical-list{
    list-style:none;
    padding:0;
    margin:0;
}

.practical-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    color:#444;
    font-size:16px;
    line-height:1.7;
}

.practical-list li i{
    color:var(--theme-color2);
    margin-top:4px;
    font-size:18px;
}

.affiliation-section{
    background:#f7f9fc;
}

.affiliation-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.affiliation-left{
    background:var(--theme-color);
    color:#fff;
    height:100%;
    padding:50px 35px;
    position:relative;
}

.affiliation-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.12);
    color:var(--theme-color2);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.affiliation-left h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1.3;
}

.affiliation-divider{
    width:70px;
    height:4px;
    background:var(--theme-color2);
    border-radius:50px;
    margin:25px 0;
}

.affiliation-icon{
    font-size:90px;
    color:rgba(255,255,255,.08);
    position:absolute;
    bottom:20px;
    right:20px;
}

.affiliation-content{
    padding:50px;
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.affiliation-content p:last-child{
    margin-bottom:0;
}

.affiliation-footer{
    border-top:1px solid #ececec;
    padding:25px 40px;
    background:#fafafa;
}

.call-box{
    display:flex;
    align-items:center;
    gap:0px;
}

.call-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--theme-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.call-box span{
    color:#777;
    display:block;
}

.call-box h5{
    margin:4px 0 0;
    font-size:22px;
}

.call-box h5 a{
    color:var(--theme-color);
}

@media(max-width:991px){

.affiliation-left{
    padding:40px 30px;
}

.affiliation-left h2{
    font-size:28px;
}

.affiliation-content{
    padding:35px 25px;
}

.affiliation-footer{
    padding:25px;
}

.call-box{
    margin-bottom:20px;
}

}
.centre-directory {
    background: #f4f7f6; /* Soft background to let the white cards pop */
}

.ciit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border-top: 5px solid #001e4c;
}

.ciit-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Badges */
.atc-badge {
    background: #001e4c;
    color: #ffffff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.atc-badge i { color: #f4b41a; font-size: 16px; }

.status-badge {
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.status-badge.active {
    background: #e6f6eb;
    color: #28a745;
}
.status-badge.inactive {
    background: #feeaea;
    color: #dc3545;
}

/* Left Column - Institute Info */
.inst-title h2 {
    color: #001e4c;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 5px;
    line-height: 1.2;
}
.inst-title p {
    color: #3b5998;
    font-style: italic;
    font-size: 15px;
    margin: 0;
}

.fancy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 15px;
}
.fancy-divider .line {
    height: 1px;
    background: #e2e2e2;
    flex-grow: 1;
}
.fancy-divider i {
    color: #f4b41a;
    font-size: 10px;
}

/* Contact Box */
.contact-box {
    background: #fbfbfb;
    border-radius: 20px;
    padding: 15px 25px;
}
.contact-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-box li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted #d1d1d1;
    gap: 15px;
}
.contact-box li:last-child {
    border-bottom: none;
}
.icon-circle {
    background: #001e4c;
    color: #f4b41a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.text-content {
    font-size: 14px;
    color: #333;
}
.text-content .label {
    font-weight: 700;
    color: #001e4c;
    width: 80px;
    display: inline-block;
}
.text-content a {
    color: #333;
    text-decoration: none;
}

/* Right Column - Schools */
.schools-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.schools-header .gold-line {
    height: 2px;
    background: #f4b41a;
    width: 60px;
    position: relative;
}
.schools-header .gold-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f4b41a;
    transform: rotate(45deg);
    top: -2px;
}
.schools-header .gold-line:first-child::after { right: 0; }
.schools-header .gold-line:last-child::after { left: 0; }

.schools-badge {
    background: #001e4c;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.schools-badge i {
    color: #f4b41a;
    font-size: 18px;
}

/* School Cards */
.school-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: 0.3s ease;
}
.school-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.school-icon {
    background: #001e4c;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.school-name {
    color: #001e4c;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.3;
}
.school-name .underline {
    height: 3px;
    background: #f4b41a;
    width: 30px;
    border-radius: 5px;
}

@media(max-width:991px){
    .ciit-left-col {
        margin-bottom: 30px;
    }
}
@media(max-width:767px){
    .ciit-card {
        padding: 20px;
    }
    .ciit-card-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    .contact-box {
        padding: 15px;
    }
    .text-content .label {
        width: 100%;
        display: block;
        margin-bottom: 2px;
    }
}

.cookie-policy-section{
    
}

.section-tag{
    display:inline-block;
    background:rgba(244,188,6,.15);
    color:var(--theme-color2);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--theme-color);
}

.section-title span{
    color:var(--theme-color2);
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#000;
}

.policy-info-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:25px;
    transition:.3s;
}

.policy-info-card:hover{
    transform:translateY(-5px);
}

.policy-icon{
    width:70px;
    height:70px;
    background:var(--theme-color);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.policy-main-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.policy-item h5{
    color:var(--theme-color);
    font-weight:700;
    margin-bottom:20px;
}

.policy-item h5 i{
    color:var(--theme-color2);
    margin-right:8px;
}

.policy-list{
    list-style:none;
    padding:0;
}

.policy-list li{
    padding:10px 0;
    border-bottom:1px dashed #ddd;
}

.policy-list li:before{
    content:"✓";
    color:var(--theme-color2);
    font-weight:bold;
    margin-right:10px;
}

.cookie-box{
    
    border-left:4px solid var(--theme-color2);
    padding:20px;
    border-radius:10px;
    height:100%;
}

.cookie-box h6{
    color:var(--theme-color);
    font-weight:700;
}

.policy-alert{
    background:#012758;
    color:#fff;
    padding:20px;
    border-radius:12px;
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.policy-alert i{
    font-size:28px;
    color:var(--theme-color2);
}

.policy-alert p {
    color:#fff;
}

.policy-footer{
    text-align:right;
    color:#000;
    font-size:15px;
}

@media(max-width:767px){

.section-title{
    font-size:30px;
}

.policy-main-card{
    padding:25px;
}

}

.course-banner{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    margin-bottom:30px;
}

.course-banner img{
    width:100%;
    /*height:420px;*/
    /*object-fit:cover;*/
}

.course-badge{
    position:absolute;
    top:20px;
    padding:10px 20px;
    color:#fff;
    border-radius:30px;
    font-weight:600;
    backdrop-filter:blur(10px);
}

.course-badge.price{
    left:20px;
    background:var(--theme-color2);
}

.course-badge.duration{
    right:20px;
    background:var(--theme-color);
}

.course-content-card,
.related-course-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 0 50px 10px rgba(0,0,0,0.1);
    margin-bottom:30px;
}

.course-content-card h2{
    color:var(--theme-color);
    margin-bottom:15px;
}

.course-divider{
    width:70px;
    height:4px;
    background:var(--theme-color2);
    border-radius:10px;
    margin-bottom:20px;
}



.related-course{
    display:flex;
    gap:15px;
    align-items:center;
    text-decoration:none;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.related-course img {
    max-width: 100%;
    max-height: 70px;
    border-radius: 10px;
    object-fit: contain;
}

.related-course h6{
    color:var(--theme-color);
    margin-bottom:5px;
}

.related-course span{
    color:var(--theme-color2);
    font-size:14px;
}


/* =========================================================
   COURSE ADMISSION SIDEBAR
========================================================= */

.course-sidebar-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px 22px 24px;
    overflow: hidden;
    border: 1px solid #edf0f5;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    text-align: center;
    margin-bottom: 20px;
}


/* =========================================================
   TOP BLUE BACKGROUND
========================================================= */

.course-sidebar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 155px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.15) 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 80% 40%,
            rgba(255,255,255,.12) 1px,
            transparent 2px
        ),
        linear-gradient(
            145deg,
            #002147,
            #064b9b
        );
    background-size: 18px 18px, 22px 22px, auto;
    border-radius: 28px 28px 45% 45%;
    z-index: 0;
}


/* =========================================================
   GRADUATION ICON
========================================================= */

.course-admission-icon {
    position: relative;
    z-index: 2;

    width: 100px;
    height: 100px;

    margin: 0 auto 18px;

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

    border-radius: 50%;

    background: #fff;

    color: #002147;

    font-size: 42px;

    border: 1px solid #e8edf4;

    box-shadow:
        0 8px 25px rgba(0, 33, 71, .14);
}


.course-admission-icon i {
    transition: .35s ease;
}


.course-sidebar-card:hover
.course-admission-icon i {
    transform: translateY(-3px) rotate(-5deg);
}


/* =========================================================
   HEADING
========================================================= */

.course-admission-head {
    position: relative;
    z-index: 2;

    margin-bottom: 22px;
    margin-top: 50px;
}


.course-admission-head h3 {
    color: #002147;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 800;

    margin: 0 0 5px;
}


.course-admission-head p {
    color: #64748b;

    font-size: 17px;

    line-height: 1.4;

    margin: 0;

    font-weight: 500;
}


/* =========================================================
   ENROLL BUTTON
========================================================= */

.course-enroll-btn {
    position: relative;
    z-index: 2;

    width: 100%;

    min-height: 62px;

    padding: 10px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #ff9f00,
            #ff6500
        );

    color: #fff;

    border-radius: 14px;

    font-size: 18px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(255, 111, 0, .22);

    transition: all .35s ease;

    margin-bottom: 30px;
}


.course-enroll-btn span {
    flex: 1;
    text-align: center;
    padding-left: 38px;
}


.course-enroll-btn i {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: #fff;

    color: #002147;

    font-size: 15px;

    transition: .3s ease;
}


.course-enroll-btn:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 28px rgba(255, 111, 0, .30);
}


.course-enroll-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   INFORMATION LIST
========================================================= */

.course-info-list {
    position: relative;
    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 24px;
}


/* =========================================================
   INFO CARD
========================================================= */

.course-info-item {
    min-height: 76px;

    padding: 10px 14px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    border: 1px solid #edf0f4;

    border-radius: 17px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .06);

    text-align: left;

    transition: all .3s ease;
}


.course-info-item:hover {
    transform: translateX(4px);

    border-color: #dbe4f0;

    box-shadow:
        0 8px 24px rgba(0, 33, 71, .10);
}


/* =========================================================
   INFO ICON
========================================================= */

.course-info-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

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

    border-radius: 50%;

    font-size: 22px;
}


/* Blue */

.course-fee-icon,
.course-support-icon {
    background: #edf5ff;
    color: #0754a6;
}


/* Orange */

.course-duration-icon,
.course-certificate-icon {
    background: #fff3e7;
    color: #ff7b18;
}


/* =========================================================
   INFO LABEL
========================================================= */

.course-info-label {
    position: relative;

    flex: 1;

    padding-right: 12px;

    min-width: 0;
}


.course-info-label::after {
    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 34px;

    background: #e8ebef;
}


.course-info-label span {
    font-size: 15px;

    color: #374151;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   INFO VALUE
========================================================= */

.course-info-value {
    min-width: 115px;

    text-align: right;

    color: #002147;

    font-size: 19px;

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   WHATSAPP CONTACT
========================================================= */

.course-sidebar-contact {
    position: relative;
    z-index: 2;

    min-height: 92px;

    padding: 14px 15px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(
            135deg,
            #002147,
            #073b81
        );

    border-radius: 17px;

    text-decoration: none;

    color: #fff;

    text-align: left;

    box-shadow:
        0 8px 20px rgba(0, 33, 71, .20);

    transition: .35s ease;
}


.course-sidebar-contact:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(0, 33, 71, .28);
}


/* =========================================================
   WHATSAPP ICON
========================================================= */

.course-whatsapp-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

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

    border-radius: 50%;

    background: #25d366;

    color: #fff;

    font-size: 32px;

    box-shadow:
        0 0 0 5px rgba(37, 211, 102, .15);
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.course-contact-content {
    flex: 1;

    min-width: 0;
}


.course-contact-content span {
    display: block;

    font-size: 14px;

    line-height: 1.3;

    margin-bottom: 4px;

    color: rgba(255,255,255,.92);
}


.course-contact-content strong {
    display: block;

    color: #fff;

    font-size: 18px;

    line-height: 1.2;

    white-space: nowrap;
}


/* =========================================================
   CONTACT ARROW
========================================================= */

.course-contact-arrow {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

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

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,.8);

    color: #fff;

    font-size: 14px;

    transition: .3s ease;
}


.course-sidebar-contact:hover
.course-contact-arrow {
    background: #fff;

    color: #002147;

    transform: translateX(4px);
}


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

@media(max-width:575px) {

    .course-sidebar-card {
        padding: 30px 16px 18px;

        border-radius: 22px;
    }


    .course-sidebar-card::before {
        border-radius: 22px 22px 40% 40%;
    }


    .course-admission-icon {
        width: 85px;
        height: 85px;

        font-size: 35px;
    }

    .
    .course-admission-head h3 {
        font-size: 24px;
    }


    .course-admission-head p {
        font-size: 15px;
    }


    .course-enroll-btn {
        min-height: 58px;

        font-size: 16px;
    }


    .course-info-item {
        min-height: 70px;

        padding: 9px 11px;

        gap: 9px;
    }


    .course-info-icon {
        width: 47px;
        height: 47px;

        min-width: 47px;

        font-size: 19px;
    }


    .course-info-label span {
        font-size: 13px;
    }


    .course-info-value {
        min-width: 95px;

        font-size: 16px;
    }


    .course-sidebar-contact {
        min-height: 82px;

        padding: 12px;
    }


    .course-whatsapp-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 27px;
    }


    .course-contact-content span {
        font-size: 12px;
    }


    .course-contact-content strong {
        font-size: 15px;
    }

}

/* --- Floating Container --- */
.floating-actions {
    position: fixed;
    bottom: 15%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.f-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}


/* Colors & Icons */
.whatsapp-float { background-color: #25D366; }
.call-float { background-color: #007bff; }


/* Hover Effects */
.f-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-float:hover { background-color: #128C7E; }

/* Pulse Animation for WhatsApp (Optional) */
.whatsapp-float {
    animation: w-pulse 2s infinite;
}

@keyframes w-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.owl-dot span{
    margin-right:5px;
    box-shadow:0px 2px 4px 0px #0e1c3573;
}



/*==========================================
        SAV ABOUT SECTION
==========================================*/

.sav-about-section{
    position:relative;
    overflow:hidden;
}

.sav-about-box{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    overflow:hidden;
    z-index:1;
}

/* Background Decoration */


.chairman-wrapper::after , .sav-about-box::after{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(244,188,6,.08);
}

/* Content */

.sav-about-content {
    /* padding-right: 40px; */
    /*text-align: justify;*/
}

.sav-about-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    background:rgba(244,188,6,.12);
    color:var(--theme-color);
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.sav-about-tag i{
    color:var(--theme-color2);
    font-size:18px;
}

.sav-about-title{
    font-size:46px;
    font-weight:800;
    color:var(--theme-color);
    line-height:1.25;
    margin-bottom:20px;
}

.sav-about-title span{
    color:var(--theme-color2);
}

.sav-about-text{
    color:var(--body-text-color);
    font-size:16px;
    line-height:2;
}

/* Features */

.sav-about-feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:22px;
    transition:.35s;
    height:100%;
}

.sav-about-feature:hover{
    transform:translateY(-8px);
    border-color:var(--theme-color2);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.sav-about-feature .icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:var(--theme-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
    transition:.35s;
}

.sav-about-feature:hover .icon{
    background:var(--theme-color2);
    color:#000;
    transform:rotate(-8deg);
}

.sav-about-feature h5{
    margin-bottom:8px;
    font-size:19px;
    font-weight:700;
    color:var(--theme-color);
}

.sav-about-feature p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--body-text-color);
}

/* Footer */

.sav-about-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    margin-top:45px;
    flex-wrap:wrap;
}

/* Call Box */

.sav-call-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff8e8;
    border-radius:16px;
    padding:15px 22px;
}

.call-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--theme-color2);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.sav-call-box span{
    display:block;
    color:#777;
    font-size:14px;
}

.sav-call-box h5{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.sav-call-box a{
    color:var(--theme-color);
}

/* Right Side */

.sav-about-side{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.sav-stat-box{
    background:linear-gradient(135deg,var(--theme-color),#0d3f74);
    color:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.sav-stat-box::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    top:-80px;
    right:-80px;
}

.sav-stat-box:hover{
    transform:translateY(-10px);
}

.sav-stat-box h2{
    color:var(--theme-color2);
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.sav-stat-box span{
    font-size:16px;
    color:#fff;
    font-weight:500;
}

/* Responsive */

@media(max-width:991px){

.sav-about-box{
    padding:35px;
}

.sav-about-content{
    padding-right:0;
    margin-bottom:40px;
}

.sav-about-title{
    font-size:34px;
}

}

@media(max-width:767px){

.sav-about-box{
    padding:25px;
    border-radius:20px;
}

.sav-about-title{
    font-size:28px;
}

.sav-about-feature{
    padding:18px;
}

.sav-about-feature .icon{
    width:55px;
    height:55px;
    font-size:22px;
}

.sav-about-footer{
    flex-direction:column;
    align-items:flex-start;
}

.sav-call-box{
    width:100%;
}

.sav-stat-box{
    padding:25px;
}

.sav-stat-box h2{
    font-size:34px;
}

}

.pagination{
    gap:10px;
}

.pagination .page-link{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    border:1px solid #e8e8e8;
    background:#fff;
    color:var(--theme-color);
    font-weight:600;
    transition:.35s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.pagination .page-link:hover{
    background:var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
    transform:translateY(-3px);
}

.pagination .page-item.active .page-link{
    background:var(--theme-color2);
    border-color:var(--theme-color2);
    color:#000;
    font-weight:700;
}

.pagination .page-item.disabled .page-link{
    background:#f8f8f8;
    color:#999;
    border-color:#eee;
}

.table-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.table-pagination button{
    width:42px;
    height:42px;
    border:none;
    border-radius:10px;
    background:#fff;
    border:1px solid #ddd;
    color:var(--theme-color);
    font-weight:600;
    transition:.3s;
}

.table-pagination button:hover{
    background:var(--theme-color);
    color:#fff;
}

.table-pagination button.active{
    background:var(--theme-color2);
    color:#000;
    border-color:var(--theme-color2);
}

.table-pagination button:disabled{
    opacity:.45;
    cursor:not-allowed;
}

/*=============================
Admission Modal
=============================*/

.enroll-modal{

    border:none;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);

}


/* Header */

.enroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg,
    var(--theme-color),
    #063970);
    color: #fff;
}

.enroll-title{

    display:flex;
    align-items:center;
    gap:18px;

}

.enroll-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

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

    font-size:30px;

}

.enroll-title h3{
    margin:0;
    font-size:28px;
    color:#fff;
}

.enroll-title p {
    margin-top: 5px;
    opacity: .8;
    color: #f4bc06;
}


/* Body */

.enroll-modal .modal-body{

    background:#fff;

    padding:20px;

}


/* Input */

.input-box{

    position:relative;

}

.input-box i{

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:var(--theme-color);

    z-index:10;

}

.input-box .form-control{

    height:56px;

    border-radius:14px;

    padding-left:50px;

    border:1px solid #dde6ef;

    box-shadow:none;

    transition:.35s;

}

.input-box .form-control:focus{

    border-color:var(--theme-color2);

    box-shadow:
    0 0 0 4px rgba(244,188,6,.15);

}


/* Checkbox */

.accept-box{

    

    border-radius:12px;

    padding:15px;

    font-size:14px;

}

.accept-box input{

    margin-right:8px;

}


/* Button */

.enroll-modal .theme-btn{

    border-radius:14px;

    height:58px;

    font-size:16px;

}


/* Close */

.enroll-header .btn-close{

    filter:invert(1);

    opacity:1;

}


/* Responsive */

@media(max-width:767px){

.enroll-header{

padding:20px;

}

.enroll-title{

flex-direction:column;
align-items:flex-start;

}

.enroll-icon{

width:55px;
height:55px;
font-size:24px;

}

.enroll-title h3{

font-size:22px;

}

.enroll-modal .modal-body{

padding:20px;

}

}

/*=====================================================
      SOCIAL & NOTIFICATION SECTION
======================================================*/


/*============================
        SCROLLBAR
=============================*/

.sav-news-scroll::-webkit-scrollbar{

    width:8px;

}

.sav-news-scroll::-webkit-scrollbar-thumb{

    background:var(--theme-color2);

    border-radius:50px;

}

.sav-news-scroll::-webkit-scrollbar-track{

    background:#edf2f7;

}



/*============================
      RESPONSIVE
=============================*/

@media(max-width:991px){

.sav-card-header{

    padding:20px;

    flex-wrap:wrap;

}

.sav-view-btn{

    margin:15px 0 0;

}

.sav-news-item{

    flex-direction:column;

}

.sav-news-date{

    width:70px;

    height:70px;

}

}

@media(max-width:767px){

.sav-card-header h4{

    font-size:22px;

}

.sav-card-icon{

    width:55px;

    height:55px;

    font-size:24px;

}

.sav-news-content h5{

    font-size:16px;

}

}


/* =========================================================
   MOBILE LIQUID GLASS CONTACT BAR
========================================================= */

.mobile-liquid-contact {
    display: none;
}


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

@media (max-width: 767px) {

    .mobile-liquid-contact {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 99999;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px;
        border-radius: 10px;

        /* Liquid Glass */
        background: transparent;
        border: 1px solid rgb(255 255 255 / 13%);
        backdrop-filter: blur(22px) saturate(180%);
        -webkit-backdrop-filter: blur(22px) saturate(180%);
        overflow: hidden;
    }


    /* Glass reflection */

    .mobile-liquid-contact::before {
        position: absolute;
        top: -80px;
        left: 10%;
        width: 80%;
        height: 100px;
        background: rgba(255,255,255,.45);
        filter: blur(25px);
        pointer-events: none;
    }


    /* =====================================================
       BUTTON
    ===================================================== */

    .mlc-btn {
        position: relative;
        flex: 1;
        height: 41px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 8px;
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none !important;
        overflow: hidden;
        transition:
            transform .25s ease,
            box-shadow .25s ease;
    }


    /* Button glass shine */

    .mlc-btn::before {
        content: "";

        position: absolute;

        top: 0;
        left: -120%;

        width: 80%;
        height: 100%;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

        transform: skewX(-20deg);

        transition: left .55s ease;
    }

    .mlc-btn:active {
        transform: scale(.96);
    }

    .mlc-btn:hover::before {
        left: 140%;
    }


    /* =====================================================
       CALL
    ===================================================== */

    .mlc-call {
        background:
            linear-gradient(
                135deg,
                #087df5,
                #1767e8
            );

        box-shadow:
            0 6px 18px rgba(0,122,255,.30),
            inset 0 1px 1px rgba(255,255,255,.35);
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .mlc-whatsapp {
        background:
            linear-gradient(
                135deg,
                #18d66b,
                #13bd61
            );

        box-shadow:
            0 6px 18px rgba(24,214,107,.28),
            inset 0 1px 1px rgba(255,255,255,.35);
    }


    /* =====================================================
       ICON
    ===================================================== */

    .mlc-icon {
        width: 26px;
        height: 26px;

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

        border-radius: 50%;

        background: rgba(255,255,255,.15);

        font-size: 14px;

        box-shadow:
            inset 0 1px 1px rgba(255,255,255,.25);
    }


    .mlc-icon i {
        line-height: 1;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .mobile-liquid-contact {
        left: 8px;
        right: 8px;

        gap: 7px;

        padding: 6px;

        border-radius: 19px;
    }

    .mlc-btn {
        height: 47px;

        border-radius: 13px;

        font-size: 12px;

        gap: 6px;
    }

    .mlc-icon {
        width: 23px;
        height: 23px;

        font-size: 12px;
    }

}

/* =====================================================
   PAY NOW - PREMIUM GOLD GLASS
===================================================== */

.mlc-pay {
    background:
        linear-gradient(
            135deg,
            #ffb300 0%,
            #f59e0b 45%,
            #e88900 100%
        );

    box-shadow:
        0 6px 18px rgba(245,158,11,.30),
        inset 0 1px 1px rgba(255,255,255,.45);

    color: #fff !important;
}


/* Pay icon */

.mlc-pay .mlc-icon {
    background: rgba(255,255,255,.20);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.35);
}


/* Hover */

.mlc-pay:hover {
    box-shadow:
        0 9px 25px rgba(245,158,11,.40),
        inset 0 1px 1px rgba(255,255,255,.50);

    transform: translateY(-2px);
}


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

@media (max-width: 767px) {

    .mlc-pay {
        background:
            linear-gradient(
                135deg,
                #ffc107,
                #f59e0b,
                #e88900
            );
    }

.site-breadcrumb .breadcrumb-title{
    font-size:30px;
}

.course-banner img {
    height: auto;
}

.site-title-tagline {
    font-size: 13px;
}
.course-content-card h2 {
    font-size: 30px;
}

.site-title {
    font-size: 30px;
}

}


.facebook-box {
    width: 100%;
    max-width: 100%;
    height: 450px;
    overflow: hidden;
}

.facebook-box iframe {
    display: block;
    width: 100% !important;
    height: 450px !important;
    border: 0 !important;
}

/* =========================================================
   NOTICE SEARCH
========================================================= */

.notice-search {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 15px 18px;

    border-bottom: 1px solid #e9edf3;

    background: #fff;
}


.notice-search-box {
    position: relative;

    width: 100%;
    max-width: 420px;
}


.notice-search-input {
    width: 100%;

    height: 44px;

    padding: 0 42px;

    border: 1px solid #e1e6ee;

    border-radius: 10px;

    

    color: #17213d;

    font-size: 14px;

    outline: none;

    transition: .25s ease;
}


.notice-search-input::placeholder {
    color: #98a1b2;
}


.notice-search-input:focus {
    background: #fff;

    border-color: #315fd5;

    box-shadow:
        0 0 0 3px rgba(49,95,213,.08);
}


/* Search icon */

.notice-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #315fd5;

    font-size: 14px;

    pointer-events: none;
}


/* Clear button */

.notice-search-clear {
    position: absolute;

    right: 8px;
    top: 50%;

    width: 28px;
    height: 28px;

    transform: translateY(-50%);

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

    border: 0;

    border-radius: 50%;

    background: #e9edf4;

    color: #697386;

    cursor: pointer;

    transition: .2s;
}


.notice-search-clear:hover {
    background: #315fd5;

    color: #fff;
}


/* Result count */

.notice-search-count {
    flex-shrink: 0;

    color: #7a8496;

    font-size: 12px;

    font-weight: 600;
}


/* No result */

.notice-no-result {
    padding: 35px 15px;

    color: #7c8799;
}


.notice-no-result i {
    display: block;

    margin-bottom: 10px;

    color: #315fd5;

    font-size: 28px;
}


.notice-no-result h5 {
    margin-bottom: 5px;

    color: #253452;

    font-size: 15px;
}


.notice-no-result p {
    margin: 0;

    font-size: 12px;
}


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

@media (max-width: 575px) {

    .notice-search {
        display: block;

        padding: 12px;
    }

    .notice-search-box {
        max-width: 100%;
    }

    .notice-search-count {
        display: block;

        margin-top: 8px;

        text-align: right;
    }

}