:root {
  --heading-font-family: "Gilroy", serif;
  --body-font-family: "Gilroy", sans-serif;
  --fontSize: 16px;
  --primaryColor: #008AC1;
  --secenderyColor: #FFC333;
  --whiteColor: #ffffff;
  --blackColor: rgb(0, 30, 67);
  --paragraphColor: #555;
  --transition: .5s;
}

body{
padding-bottom:90px;
}

@media(max-width:768px){
body{
padding-bottom:110px;
}
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Gilroy-Black.ttf") format("truetype");
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraphColor);
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: "Gilroy", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  color: var(--blackColor);
  font-family: var(--heading-font-family);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  outline: 0 !important;
}
a:hover {
  color: var(--primaryColor);
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {max-width: 100%;height: auto;}
p {line-height: 1.8;font-size: 16px;margin-bottom: 15px;color: var(--paragraphColor);font-family: var(--body-font-family);}
p:last-child {margin-bottom: 0;}
.form-control:focus {outline: none;box-shadow: none;border-color: var(--primaryColor) !important;}
.ptb-100 {padding-top: 110px;padding-bottom: 110px;}
.pt-100 {padding-top: 110px;}
.pb-100 {padding-bottom: 110px;}
.pt-75 {padding-top: 85px;}
.pb-75 {padding-bottom: 85px;}
.pb-50 {padding-bottom: 50px;}


.default-btn {
  padding: 15px 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor) !important;
  background-color: var(--primaryColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}
.default-btn i {
  line-height: 0;
  font-size: 25px;
  margin-left: 19px;
  position: relative;
}
.default-btn:hover {
  color: var(--blackColor) !important;
  background-color: var(--whiteColor);
}
.default-btn.style-2:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.arrow-btn {
  margin-right: 40px;
  position: relative;
  display: inline-block;
  color: var(--secenderyColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}
.arrow-btn i {
  top: 2px;
  line-height: 0;
  font-size: 25px;
  margin-left: 15px;
  position: absolute;
}
.arrow-btn::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--secenderyColor);
}
.arrow-btn::after {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.arrow-btn:hover {
  color: var(--whiteColor);
}
.arrow-btn:hover::before {
  opacity: 0;
}
.arrow-btn:hover::after {
  width: 100%;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.section-title {
  max-width: 610px;
  margin-bottom: 35px !important;
}
.section-title h2 {
  font-size: 34px;
  font-weight: 600;
  color: #022366;
}


.top-header-area {
  background-color: var(--whiteColor);
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-header-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}
.top-header-area.style-2 {
  background-color: #002a5c;
}
.top-header-area.style-3 .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}
.top-header-area.pages-style .container-fluid {
  max-width: 1480px;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-list ul li {
  margin-right: 13px;
  padding-right: 20px;
  position: relative;
}
.top-header-list ul li a {
  font-size: 13px;
  color: var(--blackColor);
}
.top-header-list ul li a i {
  top: 2px;
  font-size: 16px;
  margin-right: 7px;
  position: relative;
  color: var(--blackColor);
}
.top-header-list ul li a:hover {
  color: var(--primaryColor);
}
.top-header-list ul li::before {
  top: 2px;
  right: 0;
  width: 1px;
  height: 17px;
  content: "";
  position: absolute;
  background-color: rgb(31, 57, 90);
}
.top-header-list ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.top-header-list ul li:last-child::before {
  display: none;
}
.top-header-list ul li:last-child a i {
  top: 0;
}
.top-header-list.style-2 ul li a i {
  color: var(--whiteColor);
}

.top-header-social-list ul li .pages-link li {
  margin-right: 6px;
  padding-right: 12px;
  position: relative;
}
.top-header-social-list ul li .pages-link li a {
  font-size: 13px;
  line-height: 1;
  color: var(--blackColor);
}
.top-header-social-list ul li .pages-link li a:hover {
  color: var(--primaryColor);
}
.top-header-social-list ul li .pages-link li::before {
  top: 6px;
  right: 0;
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  background-color: rgb(31, 57, 90);
}
.top-header-social-list ul li .pages-link li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.top-header-social-list ul li .pages-link li:last-child::before {
  display: none;
}
.top-header-social-list ul li .social-link {
  margin-left: 18px;
}
.top-header-social-list ul li .social-link li {
  margin-right: 4px;
}
.top-header-social-list ul li .social-link li a {
  width: 26px;
  height: 26px;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: rgb(143, 156, 172);
  background-color: rgba(255, 255, 255, 0.08);
}
.top-header-social-list ul li .social-link li a i {
  bottom: -2px;
  position: relative;
}
.top-header-social-list ul li .social-link li a:hover {
  color: var(--blackColor);
  background-color: var(--secenderyColor);
}
.top-header-social-list ul li .social-link li:last-child {
  margin-right: 0;
}


.navbar {
  z-index: 2;
  position: relative;
  background: #001C54;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
  
  padding-top: 25px;
  padding-bottom: 25px;
}
.navbar .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.navbar .navbar-nav {
  margin-right: 40px;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 12px;
  margin-right: 12px;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--whiteColor);
  transition: var(--transition);
  font-weight: 500;
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .nav-link:hover::before, .navbar .navbar-nav .nav-item .nav-link.active::before {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after, .navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle::after {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.navbar .navbar-nav .nav-item .dropdown-toggle {
  margin-right: 10px;
}
.navbar .navbar-nav .nav-item .dropdown-toggle::after {
  left: 0;
  bottom: 0;
  margin: 0;
  opacity: 0;
  content: "";
  height: 1px;
  width: 100%;
  border: none;
  display: block;
  position: absolute;
  background-image: none;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-toggle::before {
  color: rgb(153, 165, 180);
  transition: var(--transition);
  position: absolute;
  content: "\ea4d";
  line-height: 1;
  font-size: 16px;
  right: -18px;
  top: 1px;
  font-family: remixicon !important;
  font-style: normal;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item:hover .nav-link::before, .navbar .navbar-nav .nav-item.active .nav-link::before {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after, .navbar .navbar-nav .nav-item.active .nav-link.dropdown-toggle::after {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 30px;
  opacity: 0;
  z-index: 99;
  border: none;
  min-width: 180px;
  margin-top: 0;
  display: block;
  padding: 12px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  background-color: var(--whiteColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}



.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  color: var(--blackColor);
  padding: 7px 25px;
  font-size: 14px;
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .others-option .option-item .search-form .form-group {
  position: relative;
}
.navbar .others-option .option-item .search-form .form-group .form-control {
  height: 48px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  color: var(--paragraphColor);
}
.navbar .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
  font-size: 13px;
}
.navbar .others-option .option-item .search-form .form-group .form-control::placeholder {
  font-size: 13px;
}
.navbar .others-option .option-item .search-form .form-group button {
  top: 50%;
  right: 17px;
  border: unset;
  position: absolute;
  transform: translateY(-50%);
  color: var(--paragraphColor);
  background-color: transparent;
}
.navbar .others-option .option-item .responsive-icon a {
  width: 40px;
  height: 40px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.navbar .others-option .option-item .responsive-icon a:hover {
  background-color: var(--blackColor);
}
.navbar .navbar-toggler {
  color: var(--whiteColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--primaryColor);
}
.navbar.sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: sticky;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 25px;
  padding-bottom: 25px;
}
.navbar.style-2 .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}
.navbar.style-3 {
  background-color: #002a5c;
}
.navbar.style-3 .navbar-nav {
  margin-left: 65px;
}
.navbar.style-3 .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-3 .navbar-nav .nav-item .nav-link:hover, .navbar.style-3 .navbar-nav .nav-item .nav-link.active {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .nav-link:hover::before, .navbar.style-3 .navbar-nav .nav-item .nav-link.active::before {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle {
  margin-right: 17px;
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle::after {
  background-color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item:hover .nav-link, .navbar.style-3 .navbar-nav .nav-item.active .nav-link {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item:hover .nav-link::before, .navbar.style-3 .navbar-nav .nav-item.active .nav-link::before {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--blackColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--s);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar.style-3 .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar.style-3 .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar.style-3 .others-option .option-item .default-btn {
  color: var(--blackColor) !important;
  background-color: var(--secenderyColor);
}
.navbar.style-3 .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--primaryColor);
}
.navbar.pages-style .container-fluid {
  max-width: 1480px;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar.pages-style .navbar-nav {
  margin-right: 50px;
}
.navbar.pages-style .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}


.responsive-navbar {
  --bs-offcanvas-width: 420px;
  background-color: var(--blackColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}
.responsive-navbar .offcanvas-header {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.responsive-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  color: var(--whiteColor);
  font-size: 20px;
  cursor: pointer;
  top: 2px;
}
.responsive-navbar .offcanvas-header .close-btn:hover {
  color: var(--primaryColor);
}
.responsive-navbar .offcanvas-body {
  padding: 30px;
}
.responsive-navbar .offcanvas-body ul {
  list-style-type: none;
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body ul.responsive-menu {
  padding-left: 0;
  overflow: hidden;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  line-height: 55px;
  height: 55px;
  clear: both;
  width: 100%;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list:after {
  top: 50%;
  right: 0;
  content: "\ea4e";
  color: var(--whiteColor);
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-family: remixicon !important;
  font-style: normal;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a {
  height: 100%;
  display: block;
  color: var(--whiteColor);
  padding-right: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a:hover, .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.active {
  color: var(--secenderyColor);
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items {
  height: 0;
  overflow: hidden;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a {
  padding: 0 15px;
  font-size: 15px;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a:hover {
  color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list.without-icon:after {
  display: none;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .active:after {
  transform: translateY(-50%) rotate(180deg);
}
.responsive-navbar .offcanvas-body ul.responsive-menu .active > .responsive-menu-items {
  transition: all 200ms;
  display: block;
  height: auto;
  clear: both;
  float: left;
  width: 100%;
  padding: 0;
}
.responsive-navbar .offcanvas-body ul.responsive-menu .active > .responsive-menu-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.responsive-navbar .offcanvas-body ul.responsive-menu .active > a {
  color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .others-option {
  margin-top: 50px;
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group {
  position: relative;
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control {
  height: 48px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  color: var(--paragraphColor);
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
  font-size: 13px;
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::placeholder {
  font-size: 13px;
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group button {
  top: 50%;
  right: 17px;
  border: unset;
  position: absolute;
  transform: translateY(-50%);
  color: var(--paragraphColor);
  background-color: transparent;
}


.searchModal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--blackColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}
.searchModal .modal-dialog .modal-content {
  border: 0;
  padding: 0;
  display: block;
  border-radius: 0;
  max-width: 720px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}
.searchModal .modal-dialog .modal-content form {
  position: relative;
}
.searchModal .modal-dialog .modal-content form .input-search {
  height: 60px;
  font-size: 14px;
  border-radius: 6px;
  color: var(--whiteColor);
  border: 1px solid rgba(221, 213, 208, 0.55);
  padding-left: 20px;
  padding-right: 20px;
}
.searchModal .modal-dialog .modal-content form .input-search::-moz-placeholder {
  color: var(--secenderyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.searchModal .modal-dialog .modal-content form .input-search::placeholder {
  color: var(--secenderyColor);
  transition: var(--transition);
}
.searchModal .modal-dialog .modal-content form .input-search:focus {
  outline: none;
  border-color: none;
  box-shadow: none;
}
.searchModal .modal-dialog .modal-content form .input-search:focus::-moz-placeholder {
  color: transparent;
}
.searchModal .modal-dialog .modal-content form .input-search:focus::placeholder {
  color: transparent;
}
.searchModal .modal-dialog .modal-content form button {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 54px;
  border-radius: 3px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.searchModal .modal-dialog .modal-content form button svg {
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  line-height: 1;
  font-size: 21px;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
}
.searchModal .modal-dialog .modal-content form button svg g path {
  transition: var(--transition);
}
.searchModal .modal-dialog .modal-content form button:hover {
  color: var(--blackColor);
  background-color: var(--secenderyColor);
}
.searchModal .modal-dialog .modal-content form button:hover svg g path {
  fill: var(--blackColor);
}
.searchModal .modal-dialog .modal-content .btn-close {
  top: 7px;
  z-index: 2;
  opacity: 1;
  font-size: 30px;
  right: -50px;
  cursor: pointer;
  box-shadow: unset;
  background: unset;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}
.searchModal .modal-dialog .modal-content .btn-close:hover {
  color: var(--primaryColor);
}


.hero-area {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/bg-1.webp);
  padding-top: 190px;
  padding-bottom: 225px;
}
.hero-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}
.hero-area::after {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 9, 41, 0.9) 31.2%, rgba(0, 9, 41, 0) 65.89%);
}

.hero-content {
  max-width: 835px;
}
.hero-content .title {
  margin-bottom: 45px;
}
.hero-content .title h1 {
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--whiteColor);
}
.hero-content .title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-content .hero-btn li {
  margin-right: 30px;
}
.hero-content .hero-btn li:last-child {
  margin-right: 0;
}

.hero-reviews {
  right: 150px;
  bottom: 70px;
  max-width: 442px;
  padding: 30px 35px;
  position: absolute;
  background-color: var(--secenderyColor);
}
.hero-reviews .everything {
  color: #5b5952;
  font-weight: 500;
  margin-bottom: 26px;
  font-size: 16px;
  font-style: italic;
}
.hero-reviews .user .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 13px;
}
.hero-reviews .user .image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.hero-reviews .user .content h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.hero-reviews .user .content span {
  font-size: 14px;
  color: rgba(85, 85, 85, 0.8);
}
.hero-reviews .quote-icon {
  font-size: 22px;
  color: var(--blackColor);
}

.banner-area {
  z-index: 1;
  position: relative;
  padding-top: 225px;
  padding-bottom: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg/bg-2.jpg);
}
.banner-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  max-width: 727px;
  margin-bottom: 200px;
}
.banner-content .title {
  margin-bottom: 45px;
}
.banner-content .title p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 500;
}
.banner-content .title p span {
  color: var(--secenderyColor);
}
.banner-content .title h1 {
  font-size: 80px;
  line-height: 1.3;
  color: var(--whiteColor);
}
.banner-content .title h1 span {
  position: relative;
  display: inline-block;
  color: var(--secenderyColor);
}
.banner-content .title h1 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secenderyColor);
}
.banner-content ul li {
  margin-right: 25px;
}
.banner-content ul li .play-btn li {
  margin-right: 15px;
}
.banner-content ul li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--whiteColor);
}
.banner-content ul li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}
.banner-content ul li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.banner-content ul li .play-btn li .arrow-btn {
  color: var(--whiteColor);
}
.banner-content ul li .play-btn li .arrow-btn::before {
  background-color: var(--whiteColor);
}
.banner-content ul li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}
.banner-content ul li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}
.banner-content ul li .play-btn li:last-child {
  margin-right: 0;
}
.banner-content ul li:last-child {
  margin-right: 0;
}

.banner-uesr-info {
  max-width: 1176px;
}
.banner-uesr-info .banner-uesr-item {
  padding: 30px;
  background-color: rgba(38, 16, 0, 0.67);
}
.banner-uesr-info .banner-uesr-item .icon {
  display: block;
  flex: 0 0 auto;
  font-size: 44px;
  margin-right: 20px;
  color: var(--secenderyColor);
}
.banner-uesr-info .banner-uesr-item .content .title {
  margin-bottom: 8px;
}
.banner-uesr-info .banner-uesr-item .content .title h2 {
  font-size: 18px;
  margin-right: 8px;
  color: var(--secenderyColor);
}
.banner-uesr-info .banner-uesr-item .content .title h3 {
  font-size: 18px;
  color: var(--whiteColor);
}
.banner-uesr-info .banner-uesr-item .content a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.57);
  font-family: var(--body-font-family);
  font-size: 14px;
  font-weight: 600;
}
.banner-uesr-info .banner-uesr-item .content a i {
  top: -2px;
  line-height: 0;
  font-size: 25px;
  margin-left: 15px;
  position: absolute;
}
.banner-uesr-info .banner-uesr-item .content a::after {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.banner-uesr-info .banner-uesr-item .content a:hover {
  color: var(--primaryColor);
}
.banner-uesr-info .banner-uesr-item .content a:hover::after {
  width: 100%;
}
.banner-uesr-info .banner-uesr-item:hover .content a {
  color: var(--primaryColor);
}
.banner-uesr-info .banner-uesr-item:hover .content a::after {
  width: 100%;
}

.banner-wrap-area {
  background-color: #faf7f2;
}
.banner-wrap-area .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-wrap-image {
  position: relative;
  margin-top: 50px;
  margin-right: -40px;
}
.banner-wrap-image .image-2 {
  top: 149px;
  left: 0;
  position: absolute;
}
.banner-wrap-image .image-2 img {
  animation: rotateme 15s linear infinite;
}
.banner-wrap-image .image-2 .middle-img {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.banner-wrap-image .image-2 .middle-img img {
  animation: unset;
}

.banner-wrap-content {
  max-width: 625px;
  margin-left: auto;
  position: relative;
}
.banner-wrap-content .title {
  margin-bottom: 35px;
}
.banner-wrap-content .title p {
  margin-bottom: 5px;
}
.banner-wrap-content .title p span {
  color: var(--primaryColor);
}
.banner-wrap-content .title h1 {
  font-size: 80px;
  line-height: 1.2;
  color: #002a5c;
  margin-bottom: 20px;
}
.banner-wrap-content .title h1 span {
  color: var(--secenderyColor);
  border-bottom: 4px solid var(--secenderyColor);
}
.banner-wrap-content .btn-list li {
  margin-right: 30px;
}
.banner-wrap-content .btn-list li .play-btn li {
  margin-right: 15px;
}
.banner-wrap-content .btn-list li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--secenderyColor);
}
.banner-wrap-content .btn-list li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}
.banner-wrap-content .btn-list li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.banner-wrap-content .btn-list li .play-btn li .arrow-btn {
  color: var(--blackColor);
}
.banner-wrap-content .btn-list li .play-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}
.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}
.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}
.banner-wrap-content .btn-list li .play-btn li:last-child {
  margin-right: 0;
}
.banner-wrap-content .btn-list li:last-child {
  margin-right: 0;
}
.banner-wrap-content .user-list {
  margin-top: 70px;
}
.banner-wrap-content .user-list li {
  margin-right: 15px;
}
.banner-wrap-content .user-list li .image li {
  margin-right: -15px;
}
.banner-wrap-content .user-list li .image li img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 3px solid var(--whiteColor);
}
.banner-wrap-content .user-list li .image li:last-child {
  margin-right: 0;
}
.banner-wrap-content .user-list li h2 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}
.banner-wrap-content .user-list li p {
  font-size: 14px;
}
.banner-wrap-content .content-shape {
  top: -20px;
  right: 70px;
  position: absolute;
}
.banner-wrap-content .content-shape::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
}
.banner-wrap-content .content-shape img {
  animation: rotateme 15s linear infinite;
}


.about-image {
  margin-bottom: 25px;
}

.about-content {
  margin-left: 70px;
  margin-bottom: 25px;
  margin-right: -10px;
}
.about-content .title {
  margin-bottom: 30px;
}
.about-content .title h2 {
  font-size: 42px;
  line-height: 0;
  margin-bottom: 30px;
}
.about-content .title h2 img {
  margin-right: 10px;
  margin-top: 5px;
}
.about-content .arrow-btn {
  color: var(--primaryColor);
}
.about-content .arrow-btn::before {
  background-color: var(--primaryColor);
}
.about-content .arrow-btn:hover {
  color: var(--blackColor);
}
.about-content .arrow-btn:hover::after {
  background-color: var(--blackColor);
}


.JU-EP-section{
    background:#f6f6f6;
    padding:80px 0;
}

.JU-EP-header h2{
    font-size:36px;
    font-weight:600;
    color:#022366;
    margin-bottom:20px;
}




.JU-EP-tabs{
    gap:25px;
}

.JU-EP-tabs .nav-link{
    background:none;
    border:none;
    color:#6b7280;
    font-size:15px;
    font-weight:500;
    position:relative;
    padding:8px 6px;
    transition:.3s;
}

.JU-EP-tabs .nav-link:hover{
    color:#022366;
}

.JU-EP-tabs .nav-link.active{
    color:#022366;
    background:none;
}


.JU-EP-tabs .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:#022366;
}




.JU-EP-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border: 0.1px solid #6b728021;
    background:#ffffff;
    margin-bottom:22px;
    transition:.35s ease;
}

.JU-EP-card img{
    width:95px;
    height:75px;
    object-fit:cover;
    flex-shrink:0;
}

.JU-EP-card h5{
    font-size:18px;
    font-weight:600;
    color:#022366;
    margin-bottom:6px;
}

.JU-EP-card p{
    font-size:14px;
    color:#6b7280;
    margin-bottom:8px;
    line-height:1.6;
}


.JU-EP-card:hover,
.JU-EP-card.active{
    background:#0c7db8;
}

.JU-EP-card:hover h5,
.JU-EP-card.active h5,
.JU-EP-card:hover p,
.JU-EP-card.active p{
    color:#ffffff;
}



.JU-EP-link{
    font-size:14px;
    font-weight:500;
    color:#0c7db8;
    text-decoration:none;
    transition:.3s;
}

.JU-EP-card:hover .JU-EP-link,
.JU-EP-card.active .JU-EP-link{
    background:#ffffff;
    color:#0c7db8;
    padding:6px 14px;
    display:inline-block;
}




.JU-EP-image{
    margin-bottom:25px;
}

.JU-EP-image img{
    width:100%;
    border-radius:4px;
}




.JU-EP-bottom{
    gap:20px;
}



.JU-EP-counter h3{
    font-size:42px;
    font-weight:600;
    color:#0c7db8;
    margin-bottom:4px;
}

.JU-EP-counter p{
    font-size:14px;
    color:#6b7280;
    margin:0;
}




.JU-EP-cta{
    background:#ffffff;
    padding:18px 28px;
    text-decoration:none;
    color:#0c7db8;
    font-weight:500;
    border-radius:4px;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
    transition:.3s ease;
}

.JU-EP-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 28px rgba(0,0,0,.12);
}


@media(max-width:991px){

.JU-EP-header h2{
    font-size:28px;
}

.JU-EP-counter h3{
    font-size:34px;
}

}


@media(max-width:576px){

.JU-EP-section{
    padding:60px 0;
}

.JU-EP-header h2{
    font-size:22px;
}

.JU-EP-tabs{
    gap:15px;
}

.JU-EP-card{
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
}

.JU-EP-card img{
    width:100%;
    height:auto;
}

.JU-EP-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.JU-EP-counter h3{
    font-size:30px;
}

.JU-EP-cta{
    width:100%;
    text-align:center;
    padding:16px;
}

}

.JU-UNE-section{
    background:#f3f4f6;
    padding:80px 0;
}

.JU-UNE-header h2{
    font-size:34px;
    font-weight:600;
    color:#022366;
    margin-bottom:45px;
}

.JU-UNE-card{
    background:#ffffff;
    padding:18px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}


.JU-UNE-img{
    overflow:hidden;
    margin-bottom:18px;
}

.JU-UNE-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .5s ease;
}



.JU-UNE-content p{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
    margin-bottom:18px;
}


.JU-UNE-link{
    font-size:14px;
    font-weight:500;
    color:#0c7db8;
    text-decoration:none;
    transition:.3s;
}

.JU-UNE-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.JU-UNE-card:hover img{
    transform:scale(1.05);
}


@media(max-width:991px){

.JU-UNE-header h2{
    font-size:26px;
}

.JU-UNE-img img{
    height:200px;
}

}


@media(max-width:576px){

.premium-slider{
    overflow-x:auto;
    position:relative;
    -webkit-overflow-scrolling:touch;
}

.premium-slider::-webkit-scrollbar{
    display:none;
}

.JU-UNE-row{
    display:flex !important;
    flex-wrap:nowrap !important;
}

.JU-UNE-slide{
    flex:0 0 85%;
    max-width:85%;
    margin-right:16px;
}

/* premium card feel */
.JU-UNE-card{
    transition:transform .35s ease, box-shadow .35s ease;
}

.JU-UNE-slide:hover .JU-UNE-card{
    transform:translateY(-4px);
}

}




.vasaviroad-about-image {
  margin-bottom: 25px;
  position: relative;
}

.vasaviroad-about-content {
  margin-bottom: 25px;
}
.vasaviroad-about-content .title {
  max-width: auto;
  margin-bottom: 30px;
}
.vasaviroad-about-content .title h2 {
  font-size: 36px;
  line-height: 0;
  font-weight:600;
  margin-bottom: 25px;
}
.vasaviroad-about-content .title h2 img {
  margin-right: 15px;
}
.vasaviroad-about-content .vasaviroad-about-card h3 {
  font-size: 18px;
  font-weight:500;
  margin-bottom: 15px;
}
.vasaviroad-about-content .vasaviroad-about-card h3 i {
  line-height: 0;
  font-size: 30px;
  margin-right: 10px;
  color: var(--primaryColor);
}
.vasaviroad-about-content .vasaviroad-about-card .arrow-btn {
  margin-top: 15px;
  color: var(--primaryColor);
}
.vasaviroad-about-content .vasaviroad-about-card .arrow-btn::before {
  background-color: var(--primaryColor);
}
.vasaviroad-about-content .vasaviroad-about-card .arrow-btn:hover {
  color: var(--blackColor);
}
.vasaviroad-about-content .vasaviroad-about-card .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

.col-lg-6:nth-child(2) .vasaviroad-about-card p {
  max-width: 313px;
}




.vasaviroad-about-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 18px 14px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

.vasaviroad-about-area .arrow-btn {
  font-weight: 500;
}



.jc-blogs-section{
  background:#fff;
}



.jcBlogsWrapper{
  position:relative;
}



.jcBlogsSwiper{
  overflow:hidden;
  padding-bottom:10px;
}

.jcBlogsSwiper .swiper-slide{
  height:auto;
  display:flex;
}


.jc-blog-card{
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e6e8ef;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.06);

  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.jc-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 32px rgba(0,0,0,.12);
}



.jc-blog-thumb{
  overflow:hidden;
}

.jc-blog-thumb img{
  width:100%;
  display:block;
  transition:transform .4s ease;
}

.jc-blog-card:hover img{
  transform:scale(1.05);
}



.jc-blog-content{
  padding:16px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.jc-blog-category{
  display:inline-block;
  padding:5px 10px;
  border-radius:6px;
  font-size:12px;
  background:#eef3ff;
  color:#0b2a73;
  margin-bottom:8px;
}

.jc-blog-description{
  font-size:14px;
  color:#555;
  margin-bottom:12px;
  line-height:1.5;
}



.jc-blog-meta{
  margin-top:auto;
  gap:14px;
  font-size:13px;
  color:#777;
}

.jc-blog-meta-item{
  display:flex;
  align-items:center;
}




.jc-blog-navigation{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-top:30px;
}

/* buttons */

.jc-blog-navigation button{
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  border:1px solid #e6e8ef;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  transition:all .35s cubic-bezier(.4,0,.2,1);
}

.jc-blog-navigation i{
  font-size:18px;
  color:#0b2a73;
}



.jc-blog-navigation button:hover{
  background:#0b2a73;
  transform:translateY(-3px);
  box-shadow:0 14px 35px rgba(11,42,115,.35);
}

.jc-blog-navigation button:hover i{
  color:#fff;
}



.jc-blog-navigation button:active{
  transform:scale(.92);
}




@media (max-width:768px){

  .jcBlogsWrapper::before,
  .jcBlogsWrapper::after{
    width:40px;
  }

  .jc-blog-navigation button{
    width:42px;
    height:42px;
  }
}



@media (min-width:768px){

  .jcBlogsSwiper{
    padding-bottom:0;
  }
}




@media (min-width:992px){
  .jc-blog-navigation{
    display:none;
  }
}


.jc-footer-wrapper {
  background: linear-gradient(120deg, #022366, #0664a9);
  color: #ffffff;
}

/*.jc-footer-heading {
  font-weight: 600;
  margin-bottom: 10px;
}

.jc-footer-links li { margin-bottom: 6px; }

.jc-footer-links a {
  color: #e8ecff;
  text-decoration: none;
}

.jc-footer-links a:hover { text-decoration: underline; }

.jc-social-icons a {
  font-size: 20px;
  color: #ffffff;
}

.jc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 14px;
}*/

/* =============================
   JAIN Footer
============================= */

.JU-footer{
background: linear-gradient(120deg, #00225B, #0089C6);
    color:#ffffff;
}


.JU-footer-col{
    border-right:1px solid rgba(255,255,255,.15);
}

.JU-footer-col:last-child{
    border-right:none;
}

.JU-footer-block{
    padding:40px 30px;
}




.JU-footer-heading{
    font-size:18px;
    font-weight:600;
    margin-bottom:14px;
    opacity:.95;
    color:#ffffff;
}


.JU-footer-text{
    font-size:14px;
    line-height:1.7;
    opacity:.95;
    color:#ffffff;
}


.JU-footer-contact{
    list-style:none;
    padding:0;
    color:#ffffff;
    margin-top:15px;
}

.JU-footer-contact li{
    font-size:14px;
    margin-bottom:8px;
    opacity:.9;color:#ffffff;
}

.JU-footer-contact i,
.JU-footer-contact-single i{
    margin-right:8px;
    color:#ffffff;
}


.JU-footer-links{
    list-style:none;
    padding:0;
}

.JU-footer-links li{
    margin-bottom:10px;
}

.JU-footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    opacity:.85;
    transition:.3s;
}

.JU-footer-links a:hover{
    opacity:1;
    padding-left:4px;
}


.JU-socials{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.JU-socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.JU-socials a:hover{
    background:#ffffff;
    color:#0b3b6f;
}


.JU-footer-bottom{
    background: linear-gradient(120deg, #00225B, #0089C6);
    padding:14px;
    font-size:13px;
    opacity:.95;
    padding:20px 10px 90px;
}



@media (max-width:991px){

    .JU-footer-col{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .JU-footer-block{
        padding:30px 20px;
    }

    .JU-footer-bottom{
        font-size:12px;
        padding-bottom:110px;
    }
}

.JU-RR-section {
    background: #ffffff;
}

.JU-RR-title {
    font-size: 34px;
    font-weight: 600;
    color: #022366;
}

.JU-RR-wrapper {
    min-height: 420px;
}
.JU-RR-card {
    height: 100%;
    padding: 60px 40px;
    position: relative;
}
.JU-RR-left {
    background: linear-gradient(180deg, #0a5fa8 0%, #022366 100%);
    color: #fff;
}
.JU-RR-right {
    background: linear-gradient(180deg, #0a5fa8 0%, #022366 100%);
    color: #fff;
}
.JU-RR-subtitle {
    font-size: 24px;
    font-weight: 500;
    color:#ffffff;
    line-height: 1.5;
}
.JU-RR-badge {
    max-width: 200px;
}
.JU-RR-small {
    font-size: 16px;
    opacity: 0.85;
}

.JU-RR-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #022366;
    background: #ffffff;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.JU-RR-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.JU-RR-image-wrapper {
    height: 100%;
}
.JU-RR-image {
    width: 100%;
    height: 100%;
    margin:auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .JU-RR-wrapper {
        flex-direction: column;
    }
    .JU-RR-card {
        padding: 50px 30px;
    }
    .JU-RR-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .JU-RR-title {
        font-size: 24px;
    }
    .JU-RR-subtitle {
        font-size: 18px;
    }
    .JU-RR-badge {
        max-width: 160px;
    }
}

.JU-AL-section{
    background:#ffffff;
    position:relative;
}

.JU-AL-title{
    font-size:32px;
    font-weight:600;
    color:#022366;
}

.JU-AL-swiper{
    position:relative;
    padding:10px 40px;
}

.JU-AL-card{
    padding:24px 18px;
    text-align:center;
    border-radius:14px;
    background:#fff;

    transition:
        transform .45s cubic-bezier(.4,0,.2,1),
        box-shadow .45s ease;

    height:100%;
}

.JU-AL-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.JU-AL-img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;

    border:6px solid #f2f4f8;

    transition:all .4s ease;
}

.JU-AL-card:hover .JU-AL-img{
    transform:scale(1.05);
    border-color:#e3e8f5;
}

.JU-AL-name{
    font-size:18px;
    font-weight:600;
    color:#022366;
    margin-top:18px;
}

.JU-AL-desc{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.swiper-button-prev::after,
.swiper-button-next::after{
    display:none !important;
}


.JU-AL-prev,
.JU-AL-next{
    width:60px;
    height:60px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.85);
    border:1px solid rgba(2,35,102,.08);
    box-shadow:
    0 8px 25px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
    color:#022366;
    transition:all .35s cubic-bezier(.4,0,.2,1);
    z-index:5;
}

.JU-AL-prev{
    left:-5px;
}

.JU-AL-next{
    right:-5px;
}


.JU-AL-prev i,
.JU-AL-next i{
    font-size:22px;
    transition:all .35s ease;
}


.JU-AL-prev:hover,
.JU-AL-next:hover{

    background:#022366;
    color:#fff;

    transform:translateY(-50%) scale(1.08);

    box-shadow:
    0 18px 45px rgba(2,35,102,.35);
}

.JU-AL-prev:hover i{
    transform:translateX(-6px);
}

.JU-AL-next:hover i{
    transform:translateX(6px);
}

.swiper-button-disabled{
    opacity:.25 !important;
    pointer-events:none;
}

.JU-AL-prev:hover,
.JU-AL-next:hover{
    box-shadow:
    0 18px 45px rgba(2,35,102,.35),
    0 0 0 4px rgba(2,35,102,.08);
}



@media (min-width:992px){

    .JU-AL-prev,
    .JU-AL-next{
        opacity:0;
        transform:scale(.9);
    }

    .JU-AL-section:hover .JU-AL-prev,
    .JU-AL-section:hover .JU-AL-next{
        opacity:1;
        transform:scale(1);
    }
}



@media (max-width:768px){

    .JU-AL-img{
        width:140px;
        height:140px;
    }

    .JU-AL-swiper{
        padding:10px 20px;
    }
}

@media (max-width:576px){
    .JU-AL-title{
        font-size:24px;
    }
}


.JU-AL-swiper .swiper-slide{
    transition:
        transform .6s cubic-bezier(.4,0,.2,1),
        opacity .6s ease,
        filter .6s ease;
}

.JU-AL-swiper .swiper-slide{
    transform:scale(.85);
    opacity:.45;
    filter:blur(1px);
}

.JU-AL-swiper .swiper-slide-active{
    transform:scale(1);
    opacity:1;
    filter:blur(0);
    z-index:2;
}

.JU-AL-swiper .swiper-slide-active .JU-AL-card{
    box-shadow:
    0 12px 28px rgba(0,0,0,.10),
    0 4px 10px rgba(0,0,0,.06);
    transform:translateY(-8px);
}

.JU-AL-swiper .swiper-slide-prev,
.JU-AL-swiper .swiper-slide-next{
    opacity:.75;
    transform:scale(.92);
    filter:blur(.3px);
}

.JU-AL-card{
   will-change: transform;
}

.JU-HIS-section {
    background: #ffffff;
}

.JU-HIS-content {
    max-width: 600px;
}

.JU-HIS-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #022366;
}

.JU-HIS-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}


.JU-HIS-image-wrapper {
    position: relative;
    display: inline-block;
}

.JU-HIS-image {
    width: 420px;
    max-width: 100%;
    border-radius: 50% 30% 50% 30% / 40% 60% 40% 60%;
    object-fit: cover;
}


.JU-HIS-deco {
    position: absolute;
    width: 120px;
    height: 6px;
    background: #dcdcdc;
    border-radius: 5px;
}

.JU-HIS-deco-1 {
    bottom: 40px;
    right: -30px;
    transform: rotate(40deg);
}

.JU-HIS-deco-2 {
    bottom: 15px;
    right: -10px;
    transform: rotate(40deg);
}


@media (max-width: 992px) {

    .JU-HIS-content {
        max-width: 100%;
    }

    .JU-HIS-image {
        width: 320px;
    }
}

@media (max-width: 576px) {

    .JU-HIS-title {
        font-size: 22px;
    }

    .JU-HIS-content p {
        font-size: 14px;
    }

    .JU-HIS-image {
        width: 260px;
    }
}


.JU-ABH-hero {
    position: relative;
    min-height: 420px;
    background: url('../../assets/images/AboutUs.webp') center center / cover no-repeat;
    overflow: hidden;
}


.JU-ABH-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 35, 102, 0.85); 
    z-index: 1;
}


.JU-ABH-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}


.JU-ABH-title {
    font-size: 42px;
    color:#ffffff;
    font-weight: 600;
    margin: 0;
}


.JU-ABH-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.JU-ABH-home-icon i {
    font-size: 14px;
}

.JU-ABH-separator {
    opacity: 0.7;
}


@media (max-width: 992px) {
    .JU-ABH-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .JU-ABH-hero {
        min-height: 300px;
    }

    .JU-ABH-title {
        font-size: 26px;
    }

    .JU-ABH-content {
        padding: 60px 0;
    }
}


.JU-VMT-section {
    background: #ffffff;
}

.JU-VMT-tabs {
    display: inline-flex;
    background: #ffffff;
    border-radius: 40px;
    padding: 5px;
    border: 1px solid #ddd;
}

.JU-VMT-tabs .nav-link {
    border: none;
    border-radius: 30px;
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background: transparent;
    transition: all 0.3s ease;
}

.JU-VMT-tabs .nav-link.active {
    background: #008AC1;
    color: #fff;
}


.JU-VMT-tabs .nav-link:focus {
    box-shadow: none;
}

.JU-VMT-content {
    margin-top: 20px;
}

.JU-VMT-image {
    border-radius: 16px;
}

.JU-VMT-text {
    padding-left: 20px;
}

.JU-VMT-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0d6efd;
}

.JU-VMT-heading h3 {
    margin: 0;
    color:#008AC1;
    font-weight: 600;
}

.JU-VMT-heading i {
    font-size: 20px;
}

.JU-VMT-text p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {

    .JU-VMT-tabs {
        width: 100%;
        justify-content: center;
    }

    .JU-VMT-text {
        padding-left: 0;
    }
}

.JU-FND-section {
    background: #ffffff;
}

.JU-FND-title {
   font-size: 34px;
  font-weight: 600;
  color: #022366;
}

.JU-FND-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.JU-FND-image-wrapper {
    overflow: hidden;
}

.JU-FND-image {
    width: 100%;
    border-radius: 8px;
}

.JU-FND-quote-wrapper {
    padding-left: 20px;
    position: relative;
}

.JU-FND-quote-icon {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.JU-FND-quote-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.JU-FND-author {
    font-size: 18px;
    color: #222;
    font-weight:400;
}

@media (max-width: 992px) {

    .JU-FND-quote-wrapper {
        padding-left: 0;
    }

    .JU-FND-title {
        font-size: 24px;
    }
}

.JU-MNT-section {
    background: linear-gradient(to bottom, #f2f3f5 60%, #ffffff 60%);
}

.JU-MNT-title {
    font-size: 30px;
    font-weight: 600;
    color: #022366;
}

.JU-MNT-card {
    padding: 10px 20px;
}

.JU-MNT-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.JU-MNT-image {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.JU-MNT-card:hover .JU-MNT-image {
    transform: scale(1.03);
}

.JU-MNT-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
}

.JU-MNT-designation {
    font-size: 13px;
    color: #555;
    margin-top: 5px;
}

.JU-MNT-cta {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.JU-MNT-cta i {
    font-size: 20px;
    color: #022366;
}

.JU-MNT-cta:hover {
    background: #022366;
    color: #ffffff;
}

.JU-MNT-cta:hover i {
    color: #ffffff;
}

@media (max-width: 768px) {

    .JU-MNT-title {
        font-size: 24px;
    }

    .JU-MNT-card {
        padding: 0 10px;
    }
}

@media(max-width:768px){

#mentorSlider .carousel-item{
padding:0 20px;
}

.JU-MNT-card{
padding:0;
}

}

.JU-PRN-section {
    background: #ffffff;
}


.JU-PRN-image-wrapper {
    height: 100%;
}

.JU-PRN-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.JU-PRN-content {
    background: #f2f3f5;
    padding: 60px 70px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.JU-PRN-quote-icon {
    font-size: 50px;
    color: #0d6efd;
    margin-bottom: 15px;
}


.JU-PRN-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}


.JU-PRN-author {
    margin-top: 20px;
    font-size: 18px;
    color: #222;
    font-weight:500;
}


@media (max-width: 992px) {

    .JU-PRN-content {
        padding: 40px 30px;
    }

    .JU-PRN-image {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .JU-PRN-content {
        padding: 30px 20px;
    }

    .JU-PRN-quote-icon {
        font-size: 36px;
    }
}


.JU-GB-title {
    font-size: 34px;
    font-weight: 600;
    color: #022366;
}

.JU-GB-table-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.JU-GB-table thead {
    background-color: #0d6efd;
}

.JU-GB-table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    background:#068ECE;
}

.JU-GB-table tbody td {
    font-size: 14px;
    color: #444;
}

.JU-GB-table tbody tr:nth-child(even) {
    background-color: #f5f6f8;
}

.JU-GB-table tbody tr:hover {
    background-color: #eef2f7;
}

@media (max-width: 576px) {
    .JU-GB-title {
        font-size: 22px;
    }
}

.JU-ARS-section {
    background: #f3f4f6;
    padding: 70px 60px;
}

.JU-ARS-row {
    max-width: 1400px;
    margin: 0 auto;
}

.JU-ARS-content {
    padding-right: 60px;
}

.JU-ARS-title {
    font-size: 34px;
    font-weight: 600;
    color: #0c2d57;
    line-height: 1.3;
    margin-bottom: 25px;
}
.JU-ARS-subtitle {
    color: #1aa3d8;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.JU-ARS-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.JU-ARS-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #5c6670;
}

.JU-ARS-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #5c6670;
    font-size: 18px;
}

.JU-ARS-image-wrapper {
    text-align: center;
}
.JU-ARS-image {
    max-width: 480px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .JU-ARS-section {
        padding: 50px 25px;
    }
    .JU-ARS-content {
        padding-right: 0;
        margin-bottom: 35px;
    }
    .JU-ARS-title {
        font-size: 28px;
    }
}
@media (max-width: 576px) {

    .JU-ARS-title {
        font-size: 24px;
    }

    .JU-ARS-list li {
        font-size: 14px;
    }
}

.JU-ER-section {
    background: #ffffff;
    padding: 70px 60px;
}
.JU-ER-container {
    max-width: 1400px;
    margin: auto;
}
.JU-ER-title {
    font-size: 34px;
    font-weight: 600;
    color: #0c2d57;
    margin-bottom: 40px;
}

.JU-ER-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #d7dbe0;
}

.JU-ER-last {
    border-bottom: none;
}

.JU-ER-icon {
    min-width: 44px;
    height: 44px;
    background: #1a86b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.JU-ER-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #5c6670;
}



@media (max-width: 991px) {
    .JU-ER-section {
        padding: 50px 25px;
    }
    .JU-ER-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .JU-ER-item {
        padding: 18px 0;
    }
}

@media (max-width: 576px) {
    .JU-ER-item {
        gap: 14px;
    }
    .JU-ER-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .JU-ER-item p {
        font-size: 14px;
    }
}

.JU-NOTE-section {
    background: #f2f3f5;
    padding: 50px 60px 70px;
}

.JU-NOTE-container {
    max-width: 1200px;
    margin: auto;
}

.JU-NOTE-heading {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.JU-NOTE-card {
    background: linear-gradient(135deg, #0b2f63, #167bb3);
    border-radius: 8px;
    padding: 40px 35px;
    text-align: center;
    color: #fff;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.JU-NOTE-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.JU-NOTE-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.JU-NOTE-text {
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 991px) {

    .JU-NOTE-section {
        padding: 40px 25px 60px;
    }

    .JU-NOTE-card {
        padding: 32px 25px;
    }
}

@media (max-width: 576px) {

    .JU-NOTE-title {
        font-size: 18px;
    }

    .JU-NOTE-text {
        font-size: 14px;
    }
}

.JU-ADINTRO-section {
    background: url(../../assets/images/bg-admission.webp);
    padding: 80px 20px;
}

.JU-ADINTRO-text {
    font-size: 20px;
    line-height: 1.8;
    color: #5c6670;
    font-weight: 400;
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 991px) {

    .JU-ADINTRO-section {
        padding: 60px 20px;
    }

    .JU-ADINTRO-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .JU-ADINTRO-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

.JU-ELIG-section {
    background: #f5f6f7;
    padding: 80px 60px;
}

.JU-ELIG-container {
    max-width: 1400px;
    margin: auto;
}
.JU-ELIG-title {
    font-size: 34px;
    font-weight: 600;
    color: #0c2d57;
    margin-bottom: 20px;
}

.JU-ELIG-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
}

.JU-ELIG-sticky {
    position: sticky;
    top: 120px; 
}
.JU-ELIG-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #dcdfe3;
    background: transparent;
}
.JU-ELIG-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 18px;
    color: #1f2d3d;
    padding: 22px 0;
    box-shadow: none;
}
.JU-ELIG-accordion .accordion-button:not(.collapsed) {
    color: #0c2d57;

}
.JU-ELIG-accordion .accordion-body {
    padding: 10px 0 25px;
}
.JU-ELIG-accordion ul {
    margin: 0;
    padding-left: 18px;
}
.JU-ELIG-accordion li {
    margin-bottom: 10px;
    color: #5c6670;
    line-height: 1.7;
}

.JU-ELIG-accordion .accordion-button::after {
    transform: scale(.8);
}


@media (max-width: 991px) {
  .JU-ELIG-title {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    color: #0c2d57;
    margin-bottom: 20px;
}
    .JU-ELIG-section {
        padding: 60px 25px;
    }
    .JU-ELIG-sticky {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .JU-ELIG-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    color: #1f2d3d;
    padding: 22px 0;
    box-shadow: none;
}

}


.JU-APF2-section{
    height:650vh;
    background:#f5f6f7;
}

.JU-APF2-pin{
    position:sticky;
    top:0;
    height:100vh;
    display:flex;
    align-items:center;
}


.JU-APF2-title{
    font-size:36px;
    font-weight:600;
    color:#0c2d57;
}

.JU-APF2-img{
    opacity:.6;
    margin-top:20px;
}


.JU-APF2-timeline{
    position:relative;
    padding-left:80px;
}

.JU-APF2-line{
    position:absolute;
    left:35px;
    top:-200px;
    bottom:-200px;
    width:3px;
    background:#d8dee6;
}

.JU-APF2-progress{
    position:absolute;
    width:100%;
    height:0%;
    background:#1a86b8;
    transition:height .25s ease-out;
}

.JU-APF2-indicator{
    position:absolute;
    left:-14px;
    top:0%;
    width:36px;
    height:36px;
    background:#1a86b8;
    border-radius:50%;
    transform:translateY(-50%);
    transition:top .25s ease-out;
}


.JU-APF2-card-stack{
    position:relative;
    height:260px;
    overflow:visible;
}


.JU-APF2-card{
    background:#fff;
    padding:30px;
    border-radius:14px;
    max-width:460px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:
      transform .45s cubic-bezier(.22,1,.36,1),
      opacity .45s ease;
}


.JU-APF2-active{
    position:relative;
    z-index:2;
    transform:translateY(0);
}


.JU-APF2-prev{
    position:absolute;
    top:-80px;
    left:0;
    width:100%;
    opacity:0;
    transform:translateY(-40px) scale(.95);
    transition:all .45s ease;
    z-index:1;
    pointer-events:none;
}


.JU-APF2-card span{
    display:block;
    font-weight:600;
    color:#1a86b8;
    font-size:30px;
    margin-bottom:8px;
}

.JU-APF2-card h5{
    font-weight:600;
    margin-bottom:10px;
}

.JU-APF2-card p{
    color:#6c757d;
    margin:0;
}


@media(max-width:991px){
  .JU-APF2-section{height:auto;}
  .JU-APF2-pin{
      position:relative;
      height:auto;
      padding:60px 20px;
  }
}


.JU-DR-section {
    background: #ffffff;
    padding: 80px 0;
}


.JU-DR-title {
    font-size: 34px;
    font-weight: 600;
    color: #0c2d57;
}


.JU-DR-card {
    border-radius: 20px;
border-left: 6px solid #001C54;

box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16);
    padding: 40px 35px;
    color: #000000;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}


.JU-DR-card:hover {
    transform: translateY(-6px);
    box-shadow:
        -6px 0 0 #0c2d57,
        0 18px 36px rgba(0,0,0,0.15);
}


.JU-DR-card-title {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(105deg, #001C54 0%, #0089C6 107.89%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.4;
}


.JU-DR-list{
list-style:none;
padding-left:0;
}

.JU-DR-list li{
margin-bottom:12px;
line-height:1.7;
font-size:16px;
position:relative;
padding-left:30px;
}

.JU-DR-list li::before{
content:"";
position:absolute;
left:0;
top:4px;
width:16px;
height:16px;
background-image:url('../../assets/images/arrow_icon.svg'); 
background-size:contain;
background-repeat:no-repeat;
}

.JU-DR-note {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}



@media (max-width: 991px) {

    .JU-DR-section {
        padding: 60px 20px;
    }

    .JU-DR-card {
        padding: 32px 25px;
    }
}

@media (max-width: 576px) {

    .JU-DR-title {
        font-size: 26px;
    }

    .JU-DR-card-title {
        font-size: 20px;
    }

    .JU-DR-list li {
        font-size: 14px;
    }
}


.JU-AN-section {
    background: #f3f4f6;
    padding: 80px 0;
}


.JU-AN-program-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.JU-AN-program-img {
    width: 100%;
    display: block;
}


.JU-AN-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.2),
        transparent
    );
}


.JU-AN-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
}

.JU-AN-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
}


.JU-AN-icon {
    font-size: 28px;
    margin-bottom: 10px;
}


.JU-AN-btn {
    background: #0c2d57;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    transition: background .3s ease;
}

.JU-AN-btn:hover {
    background: #081f3c;
}


.JU-AN-title {
    font-size: 28px;
    font-weight: 600;
    color: #0c2d57;
}


.JU-AN-notice-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.JU-AN-notice-box p {
    color: #5c6670;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}


.JU-AN-note {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}


.JU-AN-side-img {
    border-radius: 12px;
}



@media (max-width: 991px) {

    .JU-AN-section {
        padding: 60px 20px;
    }

    .JU-AN-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .JU-AN-content {
        left: 18px;
        bottom: 18px;
    }

    .JU-AN-content h5 {
        font-size: 18px;
    }
}





.JU-SR-section {
    position: relative;
    overflow: hidden;
}


.JU-SR-bg {
    position: relative;
    min-height: 720px;
    background: url("../../assets/images/StudentResearch.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}


.JU-SR-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.65) 35%,
            rgba(0,0,0,0.35) 65%,
            rgba(0,0,0,0.15) 100%
        );
}


.JU-SR-content {
    position: relative;
    z-index: 2;
    padding: 90px 20px;
}


.JU-SR-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
}


.JU-SR-text {
    color: #e6e6e6;
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 720px;
}


.JU-SR-buttons {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}


.JU-SR-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all .35s ease;
}


.JU-SR-icon {
    font-size: 24px;
}


.JU-SR-btn.primary {
    background: #1a86b6;
    color: #fff;
}

.JU-SR-btn.primary:hover {
    background: #156e94;
}


.JU-SR-btn.outline {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}

.JU-SR-btn.outline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 991px) {

  .JU-SR-title {
      font-size: 32px;
      margin-bottom: 20px;
  }

  .JU-SR-content {
      padding: 70px 20px;
  }

  .JU-SR-buttons {
      flex-direction: column;
      gap: 15px;
  }

  .JU-SR-btn {
      width: 100%;
      justify-content: center;
  }
}



.JU-RI-section {
    background: #f3f3f3;
    padding: 70px 0;
}


.JU-RI-content {
    max-width: 600px;
}


.JU-RI-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}


.JU-RI-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}


.JU-RI-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}


.JU-RI-highlight {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.JU-RI-highlight span {
    color: #0a74b9;font-size: 18px;
    font-weight: 600;
}


.JU-RI-image-wrap {
    text-align: right;
}

.JU-RI-image {
    border-radius: 6px;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {

  .JU-RI-section {
      padding: 50px 0;
  }

  .JU-RI-image-wrap {
      text-align: center;
      margin-top: 30px;
  }

  .JU-RI-title {
      font-size: 28px;
  }

}




.JU-HSJ-section{
    background:#efefef;
    padding:80px 0;
    overflow:hidden;
}


.JU-HSJ-intro h3{
    font-size:22px;
    font-weight:600;
}

.JU-HSJ-intro p{
    font-size:14px;
    color:#666;
    margin-top:12px;
    line-height:1.7;
}


.JU-HSJ-nav{
    margin-top:25px;
}

.JU-HSJ-nav button{
    border:none;
    background:#fff;
    width:42px;
    height:42px;
    margin-right:10px;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
}

.JU-HSJ-nav button:hover{
    transform:translateY(-2px);
}


.JU-HSJ-slider{
    padding:20px 10px 40px;
}


.JU-HSJ-card{
    background:#fff;
    padding:26px;
    height:280px;
    border-radius:6px;
    transition:all .6s cubic-bezier(.22,1,.36,1);
    
}


.JU-HSJ-card img{
    transition:all .4s ease;
}


.swiper-slide-active .JU-HSJ-card img{
    filter: brightness(0) invert(1);
}

.swiper-slide-active{
    opacity:1;
    transform:scale(1);
}


.swiper-slide-active .JU-HSJ-card{
    background: linear-gradient(105deg, #001C54 0%, #0089C6 107.89%);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
    color:#fff;
}


.swiper-slide-active .JU-HSJ-card h5,
.swiper-slide-active .JU-HSJ-card p{
    color:#ffffff !important;
}


.JU-HSJ-card h5{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
}

.JU-HSJ-card p{
    font-size:14px;
    line-height:1.7;
}


.JU-RP-section{
    background:#ffffff;
    padding:70px 0;
}


.JU-RP-image-card{
    position:relative;
    height:100%;
    overflow:hidden;
    border-radius:6px;
}

.JU-RP-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.JU-RP-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    color:#fff;
}

.JU-RP-overlay h4{
    font-weight:600;
    margin-bottom:6px;
}


.JU-RP-card{
    background:#fff;
    padding:30px;
    height:100%;
    border-radius:4px;
    transition:.35s ease;
    border:1px solid #e6e6e6;
}

.JU-RP-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}


.JU-RP-icon{
    font-size:18px;
    margin-bottom:12px;
    color:#0c7db8;
}

.JU-RP-card h5{
    font-size:22px;
    font-weight:600;
}

.JU-RP-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}


.JU-RP-bottom h5{
    font-weight:600;
    font-size:22px;
    margin-bottom:10px;
}

.JU-RP-bottom p{
    font-size:16px;
    color:#555;
    line-height:1.7;
}

@media(max-width:991px){

  .JU-RP-image-card{
      height:420px;
  }

}

.JU-RC-section{
    position:relative;
}

.JU-RC-bg{
    position:relative;
    height:520px;
    overflow:hidden;
}


.JU-RC-image{
    width:100%;
    height:100%;
    object-fit:cover;
}


.JU-RC-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}


.JU-RC-cards-wrap{
    position:absolute;
    bottom:40px;
    left:0;
    right:0;
    z-index:2;
}


.JU-RC-card{
    background:#ffffff;
    padding:18px 22px;
    border-radius: 500px;
    border: 0.6px solid var(--Neutral, #666767);
    display:flex;
    align-items:center;
    gap:14px;
    height:70px;
    transition:all .35s ease;
}


.JU-RC-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}


.JU-RC-icon{
    font-size:20px;
    color:#0c7db8;
}


.JU-RC-card h6{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#222;
}

@media(max-width:991px){

  .JU-RC-bg{
      display:block;height:auto;
      
  }

  .JU-RC-cards-wrap{
      position:relative;
      bottom:auto;
      background:#e5e5e5;
      margin-top:20px;
  }

}

@media(max-width:576px){

  .JU-RC-card{
      height:auto;
      padding:16px;
  }

}




.JU-about-section{
    background:#f4f4f4;
}


.JU-about-image img{
    border-radius:10px;
    width:100%;
    object-fit:cover;
}


.JU-about-title{
    font-size:34px;
    font-weight:600;
    color:#022366;
    margin-bottom:15px;
}

.JU-about-text{
    font-size:15px;
    line-height:1.7;
    color:#5a5a5a;
    max-width:520px;
}

@media(max-width:991px){

.JU-about-title{
    font-size:22px;
    font-weight:600;
    color:#022366;
    margin-bottom:15px;
}

}

.JU-about-card{
    background:#ffffff;
    padding:35px 25px;
    border-radius:8px;
    height:100%;
    transition:all .35s ease;
}

.JU-about-card img{
    height:60px;
}

.JU-about-card p{
    font-size:15px;
    color:#333;
    margin:0;
}

.JU-card-blue{
    background:linear-gradient(135deg,#0c7db8,#022366);
    color:#fff;
}

.JU-card-blue p{
    color:#fff;
}


.JU-about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.JU-about-card:hover img{
    transform:scale(1.08);
}
.JU-about-card img{
    transition:.3s ease;
}


.JU-why-section{
    background:#ffffff;
}


.JU-why-title{
    font-size:36px;
    font-weight:600;
    color:#022366;
    margin-bottom:20px;
}

.JU-why-desc{
    font-size:15px;
    color:#6b6b6b;
    line-height:1.7;
    margin-bottom:25px;
}


.JU-why-accordion .accordion-item{
    border:none;
    border-bottom:1px solid #dcdcdc;
    background:transparent;
}

.JU-why-accordion .accordion-button{
    background:transparent;
    font-weight:600;
    padding:18px 0;
    color:#2a2a2a;
    box-shadow:none;
}

.JU-why-accordion .accordion-button:not(.collapsed){
    color:#0c7db8;
}

.JU-why-accordion .accordion-body{
    padding:0 0 18px 0;
    font-size:14px;
    color:#666;
}

.accordion-button::after{
    transform:scale(.8);
}

.JU-why-image img{
    border-radius:6px;
    width:100%;
}

.JU-cta-card{
    padding:40px 30px;
    height:100%;
    color:#fff;
    border-radius:4px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.JU-cta-card h4{
    font-size:28px;
    color:white;
    font-weight:600;
}

.JU-cta-dark{
    background:#0b2b5b;
}

.JU-cta-blue{
    background:#1582a8;
}


@media(max-width:991px){


.JU-why-title{
    font-size:28px;
    line-height:1.3;
}


.JU-cta-card h4{
    font-size:24px;
}

}

@media(max-width:576px){

.JU-why-section{
    padding:45px 0;
}

.JU-why-title{
    font-size:22px;
    margin-bottom:12px;
}

.JU-why-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
}

.JU-why-accordion .accordion-button{
    padding:14px 0;
    font-size:15px;
}

.accordion-button::after{
    transform:scale(.7);
}


.JU-why-accordion .accordion-body{
    font-size:13.5px;
    line-height:1.6;
}

}

@media (max-width:576px){


.JU-why-image{
display:none;
}


.JU-why-image + .row{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
}


.JU-cta-card{
background:#fff;
border-radius:14px;
padding:15px 10px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
border:1px solid silver;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}


.JU-cta-card .juvasvaibutton{
display:none;
}


.JU-cta-card h4{
font-size:15px;
color:#022366;
margin:0;
line-height:1.3;
}


.JU-cta-card::before{
width:44px;
height:44px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-family:"bootstrap-icons";
font-size:22px;
color:#fff;
content:"";
}

.JU-cta-dark::before{
content:"\F6E4";
background:#0b2b5b;
}

.JU-cta-blue::before{
content:"\F1DD"; 
background:#1582a8;
}

}

.JU-cta-card:active{
transform:scale(.95);
}

.JU-cta-card{
position:relative;
}


.JU-cta-arrow{
position:absolute;
bottom:14px;
right:14px;
width:34px;
height:34px;
border:1px solid #022366;
color:#022366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
text-decoration:none;
}


@media(min-width:768px){
.JU-cta-arrow{
display:none;
}
}

.JU-placement-section{
    background:#ffffff;
    padding:80px 80px;
}


.JU-placement-title{
    font-size:36px;
    font-weight:600;
    color:#022366;
}

.JU-placement-desc{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-top:15px;
}

.JU-stat-box{
    border:1px solid #cfcfcf;
    padding:30px;
    text-align:center;
    background:#fff;
}

.JU-stat-box h3{
    font-size:34px;
    font-weight:700;
    color:#022366;
}

.JU-stat-box p{
    margin:0;
    font-size:14px;
    color:#5c5c5c;
}

.JU-logo-wall{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    height:520px;
    overflow:hidden;
}

.JU-logo-column{
    overflow:hidden;
    position:relative;
}

.JU-logo-track{
    display:flex;
    flex-direction:column;
    gap:45px;
}

.JU-logo-track img{
    width:100%;
    max-height:80px;
    object-fit:contain;
    border:1px solid #e5e5e5;
    transition:.3s;
}

.JU-logo-track img:hover{
    filter:none;
    opacity:1;
}

@keyframes scrollDown{
    from{ transform:translateY(-50%); }
    to{ transform:translateY(0); }
}

@keyframes scrollUp{
    from{ transform:translateY(0); }
    to{ transform:translateY(-50%); }
}

.scroll-down .JU-logo-track{
    animation:scrollDown 52s linear infinite;
}

.scroll-up .JU-logo-track{
    animation:scrollUp 52s linear infinite;
}

@media(max-width:991px){

.JU-placement-title{
    font-size:28px;
}

.JU-stat-box h3{
    font-size:26px;
}

}

@media(max-width:576px){

.JU-placement-section{
    padding:45px 18px;
}

.JU-placement-title{
    font-size:22px;
    line-height:1.3;
    margin-bottom:10px;
}

.JU-placement-desc{
    font-size:14px;
    line-height:1.6;
}

.JU-stat-box{
    padding:16px 12px;
}

.JU-stat-box h3{
    font-size:22px;
}

.JU-stat-box p{
    font-size:12px;
}

}


@media(max-width:576px){

.JU-logo-column:not(:first-child){
    display:none;
}

.JU-logo-wall{
    display:block;
    height:auto;
    overflow:hidden;
    margin-top:25px;
}

.JU-logo-track{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:28px;
    width:max-content;
    animation:logoSlideMobile 28s linear infinite !important;
}

.scroll-up .JU-logo-track,
.scroll-down .JU-logo-track{
    animation:none;
}

.JU-logo-track img{
    height:50px;
    width:auto;
    padding:8px 12px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:4px;
    flex-shrink:0;
}

@keyframes logoSlideMobile{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

}

.JU-logo-track{
    will-change: transform;
}

.JU-query-section{
    position:relative;
    height:520px;
    background:url("../../assets/images/haveaquery.webp") center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.JU-query-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.85) 100%
    );
}

.JU-query-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.JU-query-title{
    font-size:36px;
    color:#ffffff;
    font-weight:700;
    margin-bottom:10px;
}

.JU-query-text{
    font-size:15px;
    opacity:.9;color:#ffffff;
    margin-bottom:25px;
}

.JU-query-btn{
    background:#ffffff;
    color:#022366;
    padding:10px 22px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    border-radius:3px;
    display:inline-block;
    transition:all .3s ease;
}

.JU-query-btn:hover{
    background:#022366;
    color:#fff;
}

@media(max-width:768px){

.JU-query-section{
    height:260px;
}

.JU-query-title{
    font-size:26px;
}

.JU-query-text{
    font-size:14px;
}

}

.JU-EC-section{
    background:#ffffff;
}

.JU-EC-image-wrap{
    overflow:hidden;
    border-radius:4px;
}

.JU-EC-image{
    width:100%;
    height:auto;
    object-fit:cover;
}

.JU-EC-content{
    padding-left:20px;
}

.JU-EC-title{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:15px;
}

.JU-EC-desc{
    font-size:14px;
    line-height:1.7;
    color:#6b7280;
    margin-bottom:18px;
}

.JU-EC-list{
    padding-left:18px;
    margin:0;
}

.JU-EC-list li{
    font-size:14px;
    margin-bottom:8px;
    color:#4b5563;
}

.JU-EC-doc-card{
    display:flex;
    align-items:center;
    gap:14px;
    background:#ffffff;
    border-radius: 500px;
    border: 0.7px solid #666767;
    padding:18px 20px;
    text-decoration:none;
    color:#1f2937;
    font-size:15px;
    font-weight:500;
    transition:all .3s ease;
    height:100%;
}

.JU-EC-doc-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.JU-EC-pdf-icon{
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    background:#fff1f1;
    color:#e11d48;
    font-weight:700;
    font-size:12px;
    border:1px solid #ffd6d6;
}


@media (max-width:991px){

    .JU-EC-content{
        padding-left:0;
    }

    .JU-EC-title{
        font-size:24px;
    }
}

@media (max-width:576px){

    .JU-EC-title{
        font-size:22px;
    }

    .JU-EC-doc-card{
        padding:16px;
        font-size:14px;
    }
}

.JU-PLC-section{
    background:#ffffff;
    padding:70px 0;
}


.JU-PLC-title{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:18px;
}

.JU-PLC-desc{
    font-size:14px;
    line-height:1.75;
    color:#6b7280;
    margin-bottom:14px;
}

.JU-PLC-image-wrap{
    border-radius:8px;
    overflow:hidden;
}

@media(max-width:991px){

    .JU-PLC-section{
        padding:60px 0;
    }

    .JU-PLC-title{
        font-size:24px;
    }
}

.JU-FF-section{
    position:relative;
    padding:90px 0 80px;
    background:url("../../assets/images/facts-25-06.png") center/cover no-repeat;
    color:#fff;
}

.JU-FF-overlay{
    position:absolute;
    inset:0;
    background:rgba(47,78,114,0.62); /* exact muted blue feel */
}

.JU-FF-title{
    font-size:26px;
    font-weight:600;
    margin-bottom:60px;
    letter-spacing:.3px;
}

.JU-FF-label-row p{
    font-size:16px;
    margin:0;
    opacity:1;
    color:white;
    font-weight:400;
}

.JU-FF-col{
    position:relative;
}

@media(min-width:992px){
    .JU-FF-col:not(:last-child)::after{
        content:"";
        position:absolute;
        right:0;
        top:50%;
        transform:translateY(-50%);
        height:45px;
        width:1px;
        background:rgba(255,255,255,.35);
    }
}

.JU-FF-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.35);
    margin:18px 0 22px;
}

.JU-FF-value-row h4{
    font-size:36px;
    font-weight:600;
    margin:0;
    color:#f3f4f6;
    letter-spacing:.5px;
}

@media (max-width:767px){
    .JU-FF-title{
        font-size:22px;
        margin-bottom:25px;
    }
    .JU-FF-divider{
        display:none;
    }
  
    .JU-FF-stats{
        display:grid;
        grid-template-columns:1fr;
        gap:16px;
    }
    .JU-FF-label-row,
    .JU-FF-value-row{
        display:block;
    }

    .JU-FF-label-row .col-6,
    .JU-FF-value-row .col-6{
        width:100%;
        max-width:100%;
        flex:unset;
    }
    .JU-FF-label-row{
        display:none;
    }
    .JU-FF-value-row .col-6{
        background:rgba(255,255,255,.08);
        border-radius:10px;
        padding:24px 15px;
        margin-bottom:14px;
        text-align:center;
        position:relative;
    }
    
    .JU-FF-value-row .col-6:nth-child(1)::after{
        content:"Companies Visited";
    }

    .JU-FF-value-row .col-6:nth-child(2)::after{
        content:"Jobs Offered";
    }

    .JU-FF-value-row .col-6:nth-child(3)::after{
        content:"Highest CTC";
    }

    .JU-FF-value-row .col-6:nth-child(4)::after{
        content:"Average CTC";
    }

   
    .JU-FF-value-row .col-6::after{
        display:block;
        margin-top:6px;
        font-size:14px;
        color:#e5e7eb;
    }

    
    .JU-FF-value-row h4{
        font-size:28px;
        font-weight:700;
        margin:0;
        color:#ffffff;
    }

}

.JU-PS-section{
    background:#f3f4f6;
    padding:80px 0;
}

.JU-PS-header h2{
    font-size:32px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:45px;
    line-height:1.3;
}



.JU-PS-card{
    padding:28px;
    border-radius:6px;
    height:100%;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.JU-PS-card.light{
    background:#ffffff;
    color:#111827;
}

.JU-PS-card.blue{
    background:#008AC1;
    color:#ffffff;
}



.JU-PS-card h5{
    font-size:22px;
    font-weight:600;
    margin-bottom:8px;
}

.JU-PS-card h6{
    font-size:20px;
    font-weight:600;
    margin-bottom:16px;
}

.JU-PS-card p{
    font-size:14px;
    margin-bottom:4px;
    opacity:.9;
}


.JU-PS-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}


.JU-PS-scroll-track{
    flex-wrap:wrap;
}

@media(max-width:767px){

    .JU-PS-scroll{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scroll-snap-type:x mandatory;
        padding-left:15px;
        padding-right:15px;
    }

    .JU-PS-scroll::-webkit-scrollbar{
        display:none;
    }

    .JU-PS-scroll-track{
        flex-wrap:nowrap;
        gap:16px;
    }

    .JU-PS-slide{
        flex:0 0 85%;
        scroll-snap-align:start;
        padding:0;
    }
}

@media(max-width:991px){
    .JU-PS-header h2{
        font-size:26px;
    }
}

@media(max-width:576px){
    .JU-PS-section{
        padding:60px 0;
    }

    .JU-PS-card{
        padding:22px;
    }
}



.JU-RC-section{
    background:#f3f4f6;
    padding:80px 0;
    overflow:hidden;
}

.JU-RC-title{
    font-size:32px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:50px;
}


.JU-RC-slider{
    overflow:hidden;
    position:relative;
}


.JU-RC-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
    animation:JU-RC-scroll 78s linear infinite;
     will-change:transform;
}


.JU-RC-logo{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.JU-RC-logo img{
    max-height:100px;
    width:auto;
    object-fit:contain;
    opacity:1;
    transition:.3s ease;
}

.JU-RC-logo img:hover{
    filter:grayscale(0%);
    opacity:1;
}


@keyframes JU-RC-scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


.JU-RC-slider:hover .JU-RC-track{
    animation-play-state:paused;
}


@media(max-width:768px){

    .JU-RC-track{
        gap:50px;
        animation-duration:50s;
    }

    .JU-RC-logo{
        height:60px;
    }

    .JU-RC-logo img{
        max-height:100px;
    }

    .JU-RC-title{
    font-size:26px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:50px;
}

}



.JU-PP-section{
    background:#f3f4f6;
    padding:30px 0;
}

.JU-PP-card{
    background:linear-gradient(
        90deg,
        #0b2c5f 0%,
        #0f4f86 45%,
        #0d78a8 100%
    );
    border-radius:10px;
    padding:55px 40px;
    color:#ffffff;
    box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.JU-PP-text{
    font-size:16px;
    line-height:1.6;
    max-width:720px;
    color:#ffffff;
    margin:0 auto 30px;
    font-weight:400;
}

.JU-PP-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.JU-PP-btn{
    background:#e5e7eb;
    color:#0b2c5f;
    padding:12px 38px;
    font-size:14px;
    font-weight:500;
    border-radius:2px;
    text-decoration:none;
    transition:all .25s ease;
}

.JU-PP-btn:hover{
    background:#ffffff;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .JU-PP-card{
        padding:40px 25px;
    }

    .JU-PP-text{
        font-size:15px;
    }

    .JU-PP-buttons{
        gap:15px;
    }
}

.JU-LIB-section{
    background:#ffffff;
    padding:60px 0;
}

.JU-LIB-sidebar{
    position:sticky;
    top:120px;
    padding-right:30px;
    border-right:1px solid #e5e7eb;
}

.JU-LIB-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.JU-LIB-menu li{
    border-bottom:1px solid #e5e7eb;
}



.JU-LIB-menu li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    text-decoration:none;
    color:#374151;
    font-size:15px;
    transition:.3s;
    position:relative;
}



.JU-LIB-text{
    display:flex;
    align-items:center;
    gap:10px;
}


.JU-LIB-text::before{
    content:"";
    width:10px;
    display:inline-block;
}



.JU-LIB-menu li.active .JU-LIB-text::before{
    content:"■";
    color:#0c7db8;
    font-size:18px;
}



.JU-LIB-menu li a::after{
    content:"→";
    opacity:.6;
    transition:.3s;
}



.JU-LIB-menu li.active a{
    color:#0c7db8;
    font-weight:600;
}



.JU-LIB-menu li.active a::after{
    opacity:0;
}


.JU-LIB-menu li a:hover{
    color:#0c7db8;
}
.JU-LIB-content{
    padding-left:40px;
}


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

.JU-LIB-header h2{
    font-size:32px;
    font-weight:600;
    color:#1c2d5a;
}

.JU-LIB-opac{
    background:#f3f4f6;
    border:1px solid #d1d5db;
    padding:10px 22px;
    text-decoration:none;
    color:#1c2d5a;
    font-size:14px;
    transition:.3s;
}

.JU-LIB-opac:hover{
    background:#ffffff;
}


.JU-LIB-content p{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:18px;
}


.JU-LIB-image{
    margin-top:25px;
}

.JU-LIB-image img{
    border-radius:4px;
}


@media(max-width:991px){

    .JU-LIB-sidebar{
        position:relative;
        top:auto;
        border-right:none;
        margin-bottom:30px;
    }

    .JU-LIB-content{
        padding-left:0;
    }

    .JU-LIB-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .JU-LIB-header h2{
    font-size:22px;
    font-weight:600;
    color:#1c2d5a;
}


}




.JU-VM-section{
    background:#ffffff;
    padding:50px 0px 20px 30px;
}


.JU-VM-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:8px;
}



.JU-VM-card{
   background:#008AC1;
    color:#fff;
    border-radius: 10px;
    padding:50px;
    height:100%;
    display:flex;
    align-items:center;
}

.JU-VM-card p{
    margin:0;
    font-size:15px;
    color:white;
    line-height:1.7;
}




.JU-VM-tabs-wrapper{
    position:relative;
    margin-top:40px;
    padding-top:25px;
}

/* divider line */
.JU-VM-tabs-wrapper::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:#cfd4da;
}

/* tabs */

.JU-VM-tabs{
    gap:70px;
}

.JU-VM-tabs .nav-link{
    border:none;
    background:none;
    color:#6b7280;
    font-size:15px;
    transition:.3s ease;
    position:relative;
}

/* ACTIVE TAB SCALE */
.JU-VM-tabs .nav-link.active{
    color:#0c7db8;
    font-size:18px;   /* increased */
    font-weight:600;
}


/* MOVING LINE */

.JU-VM-indicator{
    position:absolute;
    top:0;
    width:2px;
    height:24px;
    background:#9ca3af;
    left:50%;
    transform:translateX(-50%);
    transition:left .35s ease;
}




.JU-VM-accordion .accordion-item{
    border:none;
    margin-bottom:12px;
    border-radius:8px;
    border:1px solid #e5e5e5;
    overflow:hidden;
}

.JU-VM-accordion .accordion-button{
    background:#ffffff;
    font-weight:600;
    color:#1c2d5a;
    box-shadow:none;
}

.JU-VM-accordion .accordion-button:not(.collapsed){
    background:#0c7db8;
    color:#fff;
}

.JU-VM-accordion .accordion-body{
    background:#147ea4;
    color:#fff;
    font-size:14px;
    line-height:1.7;
}




.JU-LC-section{
    background:#ffffff;
    padding:70px 0;
}



.JU-LC-title{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:8px;
}

.JU-LC-subtitle{
    color:#6b7280;
    font-size:14px;
    margin-bottom:40px;
}


.JU-LC-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    position:relative;
}


.JU-LC-grid::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:1px;
    background:#cfd4da;
}


.JU-LC-item{
    padding:30px 20px;
    border-bottom:1px solid #cfd4da;
}

.JU-LC-item:nth-last-child(-n+2){
    border-bottom:none;
}


.JU-LC-item h3{
    font-size:24px;
    font-weight:600;
    background: linear-gradient(105deg, #001C54 0%, #0089C6 107.89%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom:6px;
}

.JU-LC-item p{
    font-size:15px;
    color:#6b7280;
    margin:0;
}



.JU-LC-hours{
    margin-top:60px;
}

.JU-LC-hours h2{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:20px;
}

.JU-LC-hours ul{
    padding-left:18px;
}

.JU-LC-hours li{
    font-size:14px;
    color:#4b5563;
    margin-bottom:10px;
    line-height:1.7;
}




@media (max-width: 767px){


    .JU-LC-section{
        padding:50px 0;
    }

    .JU-LC-title{
        font-size:24px;
    }

    .JU-LC-subtitle{
        font-size:13px;
        margin-bottom:25px;
    }

 
    .JU-LC-grid{
        grid-template-columns:1fr;
    }

 
    .JU-LC-grid::before{
        display:none;
    }

    
    .JU-LC-item{
        text-align:center;
        padding:22px 10px;
        border-bottom:1px solid #e5e7eb;
    }

   
    .JU-LC-item:last-child{
       border-bottom:1px solid #e5e7eb;
    }

    
    .JU-LC-item h3{
        font-size:20px;
        margin-bottom:6px;
    }

    .JU-LC-item p{
        font-size:14px;
    }

  
    .JU-LC-hours{
        margin-top:40px;
    }

    .JU-LC-hours h2{
        font-size:22px;
    }

    .JU-LC-hours li{
        font-size:14px;
        line-height:1.7;
    }
}



.JU-LS-section{
    background:#ffffff;
    padding:40px 0;
}

.JU-LS-card{
    background:linear-gradient(135deg,#2f2f2f,#3a3a3a);
    border-radius:10px;
    padding:45px 40px;
    color:#fff;
}

.JU-LS-pill{
    display:inline-block;
    border:1px solid rgba(255,255,255,.5);
    padding:6px 18px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:25px;
}



.JU-LS-services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px 26px;
    font-size:16px;
    color:#ffffff;
    line-height:1.6;
}

.JU-LS-services span{
    position:relative;
    padding-left:18px;
}

.JU-LS-services span::before{
    content:"";
    width:6px;
    height:6px;
    background:#0c7db8;
    border-radius:50%;
    position:absolute;
    left:0;
    top:9px;
}

@media(max-width:768px){
    .JU-LS-card{
        padding:35px 20px;
    }
    .JU-LS-services{
        font-size:14px;
        gap:10px 18px;
    }
}



.JU-FAC-section{
    background:#ffffff;
    padding:50px 0;
}



.JU-FAC-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}



.JU-FAC-content{
    padding-top:2px;
}



.JU-FAC-pill{
    display:inline-block;
    border:1px solid #cfd4da;
    padding:6px 18px;
    border-radius:20px;
    font-size:14px;
    color:#374151;
    margin-bottom:18px;
}



.JU-FAC-block h3{
    font-size:20px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:10px;
}

.JU-FAC-block p{
    font-size:14px;
    line-height:1.75;
    color:#6b7280;
    margin-bottom:12px;
}



.JU-FAC-divider{
    border:none;
    border-top:1px solid #d1d5db;
    margin:22px 0;
}



.JU-BB-section{
    background:#EDEFF2;
    padding:60px 0;
    border: 1px solid #E0E0E0;
}

.JU-BB-title{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:35px;
}



.JU-BB-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}



.JU-BB-icon{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    background:#e6f3fb;
    color:#0c7db8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}



.JU-BB-item p{
    font-size:14px;
    line-height:1.7;
    color:#4b5563;
    margin:0;
}

@media(max-width:768px){

    .JU-BB-title{
        font-size:24px;
    }

    .JU-BB-section{
        padding:50px 0;
    }
}


.JU-RB-section{
    background:#ffffff;
    padding:60px 0;
}

.JU-RB-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}


.JU-RB-content h2{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:18px;
}


.JU-RB-list{
    padding-left:18px;
    margin:0;
}

.JU-RB-list li{
    font-size:14px;
    color:#4b5563;
    line-height:1.8;
    margin-bottom:10px;
}

@media(max-width:991px){

    .JU-RB-section{
        padding:50px 0;
    }

    .JU-RB-content h2{
        font-size:24px;
    }
}




.JU-BFI-section{
    background:#ffffff;
    padding:50px 0;
}



.JU-BFI-header h2{
    font-size:30px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:6px;
}

.JU-BFI-header p{
    font-size:14px;
    color:#6b7280;
    margin-bottom:35px;
}



.JU-BFI-card{
    background:#ffffff;
    padding:30px;
    border-radius: 20px;
    border-left: 7px solid #001C54;
    background: #FFF;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16), 0 2px 20px 0 rgba(0, 0, 0, 0.16);
    height:100%;
}



.JU-BFI-card h3{
    font-size:20px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:15px;
}



.JU-BFI-card ul{
    padding-left:18px;
    margin:0;
}

.JU-BFI-card li{
    font-size:14px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
}

@media(max-width:768px){

    .JU-BFI-section{
        padding:55px 0;
    }

    .JU-BFI-header h2{
        font-size:24px;
    }
}




.JU-DL-section{
    background:#ffffff;
    padding:10px 0;
}

.JU-DL-title{
    font-size:28px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:12px;
}



.JU-DL-desc{
    font-size:14px;
    line-height:1.8;
    color:#6b7280;
    max-width:900px;
    margin-bottom:45px;
}



.JU-DL-subtitle{
    font-size:22px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:18px;
}



.JU-DL-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:45px;
}



.JU-DL-btn{
    background:#008AC1;
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    min-width:240px;
    text-align:center;
    transition:.3s ease;
}

.JU-DL-btn:hover{
    background:#008AC1;
    color:#ffffff;
}



.JU-DL-ndl-title{
    font-size:22px;
    font-weight:600;
    color:#1c2d5a;
    margin-bottom:15px;
}



.JU-DL-list{
    padding-left:20px;
    color:#4b5563;
}

.JU-DL-list li{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.7;
}



.JU-DL-list a{
    color:#0c7db8;
    text-decoration:none;
}

.JU-DL-list a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .JU-DL-title{
        font-size:22px;
    }

    .JU-DL-buttons{
        gap:12px;
    }

    .JU-DL-btn{
        min-width:100%;
    }
}




.JU-LIB-toggle{
    width:100%;
    background:#ffffff;
    border:1px solid #e5e7eb;
    padding:14px 16px;
    font-size:16px;
    font-weight:600;
    color:#1c2d5a;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius:6px;
    margin-bottom:15px;
}



.JU-LIB-toggle-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .35s cubic-bezier(.4,0,.2,1);
}



.JU-LIB-toggle[aria-expanded="true"] .JU-LIB-toggle-icon{
    transform:rotate(180deg);
}


@media(max-width:767px){

    .JU-LIB-sidebar{
        position:relative;
        top:auto;
        border-right:none;
        padding-right:0;
    }

    .JU-LIB-menu li a{
        padding:14px 0;
    }

}

.JU-LIB-toggle:hover{
    background:#f9fafb;
}


.JU-CAMPUS-section{
    background:#f3f4f6;
}

.JU-CAMPUS-title{
    font-weight:600;
    font-size:28px;
    color:#0f2b5b;
}
.JU-CAMPUS-desc{
    font-size:16px;
    line-height:1.7;
    color:#6b7280;
    margin:0 auto;
}


.JU-explore-img{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}


.JU-explore-img img{
    width:100%;
    height:auto;
    object-fit:cover;
    transition:transform .6s ease;
}



.JU-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(2,35,102,.92) 0%,
        rgba(2,35,102,.65) 45%,
        rgba(2,35,102,0) 85%
    );
    top:80%;
    opacity:0;
    display:flex;
    align-items:flex:end;
    padding:22px;
    transition:all .45s ease;
}


.JU-overlay-content{
    color:#fff;
    transform:translateY(25px);
    opacity:0;
    transition:all .45s ease;
}

.JU-overlay-content h5{
    font-size:25px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:6px;
}

.JU-overlay-content p{
    font-size:14px;
    opacity:.9;
    margin-bottom:14px;
}

.JU-overlay-btn{
    display:inline-block;
    padding:6px 14px;
    border-radius:6px;
    background:#ffffff;
    color:#022366;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}
.JU-overlay-btn:hover{
    background:#022366;
    color:#fff;
}

.JU-tag{
    position:absolute;
    top:14px;
    left:14px;
    background:rgba(255,255,255,.95);
    color:#111;
    padding:4px 10px;
    font-size:12px;
    border-radius:6px;
    font-weight:500;
    transition:all .35s ease;
    z-index:2;
}
.JU-explore-title{
    font-size:22px;
    font-weight:600;
    color:#1f2937;
}
.JU-explore-card:hover img{
    transform:scale(1.08);
}
.JU-explore-card:hover .JU-overlay{
    opacity:1;
}
.JU-explore-card:hover .JU-overlay-content{
    transform:translateY(0);
    opacity:1;
}
.JU-explore-card:hover .JU-tag{
    background:#022366;
    color:#ffffff;
  }

  @media (min-width:768px){

  .JU-offset-card{
      margin-top:60px;
  }
}

.Sports-hero-wrapper{
    display:flex;
    min-height:520px;
    overflow:hidden;   
}


.Sports-left{
    flex:0 0 55%;
    padding:60px 50px;
    
    flex-direction:column;
    justify-content:center;
}


.Sports-left h3{
    font-size:28px;
    color:#000000;
    font-weight:600;
    margin-bottom:20px;
}

.Sports-left p{
    font-size:14px;
    line-height:1.8;
    opacity:.95;
}


.Sports-right{
    flex:0 0 35%;
    position:relative;
}



@media (max-width:992px){

    .Sports-hero-wrapper{
        flex-direction:column;
    }

    .Sports-left{
        flex:100%;
        padding:40px 30px;
    }

    .Sports-right{
        flex:100%;
        height:350px;
    }

}



.SportsInfra-hero{
    position:relative;
    background-image:url('../../assets/images/sports_web_bg.webp');
    background-size:cover;
    background-position:center;
    min-height:650px;
    overflow:hidden;
    display:flex;
    align-items:center;
}


.SportsInfra-overlay{
    width:100%;
    height:100%;
    padding:80px 0;
}

.SportsInfra-content{
    max-width:600px;
    color:#ffffff;
}

.SportsInfra-tabs .nav-link{
    background:none;
    border:none;
    color:#cbd5e1;
    text-align: left;
    font-size:18px;
    font-weight:500;
    margin:20px 20px 20px 0px;
    padding:0 20px 8px 0;
    position:relative;
}

.SportsInfra-tabs .nav-link.active{
    color:#ffffff;
}

.SportsInfra-tabs .nav-link.active::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:60px;
    height:2px;
    background:#ffffff;
}





.SportsInfra-content p{
    font-size:16px;
    line-height:1.7;
    color:#ffffff;
}

@media (max-width:992px){

    .SportsInfra-overlay{
        padding:50px 20px;
    }

    .SportsInfra-content{
        max-width:100%;
    }

}




.NSS-section h4{
    font-size:22px;
    font-weight:600;
    color:#022366;
}

.NSS-section h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
    color:#022366;
}

.NSS-section p{
    font-size:14px;
    line-height:1.7;
    color:#4b5563;
}


.NSS-card{
    background:#f9fafb;
    border-radius:16px;
    padding:30px;
    border:1px solid #e5e7eb;
}


.NSS-blue-box{
    background:#1e73b5;
    color:#fff;
    padding:30px;
    border-radius:16px;
}

.NSS-blue-box ul{
    padding-left:18px;
    margin:0;
}

.NSS-blue-box li{
    margin-bottom:10px;
    font-size:14px;
}


.NSS-list{
    padding-left:18px;
}

.NSS-list li{
    font-size:14px;
    margin-bottom:8px;
}


.NSS-member{
    background:#f9fafb;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:18px;
    height:100%;
}

.NSS-member h6{
    font-weight:600;
    color:#1e73b5;
    margin-bottom:6px;
}

.NSS-member p{
    margin:0 0 4px;
    font-size:13px;
    color:#4b5563;
}

.NSS-member span{
    font-size:12.5px;
    color:#6b7280;
}




.NSS-aims-bg{
    position:relative;
    background-image:url('../../assets/images/NSS2.webp'); 
    background-size:cover;
    background-position:left center; 
    border-radius:20px;
    overflow:hidden;
    min-height:520px;
    display:flex;
    justify-content:flex-end; 
    align-items:center;
}


.NSS-aims-content{
    width:60%;
    background:linear-gradient(135deg,#1e73b5,#155d91b3);
    color:#ffffff;
    padding:50px 60px;
}


.NSS-aims-content h3{
    font-size:26px;color:#ffffff;
    font-weight:600;
    margin-bottom:20px;
}


.NSS-aims-content p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
   color:#ffffff;
}


.NSS-aims-content ul{
    padding-left:18px;
    margin:0;
}

.NSS-aims-content li{
    font-size:14px;
    line-height:1.6;
    margin-bottom:10px;
}

@media (max-width:992px){

    .NSS-aims-content{
        width:100%;
        padding:35px 25px;
    }

    .NSS-aims-bg{
        min-height:auto;
    }

}



.JU-programmes{
background:#f5f6f8;
}



.JU-section-title{
font-size:clamp(18px,2vw,28px);
font-weight:600;
color:#0f2e5c;
margin-bottom:20px;
}




.JU-tabs{
gap:30px;
margin-bottom:40px;
border-bottom:none;
}

.JU-tabs .nav-link{
border:none;
padding:0;
font-size:15px;
font-weight:500;
color:#6b7280;
position:relative;
}

.JU-tabs .nav-link.active{
color:#0f2e5c;
}

.JU-tabs .nav-link.active::after{
content:"";
position:absolute;
bottom:-8px;
left:0;
width:100%;
height:2px;
background:#0f2e5c;
}




.JU-programme-heading{
font-size:clamp(24px,3vw,26px);
font-weight:600;
color:#0f2e5c;
margin-bottom:30px;
}




.JU-card{
background:#fff;
border-radius:12px;
padding:22px;
transition:all .35s ease;
border:1px solid #eee;
height:100%;
}

.JU-card-inner{
display:flex;
gap:18px;
align-items:flex-start;
}




.JU-card-img{
width:90px;
height:90px;
object-fit:cover;
border-radius:10px;
}




.JU-card-content h5{
font-size:18px;
font-weight:600;
margin-bottom:8px;
color:#0f2e5c;
}

.JU-card-content p{
font-size:14px;
color:#6b7280;
line-height:1.6;
margin-bottom:14px;
}




.JU-icon{
display:inline-flex;
margin-left:6px;
transition:transform .3s ease;
}




.JU-link{
display:inline-flex;
align-items:center;
font-size:14px;
font-weight:500;
text-decoration:none;
color:#0f2e5c;
transition:.3s;
}




.JU-card:hover{
background:#157aa2;
transform:translateY(-3px);
}

.JU-card:hover h5,
.JU-card:hover p,
.JU-card:hover .JU-link{
color:#fff;
}

.JU-card:hover .JU-icon{
transform:translateX(6px);
}




.JU-featured{
background:#157aa2;
border:none;
}

.JU-featured h5,
.JU-featured p{
color:#fff;
}


.JU-icon{
display:inline-flex;
align-items:center;
justify-content:center;
}

.JU-icon svg{
width:40px;
height:40px;
transition:transform .35s ease, stroke .3s ease;
transform:rotate(0deg);
}

.JU-link{
display:inline-flex;
align-items:center;
color:#666;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.JU-card:hover .JU-link{
color:#fff;

}

.JU-card:hover{
background:#157aa2;
}

.JU-card:hover .JU-icon svg{
transform:rotate(45deg);
}


.JU-icon svg path{
stroke:#666767;
transition:.3s;
}

.JU-card:hover .JU-icon svg path{
stroke:#ffffff;
}

.JU-card:hover .JU-icon svg{
transform:rotate(45deg) translateX(3px);
}


.JU-card{
transition:all .35s ease;
}

.JU-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}


@media (max-width:768px){

.JU-card-inner{
gap:14px;
}

.JU-card-img{
width:70px;
height:70px;
}
}


.JU-overview-section{
background:#f5f6f8;
}



.JU-side-menu{
    background:#ffffff;
    border-radius:6px;
    position:sticky;
    top:120px;
    border:1px solid #e5e7eb;
}

.JU-side-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}


.JU-side-menu li{
    border-bottom:1px solid #e5e7eb;
}

.JU-side-menu li:last-child{
    border-bottom:none;
}

.JU-side-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:16px 20px;

    font-size:15px;
    font-weight:500;

    color:#6b7280;
    text-decoration:none;
    transition:all .25s ease;
}

.JU-side-menu li:hover a{
    color:#1e3a8a;
}

.JU-side-menu li.active a{
    color:#1e3a8a;
}

.JU-dot{
    width:10px;
    height:10px;
    background:#1e7fa8;
    display:inline-block;
}


.JU-mobile-nav{
margin-bottom:20px;
}

.JU-mobile-nav a{
display:block;
padding:10px 0;
color:#374151;
text-decoration:none;
font-size:14px;
}

.JU-side-menu li{
position:relative;
}

.JU-side-menu li::before{
content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:3px;
background:#1e7fa8;
opacity:0;
transition:.3s;
}

.JU-side-menu li.active::before{
opacity:1;
}


.JU-content{
background:#fff;
border-radius:6px;
padding:18px;
}

@media (max-width: 767px){
.JU-content{
padding:0;
border-radius:0;
}
}


.JU-title{
font-size:26px;
font-weight:600;
color:#1e3a8a;
margin-bottom:16px;
}

.JU-content p{
font-size:15px;
line-height:1.7;
margin-bottom:14px;
}


.JU-image img{
border-radius:6px;
margin-top:18px;
}

.JU-info-strip{
    background:#f6f7f9;
    border-radius:6px;
}


.JU-info-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.06);
}

.JU-info-icon{
    width: 62px;
    height: 62px;
    justify-content: center;
    align-items: center;
    color:white;padding:15px;
    flex-shrink: 0;
    border-radius: 50%;
    background:#008AC1;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.06);
}

.JU-info-label{
    display:block;
    font-size:16px;
    color:#6b7280;
    margin-bottom:4px;
}

.JU-info-title{
    font-size:16px;
    font-weight:600;
    color:#1f2937;
    margin:0;
}

.JU-info-text{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
    margin:0;
}

.JU-sidebar-accordion .accordion-item{
border:none;
margin-bottom:8px;
}


.JU-sidebar-accordion .accordion-button{
background:#eef0f2;
border-radius:4px;
font-size:16px;
color:#001C54;
font-weight:600;
padding:12px 14px;
box-shadow:none;
}


.JU-sidebar-accordion .accordion-button:not(.collapsed){
background:#e5e7eb;
color:#111827;
}


.JU-sidebar-accordion .accordion-button:focus{
box-shadow:none;
}


.JU-sidebar-accordion .accordion-body{
background:#ffffff;
font-size:14px;
padding:14px;
}

.JU-sidebar-accordion .accordion-button::after{
background-image:none;
content:"+";
font-size:18px;
font-weight:600;
transform:none;
}

.JU-sidebar-accordion .accordion-button:not(.collapsed)::after{
content:"–";
}


.JU-semester-title{
    font-size:18px;
    font-weight:600;
    color:#1e3a8a;
    margin-bottom:14px;
}
.JU-semester-list{
    padding-left:18px;
    margin:0;
}
.JU-semester-list li{
    font-size:14px;
    color:#4b5563;
    line-height:1.7;
}

.JU-semester-col{
    position:relative;
}

@media(min-width:992px){

.JU-semester-col:first-child{
    border-right:1px solid #e5e7eb;
    padding-right:30px;
}

.JU-semester-col:last-child{
    padding-left:30px;
}

}


.JU-value-section{
    background:#ffffff;
}
/*.JU-section-title{
    font-size:24px;
    font-weight:600;
    color:#1e3a8a;
    margin-bottom:20px;
}*/
.JU-program-list{
    margin-bottom:30px;
}
.JU-program-item{
    position:relative;
    padding-left:14px;
    margin-bottom:18px;
}
.JU-program-item::before{
    content:"•";
    position:absolute;
    left:0;
    color:#1e3a8a;
}
.JU-program-item h6{
    font-size:15px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:6px;
}
.JU-program-item p{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
    margin:0;
}
.JU-career-card{
    background:#2c2c2c;
    border-radius:6px;
    padding:28px;
    text-align:center;
    color:#fff;
}
.JU-career-title{
    font-size:20px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:8px;
}
.JU-career-desc{
    font-size:14px;
    color:#ffffff;
    max-width:700px;
    margin:auto;
    margin-bottom:20px;
}
.JU-career-image img{
    border-radius:4px;
}
.JU-career-section{
    background:#ffffff;
}
.JU-career-heading{
   font-size: 24px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.JU-career-item{
    display:flex;
    align-items:flex-start; /* better when text goes to next line */
    gap:10px;
    font-size:14px;
    color:#374151;
}

.JU-career-icon{
    width:38px;
    height:38px;
    min-width:38px;   
    flex-shrink:0;    
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.JU-career-icon img{
    width:100%;
    height:auto;
}

.JU-career-text{
    font-size:16px;
    font-weight:400;
    color:#4b5563;
    line-height:1.5;
}
.JU-pathways-card{
    border-radius:6px;
    overflow:hidden;
    display:block;
}


.JU-career-item{
display:flex;
align-items:flex-start;
gap:10px;
padding:12px 12px;
font-size:14px;
color:#374151;
border-radius:8px;
background:#fff;
transition:all .3s ease;
}

/* border only for mobile */
@media(max-width:991px){
.JU-career-item{
border:1px solid silver;
}
}

.JU-career-item:hover{
border-color:#022366;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.JU-career-slider{
padding-bottom:10px;
}

.JU-career-slider .swiper-slide{
height:auto;
}

@media(min-width:992px){

.JU-career-slider .swiper-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.JU-career-slider .swiper-slide{
width:auto !important;
}

}





.JU-pathways-image{
    height:100%;
    position:relative;
}

.JU-pathways-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.JU-pathways-image::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:90px;
    height:100%;
}
.JU-pathways-content{
    background: linear-gradient(105deg, #001C54 0%, #0089C6 107.89%), #D9D9D9;
    color:#fff;
    padding:34px 36px;
    height:100%;
}
.JU-pathways-title{
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:10px;
}
.JU-pathways-subtitle{
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    margin-top:22px;
    margin-bottom:10px;
}

.JU-pathways-list{
    padding-left:0;
    margin:0;
    list-style:none;
}
.JU-pathways-list li{
    font-size:13px;
    line-height:1.5;
    margin-bottom:4px;
    position:relative;
    padding-left:14px;
}
.JU-pathways-list li::before{
    content:"•";
    position:absolute;
    left:0;
    color:#ffffff;
}


.JU-anti-ragging{
background:#f8f9fb;
}

/*.JU-section-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
}*/

.JU-section-subtitle{
font-size:22px;
font-weight:600;
color:#1e3a8a;
}

.JU-text{
color:#555;
font-size:15px;
line-height:1.7;
margin-bottom:14px;
}

.JU-list{
padding-left:18px;
margin-bottom:18px;
}

.JU-list li{
margin-bottom:8px;
color:#555;
font-size:15px;
}

.JU-member-card{
background:#fff;
border-radius:10px;
padding:20px;
border:1px solid #e6e6e6;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
height:100%;
}

.JU-member-card h5{
color:#1e73be;
font-size:16px;
font-weight:600;
margin-bottom:6px;
}

.JU-member-card p{
font-size:14px;
color:#666;
margin-bottom:2px;
}

.JU-member-card span{
font-size:14px;
color:#777;
}

.JU-sexual-harassment{
background:#f8f9fb;
}

/*.JU-section-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
}*/

.JU-section-subtitle{
font-size:22px;
font-weight:600;
color:#1e3a8a;
}

.JU-text{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:14px;
}

.JU-list{
padding-left:18px;
margin-bottom:20px;
}

.JU-list li{
margin-bottom:8px;
color:#555;
}



.JU-grievance-section{
background:#f8f9fb;
}

/*.JU-section-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
}*/

.JU-section-subtitle{
font-size:22px;
font-weight:600;
color:#1e3a8a;
}

.JU-text{
font-size:15px;
line-height:1.7;
color:#555;
}



.JU-grievance-box{
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:25px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.JU-box-title{
font-size:20px;
font-weight:600;
color:#1e3a8a;
}

.JU-list{
padding-left:18px;
}

.JU-list li{
margin-bottom:12px;
font-size:14.5px;
color:#555;
line-height:1.6;
}


.JU-eoc-section{
background:#ffffff;
}

/*.JU-section-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
line-height:1.3;
}*/

.JU-subtitle{
font-size:22px;
font-weight:600;
color:#1e3a8a;
}

.JU-section-text{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:14px;
}


.JU-check-list{
list-style:none;
padding:0;
margin:0;
}

.JU-check-list li{
position:relative;
padding-left:28px;
margin-bottom:14px;
margin-left:15px;
font-size:15px;
color:#555;
line-height:1.6;
}

.JU-check-list li::before{
content:"✓";
position:absolute;
left:0;
top:0;
width:18px;
height:18px;
border-radius:50%;
background:#e8f2ff;
color:#1e73be;
font-size:12px;

display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}


.JU-eoc-image{
border-radius:10px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.JU-eoc-image img{
width:100%;
height:auto;
display:block;
}

.JU-women-cell-section{
background:#f8f9fb;
}



.JU-women-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
}



.JU-women-helpline{
font-size:13px;
background:#f1f5f9;
padding:6px 12px;
border-radius:20px;
color:#555;
border:1px solid #e5e7eb;
}



.JU-women-desc{
font-size:15px;
color:#555;
line-height:1.7;
}



.JU-women-initiative-box{
background:#fff;
border-radius:10px;
padding:24px;
border:1px solid #e5e7eb;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}



.JU-women-subtitle{
font-size:20px;
font-weight:600;
color:#1e3a8a;
margin-bottom:14px;
}



.JU-women-list{
padding-left:18px;
}

.JU-women-list li{
margin-bottom:12px;
font-size:15px;
color:#555;
line-height:1.6;
}



.JU-women-members-title{
font-size:22px;
font-weight:600;
color:#1e3a8a;
}

.JU-complaint-process{
background:#f8f9fb;
}

.JU-complaint-title{
font-size:28px;
font-weight:600;
color:#1e3a8a;
}

.JU-complaint-desc{
font-size:15px;
color:#666;
max-width:850px;
}




.JU-process-wrapper{
position:relative;
}



.JU-process-wrapper::before{
content:"";
position:absolute;
top:46px;
left:8%;
width:84%;
border-top:2px dashed #1e73be;
z-index:0;
}




.JU-process-step{
position:relative;
z-index:2;
}




.JU-step-circle{
width:54px;
height:54px;
border-radius:50%;
border:2px solid #1e73be;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
color:#1e73be;
background:#fff;
margin:0 auto 16px;
}




.JU-step-text{
font-size:15px;
line-height:1.6;
color:#555;
max-width:260px;
margin:auto;
}


.JU-LS1-section{background:#f8f9fb}
.JU-LS-title{font-size:30px;font-weight:600;color:#1e3a8a;margin-bottom:10px}
.JU-LS-desc{font-size:15px;color:#555;line-height:1.7}
.JU-LS-image{border-radius:10px}
.JU-LS-subtitle{font-size:24px;font-weight:600;color:#1e3a8a;margin-bottom:20px}
.JU-LS-facts-box{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:10px}
.JU-LS-fact{padding:20px;position:relative}
.JU-LS-fact:not(:last-child)::after{content:"";position:absolute;right:0;top:25%;height:50%;width:1px;background:#e5e7eb}
.JU-LS-icon{width:45px;margin-bottom:10px}
.JU-LS-fact h6{font-size:14px;color:#555;margin-bottom:4px;font-weight:600;}
.JU-LS-fact span{color:#1e73be;font-weight:600;font-size:16px}

.JU-campus-facilities{background:#ffffff}
.JU-fac-title{font-size:24px;font-weight:600;color:#1e3a8a;margin-bottom:10px}
.JU-fac-desc{font-size:15px;color:#555;line-height:1.7;margin-bottom:18px}
.JU-fac-img{border-radius:10px}
.JU-wide-img{border-radius:10px;width:100%}
.JU-fac-list{padding-left:18px}
.JU-fac-list li{margin-bottom:8px;font-size:14px;color:#555}
.JU-fac-list span{color:#008AC1;font-weight:600}
.JU-lab-image{margin-top:50px}
.JU-lab-section{margin-top:40px}

.JU-campus-cta{}
.JU-cta-wrapper{
background:linear-gradient(94deg,rgba(0,118,178,.85) 14.16%,rgba(1,35,91,.9) 84.78%),url("../../assets/images/facilities/LearningSpaces-06.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
border-radius:12px;
padding:60px 40px;
color:#fff;
box-shadow:0 6px 20px rgba(0,0,0,.15);
}

.JU-cta-text{
font-size:18px;
max-width:720px;
margin:auto;
margin-bottom:25px;
line-height:1.6
}

.JU-cta-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:#fff;
color:#1e3a8a;
padding:12px 26px;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:.3s
}

.JU-cta-btn:hover{
transform:translateY(-2px)
}


.JU-event-spaces{background:#f8f9fb}
.JU-ev-header{max-width:720px;margin:auto;}
.JU-ev-title{font-size:30px;font-weight:600;color:#1e3a8a;margin-bottom:8px}
.JU-ev-desc{font-size:15px;color:#555;line-height:1.6}
.JU-ev-block{margin-top:50px}
.JU-ev-subtitle{font-size:24px;font-weight:600;color:#1e3a8a;margin-bottom:10px}
.JU-ev-text{font-size:15px;color:#555;line-height:1.6;margin-bottom:16px}
.JU-ev-img{border-radius:10px;width:100%}
.JU-ev-list{padding-left:18px}
.JU-ev-list li{margin-bottom:7px;font-size:14px;color:#555}
.JU-ev-list span{color:#1e73be;font-weight:600}

.vasaviplacements{background:#f8f9fb}

.vasaviplacements-wrapper{position:relative}

.vasaviplacements-content{
background:#0d2c5a;
padding:50px;
border-radius:10px;
color:#fff
}

.vasaviplacements-title{
font-size:28px;
color:#ffffff;
font-weight:600;
margin-bottom:18px
}

.vasaviplacements-text{
font-size:16px;color:#ffffff;
line-height:1.7;
margin-bottom:12px;
}

.vasaviplacements-image{
position:relative;
margin-left:-60px
}

.vasaviplacements-image img{
width:100%;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,.2)
}

@media(max-width:991px){

.vasaviplacements-image{
margin-left:0;
margin-top:30px
}

.vasaviplacements-content{
padding:35px
}

.vasaviplacements-title{
font-size:26px;
color:#ffffff;
font-weight:600;
margin-bottom:18px
}

.vasaviplacements-image img
{
display:none;
}

}



.vasaviplacements-fastfacts{
background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),url("../../assets/images/PlacementFastFacts.webp");
background-size:cover;
background-position:center;
padding:80px 0;
color:#fff
}

.vasaviplacements-fastfacts-title{
font-size:36px;
color:#ffffff;
font-weight:600;
line-height:1.2
}

.vasaviplacements-stat-card{
background:rgba(255,255,255,.08);
border-radius:12px;
padding:40px 30px;
text-align:center;
backdrop-filter:blur(6px);
border:1px solid rgba(255,255,255,.2);
position:relative;
color:#fff
}

.vasaviplacements-stat-card h3{
font-size:46px;
font-weight:600;
color:#ffffff;
margin-bottom:18px
}

.vasaviplacements-divider{
height:1px;
width:100%;
background:rgba(255,255,255,.35);
margin:10px 0 16px 0
}

.vasaviplacements-stat-card p{
font-size:15px;color:#ffffff;
opacity:.9
}

@media (max-width:992px){


.vasaviplacements-fastfacts-title{
font-size:28px;
color:#ffffff;
margin-bottom:20px;
font-weight:600;
line-height:1.2
}

.vasaviplacements-stat-card h3{
font-size:26px;
font-weight:600;
color:#ffffff;
margin-bottom:18px
}

.vasaviplacements-stat-card p{
font-size:14px;color:#ffffff;
opacity:.9
}

}

.vasaviplacements-stat-card::before,
.vasaviplacements-stat-card::after{
content:"";
position:absolute;
width:6px;
height:6px;
background:#fff;
border-radius:50%
}

.vasaviplacements-stat-card::before{
top:12px;
left:12px
}

.vasaviplacements-stat-card::after{
top:12px;
right:12px
}



.vasaviplacements-stat-card span::before,
.vasaviplacements-stat-card span::after{
content:"";
position:absolute;
width:6px;
height:6px;
background:#fff;
border-radius:50%;
bottom:12px
}

.vasaviplacements-stat-card span::before{
left:12px
}

.vasaviplacements-stat-card span::after{
right:12px
}


.placements-section{
background:#ffffff;
}

.placements-title{
font-weight:600;
font-size:34px;
color:#1f3559;
}



.placements-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
position:relative;
}



.placement-item{
padding:40px 30px;
min-height:220px;
}



.placement-item:nth-child(4n+1),
.placement-item:nth-child(4n+2),
.placement-item:nth-child(4n+3){
border-right:1px solid #bdbdbd;
}



.horizontal-line{
position:absolute;
top:50%;
left:0;
width:100%;
height:1px;
background:#bdbdbd;
}



.dot{
position:absolute;
top:50%;
width:8px;
height:8px;
background:#7a7a7a;
border-radius:50%;
transform:translate(-50%,-50%);
}

.dot1{ left:25%; }
.dot2{ left:50%; }
.dot3{ left:75%; }

.placements-spotlight{
overflow:hidden;
position:relative;
padding-bottom:20px;
}

.spotlight-track{
display:flex;
gap:18px;
overflow-x:auto;
scroll-snap-type:x mandatory;
padding:10px 20px;
scroll-behavior:smooth;
}

.spotlight-track::-webkit-scrollbar{
display:none;
}

.spotlight-card{
flex:0 0 78%;
scroll-snap-align:center;
background:#fff;
padding:28px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:transform .35s ease;
}

.spotlight-card:hover{
transform:translateY(-6px);
}

.company-logo{
height:34px;
margin-bottom:14px;
}

.role{
font-size:14px;
color:#6b7280;
}

.package{
font-size:26px;
font-weight:700;
color:#022366;
margin:8px 0;
}

.name{
font-weight:600;
}

.batch{
font-size:13px;
color:#777;
}

.company-logo{
height:32px;
margin-bottom:8px;
}

.role{
font-size:14px;
color:#444;
margin-bottom:10px;
}

.package{
font-size:30px;
font-weight:600;
margin-bottom:10px;
}

.name{
font-weight:600;
margin-bottom:2px;
}

.batch{
font-size:14px;
color:#666;
}


.placement-policy{
background:#f5f6f8;
}



.policy-banner{
background:linear-gradient(94deg,rgba(0,118,178,.85) 14.16%,rgba(1,35,91,.9) 84.78%),url("../../assets/images/facilities/LearningSpaces-06.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
border-radius:12px;
padding:80px 80px;
color:#fff;
box-shadow:0 6px 20px rgba(0,0,0,.15);
}
}





.policy-content{
position:relative;
z-index:2;
max-width:850px;
margin:auto;
}

.policy-text{
color:#fff;
font-size:18px;
line-height:1.6;
margin-bottom:30px;
}



.policy-buttons{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.policy-btn{
background:#fff;
color:#333;
padding:12px 28px;
border-radius:40px;
text-decoration:none;
font-weight:500;
display:inline-flex;
align-items:center;
gap:10px;
transition:all .3s ease;
}

.policy-btn:hover{
background:#e9ecef;
}

.arrow{
font-size:14px;
}

.carousel-item img{
height:auto;
object-fit:cover;
}

.JU-governing-section{
background:#f5f6f8;
}

.JU-governing-tabs{
border-radius:10px;
overflow:hidden;
border:1px solid #dcdcdc;
width:fit-content;
margin:auto;
}

.JU-governing-tabs .nav-link{
padding:14px 30px;
font-weight:600;
color:#666;
border:none;
background:#efefef;
}

.JU-governing-tabs .nav-link.active{
background:#0b2c5f;
color:#fff;
}

/*.JU-section-title{
font-weight:600;
color:#1a2e4f;
letter-spacing:1px;
}*/

.juvasvaibutton{
position:relative;
display:inline-flex;
align-items:center;
gap:10px;
padding:6px 22px;
font-size:16px;
font-weight:600;
background:#f8f9fa;
border:2px solid #f8f9fa;
border-radius:50px;
overflow:hidden;
cursor:pointer;
transition:color .4s ease;
z-index:1;
}



.juvasvaibutton::before{
content:"";
position:absolute;
width:100%;
height:100%;
left:-100%;
top:0;
background: #008AC1;
transition:all .6s ease;
z-index:-1;
border-radius:50px;
}

.juvasvaibutton:hover::before{
left:0;
}

.juvasvaibutton:hover{
color:#fff;
}



.juvasvaibutton-icon{
width:34px;
height:34px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
border:1px solid #333;
transition:.4s;
transform:rotate(45deg);
background:#fff;
}

.juvasvaibutton-icon svg{
width:14px;
height:14px;
fill:#222;
}



.juvasvaibutton:hover .juvasvaibutton-icon{
transform:rotate(90deg);
background:#fff;
border:none;
}

.word-slider{
    display:inline-block;
    height:30px;
    overflow:hidden;
    vertical-align:bottom;
}

.words{
    display:flex;
    flex-direction:column;
    animation: wordScroll 6s infinite;
}

.words span{
    height:30px;
    line-height:30px;
    font-size:24px;
    font-weight:600;
    color:#068ECE;
}

@keyframes wordScroll{

0%{ transform:translateY(0); }

30%{ transform:translateY(0); }

35%{ transform:translateY(-30px); }

65%{ transform:translateY(-30px); }

70%{ transform:translateY(-60px); }

95%{ transform:translateY(-60px); }

100%{ transform:translateY(0); }

}


.word-slider{
margin-left:5px;
}


.vasavi-contact-premium{
position:relative;
padding:120px 0;
overflow:hidden;
}



.map-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

.map-bg iframe{
width:100%;
height:100%;
border:0;
filter:grayscale(40%) contrast(90%);
}




.contact-wrapper{
position:relative;
z-index:2;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}




.contact-card{
background:rgba(255,255,255,0.92);
backdrop-filter:blur(12px);
padding:35px;
border-radius:20px;
box-shadow:0 25px 50px rgba(0,0,0,0.15);
text-align:center;
transition:.35s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 35px 60px rgba(0,0,0,0.2);
}




.icon-circle{
width:60px;
height:60px;
border-radius:50%;
background:#022366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
margin:0 auto 15px;
position:relative;
}



.icon-circle::after{
content:"";
position:absolute;
width:60px;
height:60px;
border-radius:50%;
border:2px solid #022366;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1);opacity:1}
100%{transform:scale(1.6);opacity:0}
}




.contact-card h5{
font-weight:600;
margin-top:10px;
color:#022366;
margin-bottom:10px;
}

.contact-card p{
color:#555;
margin-bottom:10px;
}




.contact-btn{
display:inline-block;
padding:8px 20px;
border-radius:30px;
background:#022366;
color:#fff;
text-decoration:none;
font-size:14px;
}

.contact-btn:hover{
background:#011a4d;
}




.phone-link{
display:block;
font-weight:600;
color:#022366;
text-decoration:none;
}

.phone-link:hover{
text-decoration:underline;
}




@media (max-width:992px){

.contact-wrapper{
grid-template-columns:1fr;
}

.vasavi-contact-premium{
padding:70px 0;
}

.placements-title{
font-weight:600;
font-size:26px;
color:#1f3559;
}

}



#backToTop{
    position:fixed;
    right:30px;
    bottom:40px;

    width:70px;
    height:70px;

    border:none;
    cursor:pointer;

    z-index:99999; /* very high so it never hides */

    border-radius:50%;

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

    background:#022366; /* brand color */
    color:#fff;

    opacity:0;
    visibility:hidden;

    transform:translateY(50px) scale(.85);

    transition:all .45s cubic-bezier(.19,1,.22,1);

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}



#backToTop.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}



.progress-ring{
    position:absolute;
    transform:rotate(-90deg);
}

.progress-ring-circle{
    stroke:#ffffff;
    stroke-linecap:round;
    transition:stroke-dashoffset .2s linear;
}



.bt-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:600;
    color:#fff;
}

.bt-content i{
    font-size:18px;
    margin-top:2px;
}



#backToTop:hover{
    background:#0434a5;
    transform:translateY(-6px) scale(1.05);
    box-shadow:
    0 15px 35px rgba(2,35,102,.45);
}



@media(max-width:768px){

#backToTop{
    right:18px;
    bottom:90px;
    width:60px;
    height:60px;
}

}


.conversion-bar{
position:fixed;
bottom:-120px;
left:0;
width:100%;
display:flex;
justify-content:center;
gap:40px;
padding:14px;
background: linear-gradient(120deg, rgb(0, 34, 91,0.85), rgb(0, 137, 198,0.85));
backdrop-filter:blur(9px);
z-index:9999;
transition:.4s;
}

.conversion-bar.show{
bottom:0;
}

.bar-item{
display:flex;
align-items:center;
gap:8px;
color:#fff !important;
border:1px solid rgba(255,255,255,0.5);
text-decoration:none;
font-size:15px;
padding:8px 18px;
border-radius:30px;
}


.mobile-action-bar{
position:fixed;
bottom:-100px;
left:50%;
transform:translateX(-50%);
width:95%;
border:1px solid silver;
background:#fff;
box-shadow:0 8px 30px rgba(0,0,0,0.15);
border-radius:50px;
display:flex;
justify-content:space-around;
padding:8px;
z-index:9999;
transition:.4s;
}

.mobile-action-bar.show{
bottom:5px;
}

.action-item{
flex:1;
text-align:center;
font-size:11px;
color:#333;
text-decoration:none;
display:flex;
flex-direction:column;
align-items:center;
}

.action-item i{
font-size:18px;
color:#022366;
}



.JU-EP-mobile-card{
display:flex;
align-items:center;
gap:14px;
padding:16px;
background:#fff;
border-radius:10px;
margin-bottom:12px;
text-decoration:none;
box-shadow:0 4px 14px rgba(0,0,0,0.06);
}

.JU-EP-mobile-card i{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
background:#f1f4ff;
color:#022366;
border-radius:8px;
font-size:18px;
}

.JU-EP-mobile-card div{
flex:1;
}

.JU-EP-mobile-card h6{
margin:0;
font-size:15px;
font-weight:600;
color:#022366;
}

.JU-EP-mobile-card p{
margin:2px 0 0;
font-size:13px;
color:#6b7280;
}

.JU-EP-mobile-card span{
font-size:18px;
color:#022366;
}

.JU-about-slider{
padding-bottom:10px;
}

@media (min-width:992px){

.JU-about-slider .swiper-wrapper{
display:flex;
gap:10px;
}

.JU-about-slider .swiper-slide{
width:auto;
flex:1;
}

}


.JU-APF2-mobile .accordion-button{
font-weight:600;
color:#022366;
}

.JU-APF2-mobile .accordion-button:not(.collapsed){
background:#022366;
color:#fff;
}

.JU-APF2-mobile .accordion-body{
font-size:15px;
line-height:1.6;
color:#555;
}

.JU-section-title1{
font-weight:600 !important;
margin-bottom:10px ;
}


@media (max-width:768px){

/* hide desktop tabs */
.JU-governing-tabs{
display:none;
}

/* convert tab panes to accordion blocks */
.JU-governing-section .tab-pane{
display:block !important;
opacity:1 !important;
margin-bottom:15px;
border:1px solid #e5e7eb;
border-radius:10px;
overflow:hidden;
}

/* accordion header */
.JU-section-title1{
background:#f5f6f7;
color:#022366;
font-size:16px;
font-weight:600 !important;
padding:14px 18px;
margin-bottom:10px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
}

/* modern arrow icon */
.JU-section-title1::after{
content:"";
width:10px;
height:10px;
border-right:2px solid currentColor;
border-bottom:2px solid currentColor;
transform:rotate(-45deg);
transition:transform .3s ease;
}

/* active accordion */
.JU-governing-section .active-accordion .JU-section-title{
background:#022366;
color:#fff;
}

/* rotate arrow */
.JU-governing-section .active-accordion .JU-section-title::after{
transform:rotate(45deg);
}

/* collapsed content */
.JU-governing-section .row{
display:none;
padding:15px;
animation:fadeAccordion .35s ease;
}

/* active content */
.JU-governing-section .active-accordion .row{
display:flex;
}

/* member cards */
.JU-member-card{
background:#fff;
padding:16px;
border-radius:8px;
box-shadow:0 6px 16px rgba(0,0,0,.06);
}

/* smooth opening animation */
@keyframes fadeAccordion{
from{
opacity:0;
transform:translateY(-6px);
}
to{
opacity:1;
transform:translateY(0);
}
}

}


section[id]{
scroll-margin-top:150px;
}



.JU-program-hero{
position:relative;
width:100%;
overflow:hidden;
}

.JU-hero-bg{
background-size:cover;
background-position:center;
padding:150px 0;
position:relative;
color:#fff;
display:flex;
align-items:center;
}

/* overlay */
.JU-hero-bg::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.JU-hero-bg .container{
position:relative;
z-index:2;
}

.JU-hero-title{
font-size:42px;
font-weight:600;
color:white;
margin-bottom:10px;
}

.JU-hero-breadcrumb{
font-size:15px;
}

.JU-hero-breadcrumb a{
color:#fff;
text-decoration:none;
}

/* Tablet */
@media (max-width:992px){

.JU-hero-bg{
padding:110px 0;
}

.JU-hero-title{
font-size:36px;
}

}

/* Mobile */
@media (max-width:576px){

.JU-hero-bg{
padding:80px 0;
}

.JU-hero-title{
font-size:26px;
line-height:1.3;
}

.JU-hero-breadcrumb{
font-size:13px;
}

}