@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url('https://fonts.cdnfonts.com/css/refina');

/* root */
:root {
  --primary-color: #005C34;
  --secondary-color: #FFC50F;
  --tertiary-color: #5D802B;
  --lightbg-color: #F2EAD3;
  --color-body: #FFFDF6;
  --color-text: #212121;
  --heading-color: #123524;
  --line-color: #eee;
  --white-color: #ffffff;
  --black-color: #000000;
  --color-design: #edf2f8;
  --color-research: #f5f5f5;
  --f-light: 300;
  --f-regular: 400;
  --f-medium: 500;
  --f-semi-bold: 600;
  --f-bold: 700;
  --f-extra-bold: 800;
  --f-black: 900;
  --translate: translate(-50%, -50%);
  --transition: all 0.4s ease;
  --font-primary: 'Refina', sans-serif;
  --font-secondary: "Inter Tight", sans-serif;
  --h1: 64px;
  --lh-h1: 72px;
  --h2: 48px;
  --lh-h2: 56px;
  --h3: 40px;
  --lh-h3: 48px;
  --h4: 36px;
  --lh-h4: 44px;
  --h5: 24px;
  --lh-h5: 32px;
  --h6: 20px;
  --lh-h6: 28px;
  --p-1: 20px;
  --line-height-p-1: 1.5;
  --p-2: 16px;
  --line-height-p-1: 1.5;
}

/*------------------------------------------
	= HTML
	-------------------------------------------*/

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--color-text);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--black-color);
  outline: none;
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: var(--secondary-color);
}

/*------------------------------------------
	= Body
	-------------------------------------------*/
body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--white-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------------
	= headings
	-------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.common-title h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/*------------------------------------------
	= Paragraph
	-------------------------------------------*/

p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  margin-bottom: 15px;
}

/*------------------------------------------
	= Link
	-------------------------------------------*/

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/*------------------------------------------
	= List
	-------------------------------------------*/

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  line-height: 1.7;
}

/*------------------------------------------
	= Button
	-------------------------------------------*/

button,
input,
textarea,
select {
  font: inherit;
  outline: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.btn-kecs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,
      #84c225,
      #5f8f16);
  color: var(--white-color);
  text-decoration: none;
  overflow: hidden;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}

/* glass shine */
.btn-kecs::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.btn-kecs:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--white-color);
}

.btn-kecs:hover::before {
  left: 130%;
}

/*------------------------------------------
	= Responsive Typography
	-------------------------------------------*/
@media (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.7;
  }
  ul li,
  ol li{
    font-size: 14px;
    line-height: 1.7;
  }
}

/*------------------------------------------
	= Header Top
	-------------------------------------------*/
.topbar {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: none;
  z-index: 999;
  margin: auto;
  align-items: center;
  left: 0;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  top: 0;
  transform: translateY(0);
  margin-top: 24px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
}

.topbar .item {
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  font-weight: var(--f-medium);
}

.topbar .item.cbsc {
  margin-right: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.topbar .item a {
  padding: 10px 0px;
  display: flex;
  color: var(--white-color);
  line-height: 20px;
  font-weight: var(--f-regular);
}

.topbar .item a i {
  width: 19px;
  margin-right: 5px;
  opacity: 0.7;
}

.topbar .item a:hover {
  color: var(--primary-color);
}

.topbar .btn-navbar {
  display: flex;
  gap: 10px;
}

.topbar .btn-navbar a {
  background-color: var(--secondary-color);
  color: var(--color-text);
  padding: 8px 10px;
  font-weight: var(--f-regular);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.topbar .btn-navbar a:nth-child(2) {
  background-color: var(--tertiary-color);
  color: var(--white-color);
}

@media(max-width:767px) {
  .topbar {
    display: none;
  }
}

.neo-login-btn-ylw {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,
      #fcd555,
      #FFC50F);
  color: var(--white-color);
  text-decoration: none;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}

.neo-login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,
      #84c225,
      #5f8f16);
  color: var(--white-color);
  text-decoration: none;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}

/* glass shine */
.neo-login-btn-ylw::before,
.neo-login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.neo-login-btn-ylw:hover,
.neo-login-btn:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--white-color);
}

.neo-login-btn-ylw:hover::before,
.neo-login-btn:hover::before {
  left: 130%;
}

.neo-login-btn-ylw .btn-icon,
.neo-login-btn .btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.neo-login-btn .btn-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.neo-login-btn-ylw .btn-icon img {
  filter: brightness(0) invert(0);
  -webkit-filter: brightness(0) invert(0);
}

.neo-login-btn-ylw:hover .btn-icon img,
.neo-login-btn:hover .btn-icon img {
  transform: scale(1.12) rotate(-8deg);
}

.neo-login-btn-ylw .btn-text,
.neo-login-btn .btn-text {
  position: relative;
  z-index: 2;
}

.topbar .box {
  display: flex;
}

.social-icon-style-08 ul li a:hover {
  opacity: .5;
  color: var(--color-text) !important
}

.social-icon-style-08 ul.light li a:hover {
  opacity: .5;
  color: var(--white-color) !important
}

.social-icon-style-09 ul li a {
  z-index: 9;
  border: 1px solid rgba(35, 35, 35, .15);
  border-radius: 100%;
  position: relative
}

.social-icon-style-09 ul li a:hover {
  color: var(--white-color) !important
}

.social-icon-style-09 ul li a:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

.social-icon-style-09 ul li a span {
  display: block;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  top: -1px;
  left: -1px;
  padding: 1px;
  box-sizing: content-box;
  margin: 0;
  position: absolute;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: .5s cubic-bezier(.12, 0, .39, 0);
  transition: .5s cubic-bezier(.12, 0, .39, 0);
  pointer-events: none;
  z-index: -1;
  background-color: var(--color-design)
}

.social-icon-style-09 ul.light li a {
  border-color: rgba(255, 255, 255, .3)
}

.elements-social .light li a {
  color: var(--white-color)
}

.elements-social .light li a i:hover {
  color: var(--color-text)
}

.elements-social .dark li a {
  color: var(--color-design)
}

.elements-social .icon-with-animation a:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}

.social-icon-style-01 ul li a:hover {
  color: var(--color-design) !important
}


.social-icon-style-03 ul li a {
  color: var(--white-color);
  border-radius: 100%;
  -webkit-transition: .4s cubic-bezier(.12, 0, .39, 0);
  transition: .4s cubic-bezier(.12, 0, .39, 0);
  -moz-transition: .4s cubic-bezier(.12, 0, .39, 0);
  -ms-transition: .4s cubic-bezier(.12, 0, .39, 0);
  -o-transition: .4s cubic-bezier(.12, 0, .39, 0);
}

.social-icon-style-04 ul li a:hover,
.social-icon-style-05 ul li a:hover {
  color: var(--white-color) !important
}

.social-icon-style-03 ul li a:hover {
  background-color: var(--white-color) !important;
  box-shadow: 0 0 30px rgba(23, 23, 23, .25);
  transform: translate3d(0, -3px, 0)
}

.elements-social ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0
}

.elements-social ul li {
  display: inline-block
}

.elements-social ul li:first-child {
  margin-left: 0 !important
}

.elements-social ul li:last-child {
  margin-right: 0 !important
}

.elements-social ul li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: .3s cubic-bezier(.12, 0, .39, 0);
  transition: .3s cubic-bezier(.12, 0, .39, 0)
}

.extra-small-icon li {
  margin: 0 2px
}

.extra-small-icon a {
  font-size: 14px;
  width: 30px;
  height: 30px
}

.small-icon li {
  margin: 0 5px
}

.small-icon a {
  font-size: 18px;
  width: 40px;
  height: 40px
}

.medium-icon li {
  margin: 0 8px
}

.medium-icon a {
  font-size: 20px;
  width: 50px;
  height: 50px
}

.large-icon li {
  margin: 0 10px
}

.large-icon a {
  font-size: 24px;
  width: 60px;
  height: 60px
}

.extra-large-icon li {
  margin: 0 12px
}

.extra-large-icon a {
  font-size: 30px;
  width: 70px;
  height: 70px
}

.social-icon a {
  margin: 0 15px
}

/*------------------------------------------
	= Header
	-------------------------------------------*/

.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  width: 100%;
}

.header.v__3 .header__wrapper {
  padding: 0 30px;
}

.header__center__content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

/* LEFT */

.header__menu:first-child {
  justify-content: flex-end;
  padding-right: 80px;
}

/* RIGHT */

.header__menu:last-child {
  justify-content: flex-start;
  padding-left: 80px;
}

@media(max-width:1600px) {

  .header__menu:first-child {
    padding-right: 80px;
  }

  .header__menu:last-child {
    padding-left: 80px;
  }

}

/*==================================================
LAPTOP
==================================================*/

@media(max-width:1399px) {

  .header.v__3 .header__wrapper {
    padding: 0 20px;
  }

  .header__menu:first-child {
    padding-right: 85px;
  }

  .header__menu:last-child {
    padding-left: 85px;
  }

}

/*==================================================
SMALL LAPTOP
==================================================*/

@media(max-width:1299px) {

  .header__menu:first-child {
    padding-right: 60px;
  }

  .header__menu:last-child {
    padding-left: 60px;
  }

}

/*==================================================
TABLET & MOBILE
==================================================*/

@media(max-width:1200px) {

  .header__wrapper {
    min-height: 100px;
    padding: 0 15px;
  }

  .header.v__3 .header__wrapper {
    padding: 0 15px;
  }

  .header__center__content {
    justify-content: space-between;
  }

  .header__menu {
    display: none !important;
  }

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:767px) {

  .header__wrapper {
    min-height: 85px;
  }

  .header.v__3 .header__wrapper {
    padding: 0 12px;
  }

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px) {

  .header__wrapper {
    min-height: 80px;
  }

  .header.v__3 .header__wrapper {
    padding: 0 10px;
  }

}

@media (min-width: 1201px) {
  .header__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* hide mobile menu/search */
  .header__right {
    display: none !important;
  }
}

@media (max-width: 1200px) {

  .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header__right {
    display: flex !important;
  }
}

@media (min-width: 1201px) {
  .header__right {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .header__right {
    display: flex !important;
  }
}

@media screen and (max-width: 1200px) {
  .header__menu {
    display: none;
  }
}

.header__right--item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__right--item .menu__trigger,
.header__right--item .lang__trigger,
.header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}

.header__right--item .lang__trigger,
.header__right--item .search__trigger {
  font-size: 18px;
  color: var(--white-color);
}

.header__right--item .lang__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  min-width: 90px;
  max-width: 90px;
}

.header__right--item .lang__trigger .selected__lang {
  font-size: 14px;
}

.header__right--item .lang__trigger .translate__lang {
  position: absolute;
  top: 200%;
  background: var(--white-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 11px rgba(0, 0, 0, 0.1);
}

.header__right--item .lang__trigger .translate__lang.show {
  opacity: 1;
  visibility: visible;
}

.header__right--item .lang__trigger .translate__lang ul {
  padding: 10px 15px;
  margin: 0;
  list-style: none;
}

.header__right--item .lang__trigger .translate__lang ul li {
  font-size: 14px;
  line-height: 1;
}

.header__right--item .menu__trigger img {
  filter: invert(1);
  -webkit-filter: invert(1);
}

@media screen and (max-width: 1200px) {
  .header.v__3 {
    padding: 15px 0;
  }
}

.header.v__3 .header__wrapper {
  margin-top: 0;
  padding: 0 24px;
}

@media screen and (max-width: 1200px) {
  .header.v__3 .header__wrapper {
    padding: 0 15px;
  }
}

/* .header.v__3 .header__center__content {
  display: flex;
  gap: 64px;
  align-items: center;
} */
.header.v__3 .header__social__link {
  display: flex;
  gap: 25px;
  color: #A7A7A7;
}

@media screen and (max-width: 576px) {
  .header.v__3 .header__social__link {
    display: none;
  }
}

.header.v__3 .header__social__link a {
  font-size: 20px;
  transition: var(--transition);
}

.header.v__3 .header__social__link a:hover {
  color: var(--primary-color);
}

.header.v__3 .navigation__menu--item:hover .navigation__menu--item__link {
  color: var(--primary-color);
  transition: var(--transition);
}

.navigation__menu--item__link:hover {
  color: var(--secondary-color) !important;
  transition: var(--transition);
}

.header.v__3 .navigation__menu--item.has-arrow::before {
  color: var(--heading-color);
}

.header.v__3 .header__right--item .menu__trigger,
.header.v__3 .header__right--item .lang__trigger,
.header.v__3 .header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}

.header.v__3 .header__right--item .lang__trigger,
.header.v__3 .header__right--item .search__trigger {
  font-size: 18px;
  color: var(--heading-color);
}

.navigation__menu ul {
  display: flex;
  max-width: max-content;
  gap: 40px;
  position: relative;
  padding: 0;
  margin: 0;
}

.navigation__menu--item {
  position: relative;
  margin: 0;
}

.navigation__menu--item:hover>a {
  color: red;
}

.navigation__menu--item__link {
  position: relative;
  font-size: 16px;
  font-family: var(--font-secondary);
  font-weight: var(--f-regular);
  padding: 20px 0;
  display: block;
  color: var(--white-color);
  text-transform: capitalize;
}

.navigation__menu--item.has-child:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.navigation__menu--item.has-child:hover ul.submenu li.has-child:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.navigation__menu--item.has-arrow {
  position: relative;
}

.navigation__menu--item ul.submenu,
.navigation__menu--item .sub__style {
  position: absolute;
  top: 100%;
  min-width: 220px;
  background: var(--white-color);
  z-index: 1024;
  display: inline-block;
  opacity: 0;
  padding: 20px 0;
  transform: scaleY(0);
  transform-origin: top center;
  visibility: hidden;
  transition: var(--transition);
  left: 0;
}

.navigation__menu--item ul.submenu li,
.navigation__menu--item .sub__style li {
  position: relative;
  display: block;
  padding: 0 30px;
}

.navigation__menu--item ul.submenu li:hover>a,
.navigation__menu--item .sub__style li:hover>a {
  color: var(--primary-color);
}

.navigation__menu--item ul.submenu li:hover>a::before,
.navigation__menu--item .sub__style li:hover>a::before {
  width: 80%;
}

.navigation__menu--item ul.submenu li:not(:last-child),
.navigation__menu--item .sub__style li:not(:last-child) {
  margin: 0 0 10px;
}

.navigation__menu--item ul.submenu li.has-arrow,
.navigation__menu--item .sub__style li.has-arrow {
  position: relative;
}

.navigation__menu--item ul.submenu li a,
.navigation__menu--item .sub__style li a {
  padding: 0;
  font-family: var(--font-secondary);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: var(--f-regular);
  position: relative;
  color: var(--heading-color);
}

.navigation__menu--item ul.submenu li a::before,
.navigation__menu--item .sub__style li a::before {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  position: absolute;
  content: "";
  background: var(--primary-color);
  transition: var(--transition);
}

.navigation__menu--item ul.submenu li a:hover::before,
.navigation__menu--item .sub__style li a:hover::before {
  width: 100%;
}

.navigation__menu--item ul.submenu li ul,
.navigation__menu--item .sub__style li ul {
  top: 0;
  position: absolute;
  left: 100%;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: var(--transition);
}

.header__sticky {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: none;
  z-index: 9;
  margin: auto;
  align-items: center;
  left: 0;
  border-radius: 0;
  /* transition: all 0.5s ease-in-out; */
  top: 0;
  transform: translateY(0);
}

.header__sticky.fixed {
  position: fixed !important;
  box-shadow: 0px 7px 18px #1810100d;
  background-color: var(--white-color);
  backdrop-filter: blur(8px);
}

.header__sticky.fixed .header__logo--link img {
  filter: invert(100);
}

.header__sticky.fixed .header__right--item .menu__trigger img {
  filter: invert(100);
}

.header__sticky.fixed .navigation__menu--item__link {
  padding: 30px 0;
  color: var(--heading-color);
}

.header__sticky.fixed .navigation__menu--item.has-arrow::before {
  color: var(--heading-color);
}

.header__sticky.fixed .navigation__menu--item:hover .navigation__menu--item__link::before {
  bottom: 32px;
}

.header__sticky.back-hide-header {
  transform: translateY(-100%);
  transition: var(--transition);
}

.header.v__3.fixed .header__right--item .search__trigger {
  color: var(--heading-color);
}

#side-bar .inner-main-wrapper-desk {
  display: block;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}

#side-bar .mobile-menu-main {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
  .topbar {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main nav ul {
  padding: 0 20px;
  display: block;
}

.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}

.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: var(--f-light);
}

.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}

.mobile-menu-main nav ul li.has-droupdown ul {
  padding: 0;
}

.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}

.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: var(--f-light);
  margin-top: 15px;
  font-size: 14px;
  border-bottom: 2px solid var(--secondary-color);
  padding: 10px 0;
}

.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}

.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "+";
  font-family: FontAwesome;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: var(--white-color);
  background: var(--secondary-color) !important;
  pointer-events: none;
  cursor: pointer;
}

.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: "\f00d";
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--secondary-color);
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.mobile-menu-main nav ul li a {
  display: block;
  color: var(--color-text);
  font-size: 12px;
  font-weight: var(--f-light);
  text-transform: capitalize;
}

.mobile-menu-main .social-wrapper-one {
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  .side-bar .inner-main-wrapper-desk {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .side-bar .mobile-menu {
    display: none !important;
  }
}

.sub-dropdown {
  position: relative !important;
  display: block !important;
}

.sub-dropdown .submenu.third-lvl {
  opacity: 0 !important;
  min-width: 185px !important;
  left: 100% !important;
  top: -13% !important;
  margin: 0;
  border-radius: 0 !important;
}

.sub-dropdown .submenu.third-lvl.base {
  display: none !important;
}

.sub-dropdown:hover .sub-menu-link {
  color: var(--secondary-color);
}

.sub-dropdown:hover .submenu.third-lvl.base {
  opacity: 1 !important;
  min-width: 185px !important;
  top: 0 !important;
  right: 3px;
  display: block !important;
}

.sub-dropdown:hover .submenu.third-lvl.base li {
  display: block;
}

.sub-dropdown:hover .submenu.third-lvl.base li a {
  display: block !important;
}

.mobile-menu-main .rts-social-style-one ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
  justify-content: center;
}

.mobile-menu-main .rts-social-style-one ul li {
  margin: 0;
}

.mobile-menu-main .rts-social-style-one ul li a {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #f3f3f3;
  transition: 0.3s;
}

.mobile-menu-main .rts-social-style-one ul li:hover a {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}


.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 380px;
  padding: 40px 35px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}

@media only screen and (max-width: 575px) {
  .side-bar {
    width: 315px;
  }
}

.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: center;
}

.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 60%;
  margin: auto;
}

.side-bar .inner-main-wrapper-desk .inner-content {
  text-align: center;
  margin-top: 30px;
}

.side-bar .inner-main-wrapper-desk .inner-content p {
  max-width: 100%;
  text-align: center;
  margin: auto;
  font-size: 14px;
}

.side-bar .inner-main-wrapper-desk .inner-content .title {
  font-weight: 600;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer {
  padding-top: 50px;
  margin-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
  font-weight: 500;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer a.rts-btn {
  margin: auto;
}

.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar {
  margin-top: 50px;
}

.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .title {
  margin-bottom: 20px;
  font-size: 24px;
}

.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info {
  margin: 15px 0;
}

.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info a:hover {
  color: var(--color-primary);
}

.side-bar.show {
  right: 0;
  overflow-y: auto;
}

.side-bar button {
  max-width: max-content;
  margin-right: auto;
  margin-left: -55px;
  margin-top: 0;
  position: absolute;
  border: 0;
}

.side-bar button i {
  color: var(--white-color);
  height: 50px;
  width: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  margin-top: -53px;
  font-size: 27px;
  background: var(--secondary-color);
}

#anywhere-home {
  cursor: url(../images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

#anywhere-home.bgshow {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}

.metismenu .mm-collapse:not(.mm-show) {
  display: none;
}

.index-three .side-bar .inner-main-wrapper-desk {
  display: none !important;
}

.index-three .side-bar .mobile-menu-main {
  display: block !important;
}

.inner-main-wrapper-desk h4 {
  margin-bottom: 20px;
}

.offcanvase__banner--content {
  position: relative;
}

.offcanvase__banner--content img {
  width: 100%;
}

.offcanvase__banner--content .rts-theme-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  font-size: 14px;
  padding: 8px 30px;
  border-radius: 4px;
}

.offcanvase__info {
  margin-top: 50px;
}

.offcanvase__info--content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.offcanvase__info--content a {
  display: flex;
  gap: 10px;
  transition: var(--transition);
}

.offcanvase__info--content a:hover {
  color: var(--secondary-color);
}

/* .offcanvase__info--content a span {
  color: var(--secondary-color);
} */
.offcanvase__info--content--social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.offcanvase__info--content--social>p {
  text-align: left;
  margin: 0 !important;
}

.offcanvase__info--content--social .social__links {
  display: flex;
  gap: 10px;
}

.offcanvase__info--content .btn-navbar {
  display: block;
  margin-top: 20px;
}

.offcanvase__info--content .btn-navbar a {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 15px;
  font-weight: var(--f-medium);
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
}

.offcanvase__info--content .btn-navbar a:nth-child(1) {
  background-color: var(--primary-color);
}

.offcanvase__info--content .btn-navbar a:nth-child(3) {
  background-color: var(--primary-color);
}

/*------------------------------------------
	= Logo
	-------------------------------------------*/
.trans {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo {
  position: relative;
  z-index: 100;
}

.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  margin: 5px 0;
  z-index: 2;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/logo/logo.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.logo-outer {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url("/images/Logo/logo-outer.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.2s linear;
  will-change: transform;
  z-index: 1;
  pointer-events: none;
}

.logo.l-control {
  width: 110px;
  height: 110px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-text {
  text-align: center;
  margin-top: -10px;
  line-height: 1.2;
}

.logo-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-secondary);

}

.logo-text h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

.logo-text p {
  margin-top: -6px;
  font-size: 8px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* sticky mode */
.header__sticky.fixed .logo-text h4,
.header__sticky.fixed .logo-text h5,
.header__sticky.fixed .logo-text p {
  display: none;
}

/* mobile */
@media(max-width:767px) {
  .logo-text h4 {
    font-size: 14px;
  }

  .logo-text h5 {
    font-size: 11px;
  }

  .logo-text p {
      font-size: 6px;
      margin-top: 0px;
  }

}

/*------------------------------------------
	= slider (index)
	-------------------------------------------*/
.hero-slide-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 508px;
  padding-bottom: 120px;
  overflow: hidden;
  height: 660px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 {
    padding-top: 308px;
    padding-bottom: 120px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}

.hero-slide-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}

@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}

.hero-slide-2 .s-shape-2 {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
  }
}

@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
    top: 35%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}

.hero-slide-2 .blur-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 100%;
  background: rgba(0, 69, 64, 0.02);
  border-radius: 50%;
  z-index: -2;
  backdrop-filter: blur(8px);
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 .blur-circle {
    width: 76%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .blur-circle {
    width: 60%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
    transform: translate(-50%, -55%);
  }
}

@media (max-width: 767px) {
  .hero-slide-2 .blur-circle {
    width: 0;
  }
}

.hero-slide-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* Adjust 0.6 for darker/lighter */
  z-index: -1;
}

.hero-content-2 {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-content-2 .title {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title {
    max-width: 480px;
  }
}

.hero-content-2 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 68px;
  line-height: 74px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.banner-school-name {
  font-size: 16px !important;
  line-height: 38px !important;
  margin-bottom: 0 !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title h1 {
    font-size: 64px;
    line-height: 72px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title h1 {
    font-size: 58px;
    line-height: 66px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .hero-content-2 .title h1 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}

.hero-content-2 .title span {
  color: var(--secondary-color);
}

.hero-content-2 .join-us {
  display: flex;
  justify-content: center;
}

.hero-content-2 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}

.hero-content-2 .join-us .e-primary-btn:before {
  background: var(--secondary-color);
}

.hero-content-2 .join-us .e-primary-btn .icon-wrap {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.hero-content-2 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--secondary-color);
  color: var(--primary-color);
}

.hero-content-2 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--white-color);
}

.hero-slider-active-2 {
  position: relative;
  z-index: 1;
}

.hero-slider-active-2 .hero-slider-pagination-2 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px; */
  width: auto;
  padding: 10px 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 50%;
    bottom: 20px;
    /* transform: translateX(-50%); */
  }
}

.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #868681;
}

.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F8F7F0;
}

.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFE175;
}

/*------------------------------------------
	= side button
	-------------------------------------------*/
#fixedRgt {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  width: 53px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, .3)
}

#fixedRgt li {
  list-style: none;
}

@media(max-width: 1779px) {
  #fixedRgt {
    width: 36px
  }
}

@media(max-width: 1551px) {
  #fixedRgt {
    bottom: 15%
  }
}

@media(max-width: 1199px) {
  #fixedRgt {
    width: 40px
  }
}

@media(max-width: 991px) {
  #fixedRgt {
    width: 100%;
    bottom: 0;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, .3)
  }
}

@media(max-width: 991px) {
  #fixedRgt li {
    flex: 1 0 auto;
    list-style: none;
  }
}

#fixedRgt li a {
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--white-color);
  height: 44px;
  width: 4%;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--Lato-sans-font);

}

@media(max-width: 1779px) {
  #fixedRgt li a {
    height: 36px;
    width: 36px;
    font-size: 14px
  }
}

@media(max-width: 1199px) {
  #fixedRgt li a {
    height: 40px;
    width: 40px;
    font-size: 16px
  }
}

@media(max-width: 991px) {
  #fixedRgt li a {
    width: 100%;
    height: 100%;
    font-size: 14px
  }
}

#fixedRgt li a img {
  max-height: 16px;
  max-width: 16px;
  transition: all .4s ease-in-out
}

@media(max-width: 1779px) {
  #fixedRgt li a img {
    max-height: 16px;
    max-width: 16px
  }
}

#fixedRgt li a:hover {
  color: var(--white-color);
  background: #e69b1b
}

#fixedRgt li.addmission-btn a {
  height: 204px;
  writing-mode: vertical-rl;
  white-space: nowrap
}

@media(max-width: 1779px) {
  #fixedRgt li.addmission-btn a {
    height: 170px
  }
}

@media(max-width: 1199px) {
  #fixedRgt li.addmission-btn a {
    height: 140px
  }
}

@media(max-width: 991px) {
  #fixedRgt li.addmission-btn a {
    writing-mode: unset;
    height: 100%
  }
}

#fixedRgt li.call a {
  background: var(--primary-color)
}

#fixedRgt li.call a:hover {
  background: #02462f
}

#fixedRgt li.mail a {
  background: #009966
}

#fixedRgt li.mail a:hover {
  background: #05704d
}

#fixedRgt li.whatsapp a {
  background: #4CAF50
}

#fixedRgt li.whatsapp a:hover {
  background: #237226
}

#fixedRgt li.map a {
  background: var(--white-color)
}

#fixedRgt li.map a:hover {
  background: #f1f1f1
}

/*------------------------------------------
	= about section (index)
	-------------------------------------------*/
.why-us-section.style-2 {
  margin-bottom: -155px;
}

.why-us-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  right: -26%;
  bottom: -40%;
}

.why-us-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section {
    background-size: contain;
  }
}

.why-us-section .left {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .left {
    width: 76%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .left {
    width: 96%;
  }
}

.why-us-content .common-title .main-title {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

@media (min-width: 1400px) {
  .why-us-content {
    padding-left: 20px;
  }
}

.why-us-content .text {
  margin-bottom: 20px;
}

.school {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .school {
    flex-direction: column;
    align-items: start;
    margin-bottom: 30px;
    gap: 15px;
  }
}

.school-head {
  font-weight: 600;
  margin-bottom: 14px;
}

.school .school-left,
.school .school-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.school .service {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-us-section-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: 1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .s-shape-1 {
    left: 84%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .s-shape-1 {
    left: 84%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 {
    right: 7%;
  }
}

@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 {
    left: 43%;
    top: 64%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
    left: 43%;
  }
}

@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
  }
}

.why-us-section-2 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.why-us-section-2 .c-shape-1 {
  position: absolute;
  right: -30%;
  bottom: -50%;
  z-index: -1;
}

.why-us-section-2 .why-us-section-2-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 722px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}

@media (max-width: 767px) {
  .why-us-section-2 .why-us-section-2-bg {
    display: none;
  }
}

.why-us-section-2 .why-us-section-2-bg .left-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}

.why-us-section-2 .why-us-section-2-bg .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-section-2 .why-us-section-2-bg .right-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}

.why-us-section-2 .why-us-section-2-bg .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full width container */
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/*------------------------------------------
	= admission section
	-------------------------------------------*/
.admission-section .admission-card {
  position: relative;
  border-radius: 16px;
  padding: 40px 30px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
  color: var(--white-color);
}

.admission-section .admission-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.795), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.admission-section .admission-card .content {
  position: relative;
  z-index: 1;
}

.admission-section .admission-card .content h5 {
  color: var(--white-color);
}

.admission-section .admission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.admission-section .admission-card .school-name {
  font-size: 13px;
  opacity: 0.85;
}

.admission-section .admission-card h5 {
  font-weight: 600;
  margin: 8px 0;
}

.admission-section .admission-card p {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .admission-section .admission-card {
    min-height: 220px;
    padding: 30px 20px;
  }
}

/*------------------------------------------
	= video-banner
	-------------------------------------------*/
#videoBannerCarousel .carousel-inner {
  background: var(--white-color);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.video-banner {
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 12px;
  /* background: var(--white-color);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15); */
}

.video-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.541);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s ease;
  z-index: 2;
}

.video-play-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.video-play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(233, 233, 233, 0.315);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/*------------------------------------------
	= academics section
	-------------------------------------------*/

.academics-section {
  position: relative;
  /* padding:  20px 0 20px  0; */
  overflow: hidden;
  z-index: 1;
}

.academics-section .bg-shape {
  position: absolute;
  z-index: 1;
}

.academics-section .shape-left {
  left: 2%;
  top: 20%;
  transform: translateY(-50%);
  max-width: 180px;
  width: 80px;
  animation: floatButterfly 6s ease-in-out infinite;
}

.academics-section .shape-right {
  right: 2%;
  top: 40%;
  max-width: 200px;
  width: 80px;
  animation: floatButterfly 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatButterfly {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.academics-section .academics-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: auto;
}


.academics-section .academics-content .main-title {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.academics-section .academics-content .description {
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .academics-section .academics-content .main-title {
    font-size: 32px;
  }

  .academics-section .shape-left {
    width: 60px;
  }

  .academics-section .shape-right {
    width: 60px;
  }
}

@media (max-width: 576px) {
  .academics-section {
    padding: 80px 0;
  }

  .academics-section .academics-content .main-title {
    font-size: 26px;
  }

  .academics-section .shape-left {
    left: 34px;
    width: 40px;
    opacity: 0.8;
  }

  .academics-section .shape-right {
    right: 24px;
    width: 40px;
    opacity: 0.8;
  }
}

.activity-card {
  background: var(--white-color);
  padding: 35px 20px;
  transition: 0.3s;
  height: 100%;
  text-align: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.activity-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.activity-card p {
  margin: 0;
  font-weight: 400;
  color: var(--color-text);
}

.activity-card p span {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text);
}

@media (max-width:768px) {

  .activity-card {
    padding: 25px 15px;
  }

  .activity-icon {
    width: 40px;
  }

  .activity-card p {
    font-size: 14px;
  }

}

/*------------------------------------------
	= footer
	-------------------------------------------*/
.footer-section {
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}

.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
  color: var(--secondary-color);
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}

.footer-bottom-layout .footer-copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}

.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}

.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}

.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}

.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}

.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--secondary-color);
}

.footer-widget .w-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 32px;
}

@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}

.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}

.footer-widget ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .footer-widget ul li a {
    font-size: 14px;
  }
}

.footer-widget ul li a:hover {
  color: var(--secondary-color);
}

.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}

.about-widget .footer-logo img {
  max-width: 100px;
}

.about-widget .text p {
  color: var(--white-color);
  margin-bottom: 15px;
}

.about-widget .info p {
  color: var(--white-color);
  margin-bottom: 4px;
}

.about-widget .info p span {
  color: var(--secondary-color);
}

.about-widget .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.about-widget .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.about-widget .social-links a:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

.subscribe-form .input-checkbox {
  margin-top: 20px;
}

.subscribe-form .input-checkbox input {
  display: none;
}

.subscribe-form .input-checkbox input:checked+label .check-mark {
  background: var(--secondary-color);
}

.subscribe-form .input-checkbox input:checked+label .check-mark:after {
  opacity: 1;
}

.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--secondary-color);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}

.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.get-in-touch .footer-address,
.get-in-touch .email,
.get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {

  .get-in-touch .footer-address,
  .get-in-touch .email,
  .get-in-touch .phone {
    gap: 8px;
  }
}

.get-in-touch .footer-address .icon,
.get-in-touch .email .icon,
.get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1399px) {

  .get-in-touch .footer-address .icon,
  .get-in-touch .email .icon,
  .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}

.get-in-touch .footer-address .icon i,
.get-in-touch .email .icon i,
.get-in-touch .phone .icon i {
  color: var(--secondary-color);
  font-size: 20px;
}

@media (max-width: 1399px) {

  .get-in-touch .footer-address .icon i,
  .get-in-touch .email .icon i,
  .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}

.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}

.get-in-touch .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.adjusted-width {
  width: 20%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}

@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
  .footer__logo_div .logo-text .school-name {
  font-size: 22px;
}

.footer__logo_div .logo-text .school-name-second {
  font-size: 16px;
}

.footer__logo_div .logo-text .tagline {
  font-size: 10px;
}
}

.footer__logo_div .logo-text .school-name {
  font-size: 25px;
}

.footer__logo_div .logo-text .school-name-second {
  font-size: 18px;
}

.footer__logo_div .logo-text .tagline {
  font-size: 12px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer__logo_div {
  display: flex;
  align-items: center;
}

.footer__logo_div .logo-text {
  margin-top: 4px;
}

/*------------------------------------------
	= application
-------------------------------------------*/
.application {
  background-size: 20px 20px;
}

.app-store-btns {
  /* display: flex; */
  width: 100%;
}

.app-store-btns a {
  font-family: var(--Lato-sans-font);
  gap: 5px;
  margin-bottom: 10px;
  font-size: var(--body-fz);
  flex-grow: 1;
  flex-basis: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background-repeat: no-repeat;
  padding: 6px 28px 6px 42px;
  min-height: 40px;
  font-weight: 400;
  background-position: 16px;
  display: inline-flex;
  align-items: center;
}

.app-store-btns a.apple {
  background-image: url("/images/App_Store.png");
  background-size: 16px 18px;
}

.app-store-btns a.google {
  background-image: url("/images/Google_Play.png");
  background-size: 16px 18px;
}

.app-store-btns a:hover {
  background-color: var(--secondary-color);
  color: var(--body-color);
}

/*------------------------------------------
	= gallery-section (index)
	-------------------------------------------*/
.gallery-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-section .gallery-description {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: auto;
}

.gallery-section .gallery-description .main-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.gallery-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.gallery-item {
  width: 240px;
  background: var(--white-color);
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  max-width: 240px;
  min-height: 240px;
  object-fit: cover;
}

/* Random tilt effect */
.gallery-item:nth-child(1) {
  transform: rotate(-10deg);
}

.gallery-item:nth-child(2) {
  transform: rotate(-4deg);
}

.gallery-item:nth-child(3) {
  transform: rotate(6deg);
}

.gallery-item:nth-child(4) {
  transform: rotate(10deg);
}

.gallery-item:nth-child(5) {
  transform: rotate(4deg);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 1;
}


@media (max-width: 767px) {

  .gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item {
    width: 100%;
    transform: none !important;
  }

  .gallery-title {
    font-size: 28px;
  }

}

.gallery-info {
  text-align: center;
  padding-top: 10px;
}

.gallery-info h6 {
  font-size: 14px;
  color: #002855;
  margin: 0;
  font-weight: 600;
}

.gallery-info span {
  font-size: 12px;
  color: #b79c65;
  display: block;
  margin-top: 4px;
}

/*------------------------------------------
	= Modal Animation
	-------------------------------------------*/
.kecs-modal .modal-dialog {
  width: clamp(300px, 90%, 900px);
  margin: auto;
  transition: all 0.4s ease;
}

.kecs-modal .modal-dialog {
  transform: translateY(50px);
  opacity: 0;
}

.kecs-modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.kecs-modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.kecs-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 4px;
  height: 4px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: invert(1);
}

.kecs-modal .row {
  height: 100%;
}

/* LEFT IMAGE SECTION*/

.kecs-modal-left {
  position: relative;
  flex: 0 0 50%;
  max-width: 35%;
  min-width: 300px;
  overflow: hidden;
}

.kecs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*RIGHT CONTENT*/

.kecs-modal-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white-color);
}

.kecs-modal-right h2 {
  margin-bottom: 15px;
}

.kecs-modal-right p {
  color: var(--body-color);
  margin-bottom: 20px;
}

.kecs-actions {
  margin-top: 20px;
}

.kecs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,
      #ff7a18, #ffb347);
  color: var(--white-color);
  text-decoration: none;
  overflow: hidden;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}

/* glass shine */
.kecs-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.kecs-btn:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--white-color);
}

.kecs-btn:hover::before {
  left: 130%;
}

/* RESPONSIVE DESIGN */

@media (max-width: 991px) {
  .kecs-modal .modal-dialog {
    max-width: 700px;
  }
}

@media (max-width: 768px) {

  .kecs-modal-left,
  .kecs-modal-right {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .kecs-modal-left {
    height: 250px;
  }

  .kecs-modal-right {
    padding: 25px;
    text-align: center;
  }
}

/*------------------------------------------
	= preloader
	-------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

#preloader,
.kecs_preloader_container,
.kecs_preloader_logo_wrap,
.kecs_preloader_outer {

  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* HIDE */

#preloader.preloader-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================================
   CONTAINER
========================================= */

.kecs_preloader_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  transition:
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.8s ease;
}

/* #preloader.preloader-move .kecs_preloader_container {
  transform: translate3d(0, -190px, 0) scale(0.78);
  -webkit-transform: translate3d(0, -190px, 0) scale(0.78);
  -moz-transform: translate3d(0, -190px, 0) scale(0.78);
  -ms-transform: translate3d(0, -190px, 0) scale(0.78);
  -o-transform: translate3d(0, -190px, 0) scale(0.78);
} */

/* @media (min-width: 992px) {

  #preloader.preloader-move .kecs_preloader_container {
    transform:
      translate3d(0, -190px, 0) scale(0.78);

    -webkit-transform:
      translate3d(0, -190px, 0) scale(0.78);

    -moz-transform:
      translate3d(0, -190px, 0) scale(0.78);

    -ms-transform:
      translate3d(0, -190px, 0) scale(0.78);

    -o-transform:
      translate3d(0, -190px, 0) scale(0.78);
  }
} */

.kecs_preloader_logo_wrap {
  position: relative;
  width: 180px;
  height: 180px;
}

/* =========================================
   MAIN LOGO
========================================= */

.kecs_preloader_logo {
  position: absolute;
  inset: 0;
  background-image: url("/images/logo/logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

/* =========================================
   OUTER ROTATE
========================================= */

.kecs_preloader_outer {
  position: absolute;
  inset: 0;
  background-image: url("/images/logo/logo-outer.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: kecsRotate 12s linear infinite;
  z-index: 1;
}

@keyframes kecsRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/* =========================================
   TEXT
========================================= */

.kecs_preloader_text {
  text-align: center;
  margin-top: -4px;
}

.kecs_preloader_text h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0px;
  font-family: var(--font-secondary);

}

.kecs_preloader_text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  font-family: var(--font-secondary);
}

.kecs_preloader_text p {
  font-size: 11px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--white-color);
  font-family: var(--font-secondary);
  margin-top: -18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .kecs_preloader_logo_wrap {
    width: 140px;
    height: 140px;
  }

  .kecs_preloader_text h4 {
    font-size: 28px;
  }

  .kecs_preloader_text h5 {
    font-size: 18px;
  }

}

@media(max-width:767px) {

  .kecs_preloader_logo_wrap {
    width: 110px;
    height: 110px;
  }

  .kecs_preloader_text h4 {
    font-size: 22px;
  }

  .kecs_preloader_text h5 {
    font-size: 15px;
  }

  .kecs_preloader_text p {
    font-size: 12px;
  }

}

@media (max-width: 991px) {
  #preloader.preloader-move .kecs_preloader_container {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;

  }
}

/*------------------------------------------
	= Leadership Messages
	-------------------------------------------*/
.testimonial-card-2 {
  background-color: var(--white-color);
  padding: 10px;
  border: 2px solid var(--white-color);
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;

}

@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-card-2 {
    gap: 20px;
    flex-direction: column;
  }
}

.testimonial-card-2:hover {
  border: 2px solid var(--secondary-color);
}

.testimonial-card-2 .thumb {
  position: relative;
  z-index: 1;
  flex: none;
}

@media (max-width: 767px) {
  .testimonial-card-2 .thumb {
    width: 100%;
  }
}

.testimonial-card-2 .thumb img {
  width: 100%;
  max-width: 260px;
}

.testimonial-card-2 .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--lightbg-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--lightbg-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}

.testimonial-card-2 .thumb .video-play-btn:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.testimonial-card-2 .card-content h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.testimonial-card-2 .card-content .review {
  color: var(--light-color);
  margin-bottom: 80px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}

.testimonial-card-2 .card-content .review p {
  color: var(--gray-color);
}

.testimonial-card-2 .card-content .author-details h5 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}

.testimonial-card-2 .card-content .author-details h5 span {
  font-weight: 400;
  font-size: 14px;
}

.testimonial-card-2 .card-content .author-details h6 {
  font-size: 16px;
  font-weight: 200;
  color: var(--color-text);
  margin-bottom: 0;
}

.testimonial-card-2 .quote-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: -1;
}

.testimonial-section-2 {
  background-color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.testimonial-section-2 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-section-2 .common-title.style-color-3 h2 {
  color: var(--white-color);
}

@media (max-width: 1700px) {
  .testimonial-section-2 .shape-1 {
    width: 80%;
  }
}

.testimonial-section-2 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 2%;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .testimonial-section-2 .shape-2 {
    width: 14%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section-2 .shape-2 {
    width: 16%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section-2 .shape-2 {
    width: 20%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-section-2 .shape-2 {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .testimonial-section-2 .shape-2 {
    width: 30%;
  }
}

.testimonial-section-2 .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/*------------------------------------------
	= TOPPER section
	-------------------------------------------*/
.admission-section {
  position: relative;
  overflow: hidden;
  /* important */
}

.topper-main-head {
  text-align: center;
  margin-bottom: 24px;
}

.topper-heading {
  margin-bottom: 0;
}

.toppers-birthday-section {
  background: var(--bg-light);
  padding: 80px 0;
  overflow: hidden;
}

.topper-wrapper {
  display: grid;
  grid-template-columns: 320px repeat(3, 1fr);
  gap: 35px;
  align-items: flex-start;
}

.birthday-slider {
  position: relative;
  overflow: hidden;
}

.topper-card,
.birthday-card {
  background: transparent;
  overflow: hidden;
  position: relative;
  min-height: auto;
}

.topper-img,
.birthday-img {
  position: relative;
  width: 240px;
  height: 240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.topper-img img,
.birthday-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 12px solid var(--white-color);
  position: relative;
  z-index: 2;
  display: block;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.birthday-decor-img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.circle-border {
  position: absolute;
  inset: -12px;
  border: 14px solid #ececec;
  border-radius: 50%;
  z-index: 1;
}

.topper-info,
.birthday-info {
  padding-top: 8px;
  text-align: center;
}

.topper-info h6,
.birthday-info h6 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
  color: #123b26;
  font-family: var(--font-secondary);
}

.topper-info span,
.birthday-info span {
  display: block;
  font-size: 16px;
  color: #444;
  margin-bottom: 4px;
}

.topper-info p,
.birthday-info p {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

@media(max-width:1400px) {

  .topper-wrapper {
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 25px;
  }
}

@media(max-width:768px) {

  .toppers-birthday-section {
    padding: 60px 0;
  }

  .topper-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .topper-img,
  .birthday-img {
    width: 220px;
    height: 220px;
  }

  .topper-info h6,
  .birthday-info h6 {
    font-size: 20px;
  }

  .topper-info span,
  .birthday-info span {
    font-size: 16px;
  }

  .topper-info p,
  .birthday-info p {
    font-size: 16px;
  }
}

@media(max-width:480px) {

  .topper-img,
  .birthday-img {
    width: 190px;
    height: 190px;
  }

  .topper-info h6,
  .birthday-info h6 {
    font-size: 18px;
  }

  .topper-info span,
  .birthday-info span {
    font-size: 14px;
  }

  .topper-info p,
  .birthday-info p {
    font-size: 14px;
  }
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-controls button {
  position: static;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
      #84c225,
      #5f8f16);
  border: none;
  border-radius: 50%;
  color: var(--white-color);
  opacity: 1;
}

.slider-controls button:hover {
  background: var(--secondary-color);
  color: var(--color-text)
}

@media (max-width:768px) {

  .birthday-img img,
  .topper-img img {
    width: 100%;
    max-height: none;
    object-fit: cover;
  }

  .score-badge {
    padding: 8px 10px;
    font-size: 14px;
  }

}

.balloons-wrapper {
  position: absolute;
  left: 0;
  bottom: -120px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.balloon {
  position: absolute;
  width: 32px;
  height: 36px;
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    inset -8px -12px 25px rgba(0, 0, 0, 0.25),
    inset 8px 10px 20px rgba(255, 255, 255, 0.4),
    0 12px 15px rgba(0, 0, 0, 0.2);
  animation: floatBalloon linear infinite;
}

.balloon::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 12px;
  left: 12px;
  filter: blur(1px);
}

.balloon::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 38px;
  background: #cacaca;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.balloon1 {
  background: radial-gradient(circle at 30% 30%, #ff8080, #d40000);
  left: 10%;
  animation-duration: 14s;
}

.balloon2 {
  background: radial-gradient(circle at 30% 30%, #66b3ff, #0047b3);
  left: 25%;
  animation-duration: 16s;
}

.balloon3 {
  background: radial-gradient(circle at 30% 30%, #66ff99, #00994d);
  left: 50%;
  animation-duration: 18s;
}

.balloon4 {
  background: radial-gradient(circle at 30% 30%, #ffd966, #e6a800);
  left: 70%;
  animation-duration: 15s;
}

.balloon5 {
  background: radial-gradient(circle at 30% 30%, #d699ff, #7a00cc);
  left: 85%;
  animation-duration: 17s;
}

@keyframes floatBalloon {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-50vh) rotate(5deg);
  }

  100% {
    transform: translateY(-110vh) rotate(-5deg);
    opacity: 0.9;
  }

}

@media (max-width:768px) {

  .balloon {
    width: 40px;
    height: 55px;
  }

  .balloon::after {
    height: 45px;
  }

}

.butterfly {
  position: absolute;
  width: 90px;
  opacity: 1;
  pointer-events: none;
  animation: butterflyFloat 6s ease-in-out infinite;
}

.butterfly-1 {
  top: 4%;
  left: 8%;
  animation-delay: 0s;
}

@keyframes butterflyFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(6deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@media (max-width: 767px) {
  .butterfly {
    width: 80px;
    opacity: 1;
  }

  .butterfly-1 {
    top: 4%;
    left: 8%;
    animation-delay: 0s;
  }
}

/*------------------------------------------
	= newsletter
	-------------------------------------------*/
.news-index-section {
  background: #f3efe8;
}

.news-index-slider {
  overflow: visible;
}

.news-index-card {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  padding: 14px;
  transition: .4s;
  height: 100%;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

/* .news-index-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
} */
.news-index-img {
  position: relative;
  overflow: hidden;
}

.news-index-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.news-index-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 5%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.05) 100%);
  opacity: 0.7;
  transition: 0.4s ease;
}

.news-index-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-color);
  color: #000;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 400;
  z-index: 2;
  line-height: normal;
}

.news-index-content {
  padding-top: 15px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  padding: 25px;
  z-index: 3;
  transition: 0.5s ease;
}

.news-index-date {
  display: inline-block;
  color: var(--white-color);
  font-size: 12px;
  margin-bottom: 8px;
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease;
}

.news-index-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--font-secondary);
  display: -webkit-box;
  /* continue line */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-index-arrow {
  width: 24px;
  height: 24px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s ease;
  margin-left: auto;
}

/* hover effect */
.news-index-card:hover .news-index-img img {
  transform: scale(1.08);
}

.news-index-card:hover .news-index-img::after {
  opacity: 1;
}

.news-index-card:hover .news-index-content {
  bottom: 0;
}

.news-index-card:hover .news-index-date {
  opacity: 1;
  transform: translateY(0);
}

.news-index-card:hover .news-index-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:1200px) {

  .news-index-img img {
    height: 380px;
  }

  .news-index-content p {
    font-size: 22px;
  }
}

@media(max-width:768px) {

  .news-index-img img {
    height: 340px;
  }

  .news-index-content {
    padding: 20px;
  }

  .news-index-content p {
    font-size: 20px;
  }

  .news-index-arrow {
    width: 50px;
    height: 50px;
  }
}

@media(max-width:576px) {

  .news-index-img img {
    height: 300px;
  }

  .news-index-content {
    bottom: 0;
    padding: 18px;
  }

  .news-index-date {
    opacity: 1;
    transform: translateY(0);
  }

  .news-index-arrow {
    opacity: 1;
    transform: translateY(0);
    width: 45px;
    height: 45px;
  }

  .news-index-content p {
    font-size: 18px;
  }
}

.news-index-arrow:hover {
  transform: translateX(6px);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.news-index-prev,
.news-index-next {
  width: 40px !important;
  height: 40px !important;
  top: 10px !important;
  background: linear-gradient(135deg, #84c225, #5f8f16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color) !important;
  cursor: pointer;
  position: relative !important;
  margin-top: 0;
}

.news-index-prev::after,
.news-index-next::after {
  display: none;
}

.news-index-prev i,
.news-index-next i {
  font-size: 14px;
}

.news-index-prev:hover,
.news-index-next:hover {
  background: var(--secondary-color);
}

/*------------------------------------------
	= KECS FAQ section
	-------------------------------------------*/
.kecs-faq-section {
  padding: 100px 0;
  background: var(--lightbg-color);
  overflow: hidden;
}

.kecs-faq-accordion {
  max-width: 900px;
  margin: auto;
}

.kecs-faq-item {
  border: none;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.kecs-faq-btn {
  background: var(--white-color) !important;
  color: #111 !important;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 24px;
  box-shadow: none !important;
  border: none !important;
  line-height: 1.5;
  font-family: var(--font-secondary);
}

.kecs-faq-btn::after {
  background-image: none !important;
  content: "+";
  font-size: 30px;
  font-weight: 300;
  color: #0c5c35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.kecs-faq-btn:not(.collapsed)::after {
  content: "−";
  transform: rotate(180deg);
}

.kecs-faq-body {
  padding: 0 30px 30px;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  text-align: start;
}

.kecs-faq-btn:not(.collapsed) {
  background: var(--white-color) !important;
  color: #0c5c35 !important;
  font-family: var(--font-secondary);
}

@media(max-width:1200px) {

  .kecs-faq-btn {
    font-size: 18px;
  }
}

@media(max-width:768px) {

  .kecs-faq-section {
    padding: 80px 0;
  }

  .kecs-faq-btn {
    font-size: 17px;
    padding: 22px 22px;
  }

  .kecs-faq-body {
    padding: 0 22px 24px;
    font-size: 15px;
  }
}

@media(max-width:576px) {

  .kecs-faq-section {
    padding: 60px 0;
  }

  .kecs-faq-btn {
    font-size: 15px;
    padding: 18px;
    line-height: 1.6;
  }

  .kecs-faq-btn::after {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .kecs-faq-body {
    padding: 0 18px 20px;
    font-size: 14px;
    line-height: 1.8;
  }
}

/*------------------------------------------
	= KECS group section
	-------------------------------------------*/
.kecs-groups-section {
  overflow: hidden;
}

.kecs-groups-card {
  display: block;
  text-decoration: none;
}

.kecs-groups-img {
  position: relative;
  overflow: hidden;
}

.kecs-groups-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.kecs-groups-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 5%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.05) 100%);
  transform: translateY(100%);
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kecs-groups-overlay p {
  color: var(--white-color);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.kecs-groups-card:hover .kecs-groups-img img {
  transform: scale(1.08);
}

.kecs-groups-card:hover .kecs-groups-overlay {
  transform: translateY(0);
}

@media(max-width:1200px) {
  .kecs-groups-img img {
    height: 320px;
  }
}

@media(max-width:768px) {

  .kecs-groups-section {
    padding: 80px 0;
  }

  .kecs-groups-img img {
    height: 280px;
  }

  .kecs-groups-overlay {
    transform: translateY(0);
    padding: 22px 20px;
  }
}

@media(max-width:576px) {

  .kecs-groups-section {
    padding: 60px 0;
  }

  .kecs-groups-img img {
    height: 240px;
  }

  .kecs-groups-overlay {
    padding: 18px;
  }

}

/*------------------------------------------
	= KECS notice section
	-------------------------------------------*/
.kecs_notice_section {
  background: var(--lightbg-color);
  overflow: hidden;
}

.kecs_notice_slider {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}

.kecs_notice_slider .swiper-slide {
  height: auto;
}

.kecs_notice_card {
  height: 100%;
  background: #f5f5f5;
  border-radius: 90px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 160px;
  transition: 0.4s ease;
  text-align: start;
}

.kecs_notice_date {
  width: 122px;
  height: 122px;
  min-width: 122px;
  background: #f7be00;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kecs_notice_update {
  font-size: 12px;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 2px;
}

.kecs_notice_date h3 {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-secondary);
}

.kecs_notice_date p {
  margin: 0;
  font-size: 12px;
  color: var(--color-text);
}


.kecs_notice_content {
  flex: 1;
}

.kecs_notice_content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  font-family: var(--font-secondary);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kecs_notice_content p {
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(max-width:1200px) {

  .kecs_notice_heading h2 {
    font-size: 54px;
  }

  .kecs_notice_card {
    border-radius: 70px;
  }

  .kecs_notice_content h4 {
    font-size: 20px;
  }
}

@media(max-width:991px) {

  .kecs_notice_card {
    border-radius: 40px;
  }
}

@media(max-width:767px) {

  .kecs_notice_card {
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    padding: 24px 20px;
  }

  .kecs_notice_date {
    width: 110px;
    height: 110px;
    min-width: 110px;
  }

  .kecs_notice_date h3 {
    font-size: 50px;
  }

  .kecs_notice_content h4 {
    font-size: 20px;
  }

  .kecs_notice_content p {
    font-size: 14px;
  }
}

@media(max-width:480px) {
  .kecs_notice_content h4 {
    font-size: 18px;
  }
}

/*------------------------------------------
	= KECS number section
	-------------------------------------------*/
.kecs__numbers_section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}

.kecs__numbers_bg {
  position: absolute;
  inset: 0;
  background: url("/images/banner-2.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.1);
  z-index: -2;
}

.kecs__numbers_overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 94, 45, 0.88),
      rgba(0, 94, 45, 0.88));
  z-index: -1;
}

.kecs__numbers_card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: 0.5s ease;
  overflow: hidden;
}

.kecs__numbers_card::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -90%;
  left: -20%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.35),
      transparent);
  transform: rotate(25deg);
  transition: 0.6s ease;
}

.kecs__numbers_card:hover {
  transform: translateY(-10px) scale(1.03);

  border-color: rgba(255, 255, 255, 0.45);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.kecs__numbers_card:hover::before {
  top: -60%;
}

.kecs__numbers_icon {
  margin-bottom: 18px;
}

.kecs__numbers_icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.kecs__numbers_card h4 {
  font-size: 40px;
  line-height: 1;
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-secondary);
}

.kecs__numbers_card p {
  font-size: 12px;
  color: var(--white-color);
  margin: 0;
  line-height: normal;
}

@media(max-width:1400px) {

  .kecs__numbers_heading h2 {
    font-size: 60px;
  }

  .kecs__numbers_card h4 {
    font-size: 40px;
  }

  .kecs__numbers_card p {
    font-size: 12px;
  }
}

@media(max-width:1199px) {
  .kecs__numbers_card {
    max-width: 260px;
    margin: auto;
  }
}

@media(max-width:991px) {

  .kecs__numbers_card {
    max-width: 230px;
  }

  .kecs__numbers_card h4 {
    font-size: 34px;
  }

  .kecs__numbers_card p {
    font-size: 12px;
  }
}

@media(max-width:767px) {

  .kecs__numbers_bg {
    background-attachment: scroll;
  }

  .kecs__numbers_card {
    max-width: 190px;
    padding: 20px;
  }

  .kecs__numbers_icon img {
    width: 42px;
    height: 42px;
  }

  .kecs__numbers_card h3 {
    font-size: 38px;
  }

  .kecs__numbers_card p {
    font-size: 16px;
  }
}

@media(max-width:480px) {

  .kecs__numbers_section {
    padding: 60px 0;
  }

  .kecs__numbers_heading h2 {
    font-size: 32px;
  }

  .kecs__numbers_card {
    max-width: 160px;
  }

  .kecs__numbers_icon {
    margin-bottom: 12px;
  }

  .kecs__numbers_icon img {
    width: 28px;
    height: 28px;
  }

  .kecs__numbers_card h4 {
    font-size: 28px;
  }

  .kecs__numbers_card p {
    font-size: 10px;
  }
}

/*------------------------------------------
	= KECS infra section
	-------------------------------------------*/
.kecs_infra_section {
  overflow: hidden;
  background-color: var(--line-color);
}

.kecs_infra_slider {
  overflow: hidden;
  position: relative;
}

.kecs_infra_slider .swiper-slide {
  height: auto;
}

.kecs_infra_slider,
.kecs_infra_slider .swiper-wrapper,
.kecs_infra_slider .swiper-slide {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.kecs_infra_card {
  position: relative;
}

.kecs_infra_img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--white-color);
  transition: 0.5s ease;
}

.kecs_infra_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.kecs_infra_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.70),
      rgba(0, 0, 0, 0.35));

  border-radius: 50%;
  padding: 20px;
}
.kecs_infra_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: none;
}
.kecs_infra_icon {
  margin-bottom: 14px;
}
.kecs_infra_icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.kecs_infra_content h4 {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-secondary);
}
.kecs_infra_card:hover .kecs_infra_img img {
  transform: scale(1.08);
}

.kecs_infra_card:hover .kecs_infra_content {
  transform: translateY(0);
}
@media(max-width:1400px) {

  .kecs_infra_content h4 {
    font-size: 16px;
  }
}
@media(max-width:991px) {
  .kecs_infra_content h4 {
    font-size: 18px;
  }

  .kecs_infra_icon img {
    width: 36px;
    height: 36px;
  }
}
@media(max-width:767px) {
  .kecs_infra_img {
    border-width: 7px;
  }

  .kecs_infra_overlay {
    padding: 20px;
  }

  .kecs_infra_content {
    transform: translateY(0);
  }

  .kecs_infra_content h4 {
    font-size: 16px;
  }

  .kecs_infra_icon {
    margin-bottom: 10px;
  }

  .kecs_infra_icon img {
    width: 30px;
    height: 30px;
  }

}
@media(max-width:480px) {
  .kecs_infra_overlay {
    padding: 16px;
  }

  .kecs_infra_content h4 {
    font-size: 14px;
  }

}
/*------------------------------------------
	= KECS achievement and review section
	-------------------------------------------*/
   .kecs_review_ache_sec {
    background: #e7dfc8;
  }

  .kecs_review_title,
  .kecs_ache_title {
    font-size: 52px;
    font-weight: 500;
    color: #163c2d;
    margin-bottom: 12px;
    font-family: serif;
  }

  .kecs_review_subtitle,
  .kecs_ache_subtitle {
    font-size: 18px;
    color: #2d2d2d;
  }

  /* =========================
      TESTIMONIAL
  ========================== */

  .kecs_review_card {
    padding: 10px;
  }

  .kecs_review_img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white-color);
    margin: auto;
  }

  .kecs_review_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.kecs_review_text {
    font-size: 16px;
    line-height: 24px;
    color: #2b2b2b;
    font-style: italic;
    margin-bottom: 30px;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

  .kecs_review_author h5 {
    font-size: 18px;
    color: #163c2d;
    margin-bottom: 4px;
  }

  .kecs_review_author span {
    font-size: 16px;
    color: #4d4d4d;
    font-style: italic;
  }

  /* =========================
      ACHIEVEMENT
  ========================== */

.kecs_ache_card {
    height: 220px;
    overflow: hidden;
    padding: 10px;
    background-color: var(--white-color);
}

.kecs_ache_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 

  /* =========================
      RESPONSIVE
  ========================== */

  @media (max-width: 991px) {
    .kecs_review_text {
      font-size: 16px;
    }

    .kecs_review_author h5 {
      font-size: 16px;
    }

    .kecs_review_author span {
      font-size: 16px;
    }
  }

  @media (max-width: 767px) {
    .kecs_review_text {
      font-size: 14px;
      text-align: center;
    }

    .kecs_review_author {
      text-align: center;
    }
      .kecs_review_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white-color);
    margin: auto;
  }
  }

  /*------------------------------------------
	= breadcrumb
	-------------------------------------------*/
.page-header{
	position: relative;
	background-image: url('/images/banner-2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 120px;
	overflow: hidden;
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
  background:  #00000079;
	z-index: 0;
}

.page-header-box{
	position: relative;
  text-align: center;
	z-index: 0;
}

.breadcrumb-wrapper {
      border-bottom: 1px solid #e2e2e2;
  }

  .breadcrumb-custom {
      margin-bottom: 0;
      background: transparent;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 500;
  }

  .breadcrumb-custom .breadcrumb-item a {
      color: #868c92;
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .breadcrumb-custom .breadcrumb-item a:hover {
      color: var(--primary-color);
  }

  .breadcrumb-custom .breadcrumb-item.active {
      color: var(--color-text);
  }

  .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
      content: "›";
      color: #adb5bd;
  }

  .breadcrumb-icon {
      font-size: 12px;
  }

    /*------------------------------------------
	= kecs_table_wrap
	-------------------------------------------*/
  .kecs_table_wrap .kecs_custom_table thead tr .mt-head{
     background-color: var(--secondary-color) !important;
  }
  .kecs_table_wrap .kecs_custom_table thead tr .mt-head-1{
     background-color: var(--lightbg-color) !important;
  }

   /*------------------------------------------
	= download
	-------------------------------------------*/
.pdf-card{
background:var(--white-color);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.pdf-card:hover{
transform:translateY(-4px);
}

.pdf-icon{
width:50px;
height:50px;
}

.pdf-title{
font-weight:600;
margin-bottom:4px;
font-size:15px;
font-family: var(--font-secondary);
}

.pdf-date{
font-size:13px;
color:#777;
margin-bottom:0;
}

/* Buttons */

.pdf-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.btn-download{
background:var(--primary-color);
color:var(--white-color);
border-radius:30px;
padding:6px 18px;
font-size:14px;
}

.btn-download:hover{
background:#04a038;
color:var(--white-color);
}

.btn-preview{
background:#efeddd;
border-radius:30px;
padding:6px 18px;
font-size:14px;
}

.btn-preview:hover{
background:#aaa891;
color:var(--white-color);
}

/* Mobile */

@media (max-width:576px){

.pdf-buttons{
width:100%;
}

.pdf-buttons .btn{
flex:1;
text-align:center;
}

.pdf-icon{
width:55px;
height:55px;
}
.pdf-title {
    font-size: 14px;
}

}
  /*------------------------------------------
	= latest news
	-------------------------------------------*/
.blog-card-4 {
  background-color: var(--white-color);
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-4:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.blog-card-4 .thumb{
  position:relative;
  width:100%;
  min-height:350px;
  max-height:350px;
  height:350px;
  overflow:hidden;
  background:#eef1f5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.blog-card-4 .thumb > img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  position:relative;
  z-index:2;
}
.blog-card-4 .thumb > img[src=""],
.blog-card-4 .thumb > img:not([src]),
.blog-card-4 .thumb > img[src="#"]{
  opacity:0;
}

.blog-card-4 .thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
  url("/images/nia.jpg");
  background-size:cover;
  background-position:center;
  z-index:1;
}


.blog-card-4 .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card-4 .thumb .category {
  display: inline-block;
  padding: 2px 18px;
  background: var(--secondary-color);
  color: var(--color-text);
}
.blog-card-4 .thumb .category a:hover {
  color: var(--primary-color);
  background: var(--white-color);
}
.blog-card-4 .content {
  padding: 24px 30px 26px 30px;
}
.blog-card-4 .content .blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.blog-card-4 .content .blog-info p {
  font-family: var(--font-secondary);
  color: var(--color-text);
  margin-bottom: 0;
}
.blog-card-4 .content .blog-info .date,
.blog-card-4 .content .blog-info .comment,
.blog-card-4 .content .blog-info .view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-4 .content .blog-info .publisher-info img,
.blog-card-4 .content .blog-info .date img,
.blog-card-4 .content .blog-info .comment img,
.blog-card-4 .content .blog-info .view img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.blog-card-4 .content .title h3 {
  margin-bottom: 12px;
}
.blog-card-4 .content .title h4 {
  font-family: var(--font-secondary)
}
@media(max-width:991px){
  .blog-card-4 .thumb{
    min-height:300px;
    max-height:300px;
    height:300px;
  }
}
@media(max-width:768px){
  .blog-card-4 .thumb{
    min-height:220px;
    max-height:220px;
    height:220px;
  }
  .blog-card-4 .content {
    padding: 24px 30px 26px 30px;
}
}
 /*------------------------------------------
	= open gallery
	-------------------------------------------*/
.open_gallery_item {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.open_gallery_img_wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #000;
}

.open_gallery_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 
        transform 0.7s cubic-bezier(.4,0,.2,1),
        filter 0.6s ease;
    filter: grayscale(100%);
}

.open_gallery_item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.open_gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.open_gallery_item:hover .open_gallery_overlay {
    opacity: 1;
}

.cursor_light {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.open_gallery_img_wrapper:hover .cursor_light {
    opacity: 1;
}

.open_gallery_title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.open_gallery_date {
    font-size: 12px;
    color: #8c8c8c;
}
.album-sec{
      position: relative;
}
.back-btn {
    position: absolute;
    top: 20px;
    left: 120px;
    z-index: 100;
}

.back-btn a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--body-color);
    /* background: var(--white-color); */
    padding: 6px 14px;
    border-radius: 30px;
    /* box-shadow: 0 3px 10px rgba(0,0,0,0.15); */
    transition: 0.3s ease;
}

/* .back-btn a:hover {
    background: #f1f1f1;
    transform: translateX(-3px);
} */

.back-btn .arrow {
    font-size: 18px;
}
@media (max-width: 576px) {
.open_gallery_item{
  margin-bottom: 14px;
}
.back-btn{
  display: none;
}
}
@media (max-width: 991px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1200px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1600px) {
.open_gallery_item{
  margin-bottom: 24px;
}
}

 /*------------------------------------------
	= youtube
	-------------------------------------------*/
.youvideo-wrapper{
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio (same as your 318x238) */
    overflow: hidden;
    margin-bottom: 24px;
}

.youvideo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

 /*------------------------------------------
	= career
	-------------------------------------------*/

/* Wrapper */
.career-wrapper {
    min-height: 100vh;
    padding: 20px;
}

/* Card */
.career-card {
    width: 100%;
    background: var(--white-color);
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

/* Labels */
.career-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* Inputs */
.career-control {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: 0.3s;
}

/* Focus effect */
.career-control:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
    outline: none;
}

/* File */
.career-file {
    padding: 4px;
}
.career-control.career-file::file-selector-button {
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Button */
.career-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 35px;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    transition: 0.3s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.career-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .career-card {
        padding: 20px;
    }
}

  /*------------------------------------------
	= contact
	-------------------------------------------*/
  .info-card{
    background:var(--white-color);
    padding:24px;
    height:100%;
}

.info-item{
    padding:25px 0;
    border-bottom:1px solid #e5e5e5;
}

.info-item:last-child{
    border-bottom:none;
}

.icon-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--primary-color);
}

.contact-form-card{
    background:var(--primary-color);
    color:var(--white-color);
    padding:70px;
    height:100%;
}

.contact-form-card h2{
    font-weight:600;
}

.form-control{
    background:transparent;
    border:1px solid rgba(255,255,255,0.4);
    color:var(--white-color);
    border-radius:10px;
    padding:12px 15px;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.7);
}

.form-control:focus{
    background:transparent;
    color:var(--white-color);
    box-shadow:none;
    border-color:var(--white-color);
}

textarea.form-control{
    min-height:130px;
    resize:none;
}

@media (max-width:991px){
    .contact-form-card,
    .info-card{
        padding:30px;
    }
}

 /*------------------------------------------
	= alumni
	-------------------------------------------*/
.alumni-form {
        width: 100%;
    background: var(--white-color);
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.alumni-form .form-section {
    margin: 30px 0;
}

.alumni-form .form-section .section-title-bg .section-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    font-family: var(--font-secondary);
}

.alumni-form .form-section .section-title-bg {
    padding: 6px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.alumni-form .form-section .form-fields .field-group .form-label {
    font-family: var(--font-secondary);
    color: var(--color-text);
}

.alumni-form .form-section .form-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.alumni-form .form-section .form-fields .field-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 6px 0;
}

.alumni-form .form-section .form-fields .field-group.field-full {
    width: 100%;
}

.alumni-form .form-section .form-fields .field-group .form-control,
.alumni-form .form-section .form-fields .field-group .form-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: 0.3s;
    color: var(--color-text);
}

.alumni-form .form-section .form-fields .field-group .form-control:focus,
.alumni-form .form-section .form-fields .field-group .form-select:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
    outline: none;
}

.alumni-form .form-section .form-fields .field-group .form-control.file-input::file-selector-button {
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}
  /*------------------------------------------
	= kecs_team_section
	-------------------------------------------*/
.kecs_team_section{
  position:relative;
  overflow:visible;
}

.kecs_team_container{
  position:relative;
  overflow:visible;
}

.kecs_team_nav_placeholder{
  height:100px;
  position:relative;
  margin-bottom:12px;
}

.kecs_team_nav_wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  z-index:4;
  transition:
  transform .65s cubic-bezier(.22,.61,.36,1),
  opacity .65s cubic-bezier(.22,.61,.36,1);
}

.kecs_team_nav_wrapper.kecs_team_top{
  position:absolute;
  top:0;
  left:0;
  right:0;
}
.kecs_team_nav_wrapper.kecs_team_bottom{
  position:fixed !important;
  left:0;
  right:0;
  bottom:20px;
  top:auto;
  z-index:4;
  animation:
  kecs_team_slide_up .6s cubic-bezier(.22,.61,.36,1);
}
@keyframes kecs_team_slide_up{
  0%{
    opacity:0;

    transform:
    translateY(120px)
    scale(.92);

  }
  100%{

    opacity:1;

    transform:
    translateY(0)
    scale(1);
  }
}

.kecs_team_nav{
  width:max-content;
  max-width:min(95vw,1100px);
  backdrop-filter: blur(17.5px);
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius:999px;
  padding:8px;
  display:flex;
  align-items:center;
  gap:12px;
}

.kecs_team_nav_scroll{
  overflow-x:auto;
  scrollbar-width:none;
  flex:1;
  scroll-behavior:smooth;
}
.kecs_team_nav_scroll::-webkit-scrollbar{
  display:none;
}
.kecs_team_nav_flex{
  display:flex;
  gap:14px;
  min-width:max-content;
}

.kecs_team_nav_btn{
  background-color: #ffffff;
  color:var(--color-text);
  padding:10px 18px;
  border-radius:999px;
  font-weight:500;
  white-space:nowrap;
  cursor:pointer;
  transition:.3s ease;
}

.kecs_team_nav_btn.active{
  background:var(--secondary-color);
  color:var(--color-text);
}
.kecs_team_scroll_btn{
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:var(--color-text);
  color:var(--white-color);
  font-size:16px;
  cursor:pointer;
  flex-shrink:0;
  transition:.3s ease;
}

.kecs_team_content{
  display:none;
  animation:kecs_team_fade .4s ease;
}

.kecs_team_content.active{
  display:block;
}

@keyframes kecs_team_fade{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.kecs_team_grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));
  gap:28px;

}

.kecs_team_card{
  background:#fff;
  overflow:hidden;
  border:
  1px solid rgba(0,0,0,.06);
  transition:.35s ease;
  box-shadow:
  0 8px 25px rgba(0,0,0,.05);
}

.kecs_team_card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 18px 45px rgba(0,0,0,.10);
}

.kecs_team_img_wrap{
  height:220px;
  overflow:hidden;
}

.kecs_team_img_wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.kecs_team_card:hover img{
  transform:scale(1.06);
}

.kecs_team_card_body{
  padding:12px;
}

.kecs_team_badge{
  display:inline-block;
  background:var(--secondary-color);
  color:var(--color-text);
  padding:4px 12px;
  border-radius:200px;
  font-size:12px;
  font-weight:600;
  margin-bottom:8px;
}

.kecs_team_name{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  font-family: var(--font-secondary);
}

.kecs_team_position{
  color:var(--color-text);
  font-weight:500;
  margin-bottom:4px;
  line-height:1.6;
}

.kecs_team_info{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.kecs_team_info_item{
  font-size:14px;
  color:var(--color-text);

}

.kecs_team_info_item strong{
  color:#111;
}

@media(max-width:768px){

  .kecs_team_section{
    padding:70px 14px;
  }

  .kecs_team_container{
    padding:25px 20px;
    border-radius:28px;
  }

  .kecs_team_title{
    font-size:34px;
  }

  .kecs_team_subtitle{
    font-size:15px;
  }

  .kecs_team_nav{
    padding:10px;
    margin-bottom: 28px;
  }

  .kecs_team_nav_btn{
    padding:12px 18px;
    font-size:14px;
  }

  .kecs_team_scroll_btn{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .kecs_team_img_wrap{
    height:240px;
  }
  .kecs_team_img_wrap{
  height:auto;
  overflow:hidden;
}
.kecs_team_nav_scroll{
  max-width:70vw;
  overflow-x:auto;
  scrollbar-width:none;
}
.kecs_team_nav_scroll::-webkit-scrollbar{
  display:none;
}
}
  /*------------------------------------------
	= kecs_Infrastructure_section
	-------------------------------------------*/
.kecs_team_facility{
  position:relative;
  margin-bottom:40px;
  background:#fff;
  padding:50px;
  overflow:hidden;
  box-shadow:
  0 10px 40px rgba(0,0,0,.04);
}
.kecs_team_reverse .kecs_team_facility_img{
  float:right;
  margin:
  0 0 25px 35px;
}
.kecs_team_reverse .kecs_team_facility_content{
  order:1;
}

.kecs_team_facility_img{
  width:420px;
  height:320px;
  float:left;
  margin: 0 35px 25px 0;
  overflow:hidden;
  shape-outside:margin-box;
}

.kecs_team_facility_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}
.kecs_team_facility_img .carousel .carousel-inner .carousel-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}
.kecs_team_facility_content{
  display:block;
}

.kecs_team_facility_title{
  font-size:28px;
  line-height:36px;
  font-weight:800;
  margin:20px 0 24px;
}
.kecs_team_facility_content_sub{
  color: var(--tertiary-color);
}
.kecs_team_facility_para{
  color:var(--color-text);
  margin-bottom:20px;
}
.kecs_team_facility::after{
  content:"";
  display:block;
  clear:both;
}

@media(max-width:991px){
  .kecs_team_facility{
    padding:35px;

  }
  .kecs_team_facility_img,
  .kecs_team_reverse .kecs_team_facility_img{
    float:none;
    width:100%;
    height:auto;
    margin:
    0 0 30px 0;
  }
}
@media(max-width:768px){
  .kecs_team_facility{
    padding:24px;
    border-radius:24px;
  }
  .kecs_team_facility_img{
     height:auto;
    border-radius:18px;
  }
  .kecs_team_facility_img{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.kecs_team_facility_title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    margin: 14px 0 18px;
}
}

  /*------------------------------------------
	= kecs_in_notice_section
	-------------------------------------------*/
.kecs_in_notice_card{
  position:relative;
  height:100%;
  background:#fff;
  overflow:hidden;
  transition:.45s ease;
  border:
  1px solid rgba(0,0,0,.05);
  box-shadow:
  0 10px 40px rgba(0,0,0,.05);
}

.kecs_in_notice_card:hover{
  transform:  translateY(-8px);
  box-shadow:  0 20px 60px rgba(0,0,0,.10);
}
.kecs_in_notice_empty{
  min-height:440px;
  height:100%;
}
.kecs_in_notice_empty
.kecs_in_notice_img{
  height:100%;
  min-height:440px;
  max-height:100%;
}

.kecs_in_notice_empty
.kecs_in_notice_content{
  display:none;
}

@media(max-width:768px){
  .kecs_in_notice_empty{
    min-height:400px;
  }

  .kecs_in_notice_empty
  .kecs_in_notice_img{
    min-height:400px;
  }
}

.kecs_in_notice_img{
  position:relative;
  width:100%;
  min-height:440px;
  max-height:440px;
  height:440px;
  overflow:hidden;
  background:#eef1f5;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.kecs_in_notice_img img{
   width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:.5s ease;
}

.kecs_in_notice_card:hover img{
  transform:scale(1.06);
}
.kecs_in_notice_img img[src=""],
.kecs_in_notice_img img:not([src]),

.kecs_in_notice_img img[src="#"]{
  opacity:0;
}
.kecs_in_notice_img::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
  url("/images/nia.jpg");
  background-size:cover;
  background-position:center;
  z-index:0;
}
.kecs_in_notice_img img{
  position:relative;
  z-index:2;
}

.kecs_in_notice_date{
  position:absolute;
  left:20px;
  bottom:20px;
  background:var(--white-color);
  color:var(--color-text);
  padding:
  10px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  box-shadow:
  0 4px 20px rgba(0,0,0,.10);

}
.kecs_in_notice_content{
  padding:32px;
}

.kecs_in_notice_heading{
  font-weight:800;
  margin-bottom:18px;
  color:var(--color-text);
  font-family: var(--font-secondary);
}

.kecs_in_notice_para{
  margin-bottom:28px;
}

@media(max-width:991px){
  .kecs_in_notice_img{
    min-height:420px;
    max-height:420px;
    height:420px;
  }

}
@media(max-width:768px){
    .kecs_in_notice_desc{
    font-size:15px;
    line-height:1.8;
  }
  .kecs_in_notice_content{
    padding:24px;
  }

  .kecs_in_notice_img{
    min-height:400px;
    max-height:400px;
    height:400px;
  }

}


  /*------------------------------------------
	= kecs_in_calendar_section
	-------------------------------------------*/

.kecs_calendar_wrapper{
  max-width:1800px;
  margin:auto;
}

.kecs_calendar_card{
  background:#fff;
  overflow:hidden;
  border:1px solid var(--line-color);
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.kecs_calendar_header{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  padding:20px;
  border-bottom:1px solid var(--line-color);
}

.kecs_calendar_left_controls{
  display:flex;
  align-items:center;
  gap:4px;
}

.kecs_calendar_center_controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kecs_calendar_right_controls{
  display:flex;
  justify-content:flex-end;
}

.kecs_calendar_center{
  position:relative;
}

.kecs_calendar_btn{
  border:none;
  background:var(--color-design);
  padding:6px 18px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.kecs_calendar_btn:hover{
  background:var(--line-color);
}

.kecs_calendar_active{
  background:var(--primary-color);
  color:#fff;
}

.kecs_calendar_download_btn{
  border:none;
  background:var(--primary-color);
  color:#fff;
  padding:6px 20px;
  font-size:14px;
  font-weight:500;
}

.kecs_calendar_month_year_btn{
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:32px;
  font-weight:700;
  color:var(--primary-color);
}

.kecs_calendar_nav_btn{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#edf2f8;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.kecs_calendar_dropdown{
  position:absolute;
  top:70px;
  left:50%;
  transform:translateX(-50%);
  width:320px;
  background:#fff;
  display:none;
  grid-template-columns:1fr 1fr;
  overflow:hidden;
  border:1px solid var(--line-color);
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  z-index:99;
}

.kecs_calendar_dropdown.active{
  display:grid;
}

.kecs_calendar_month_list,
.kecs_calendar_year_list{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:420px;
  overflow-y:auto;
}
.kecs_today{
  background:var(--color-body) !important;
}

.kecs_today .kecs_calendar_date{
  color:var(--color-text);
  font-weight:800;
}
.kecs_calendar_active{
  background:var(--secondary-color);
  color:var(--color-text);
}
.kecs_calendar_month_item,
.kecs_calendar_year_item{
  border:none;
  background:transparent;
  padding:12px 14px;
  font-weight:600;
  color:var(--primary-color);
  text-align:left;
}

.kecs_calendar_year_item{
  text-align:center;
}

.kecs_calendar_month_item:hover,
.kecs_calendar_year_item:hover{
  background:#edf2f8;
}
.kecs_calendar_grid{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  width:100%;
}
.kecs_calendar_weekdays{
   display:contents;
}

.kecs_calendar_weekday{
  padding:18px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  background:#f8fafc;
  border-right:1px solid var(--line-color);
  border-bottom:1px solid var(--line-color);
}

.kecs_calendar_weekday:first-child{
  border-left:1px solid var(--line-color);
}

.kecs_calendar_days{
   display:contents;
}

.kecs_calendar_day{
  min-height:190px;
  padding:12px;
  border-right:1px solid var(--line-color);
  border-bottom:1px solid var(--line-color);
}

.kecs_calendar_day:nth-child(7n+1){
  border-left:1px solid var(--line-color);
}

.kecs_calendar_empty{
  background:#f8fafc;
}

.kecs_calendar_date{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}

.kecs_calendar_event{
  background:#f8f9fa;
  border-left:4px solid #000;
  border-radius:12px;
  padding:10px;
  margin-bottom:10px;
  overflow: auto;
}

.kecs_calendar_event_title{
  font-size:12px;
  font-weight:700;
}

.kecs_calendar_event_time{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:0px;
  font-size:10px;
}

.kecs_calendar_dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
}

.kecs_calendar_sports{
  border-left-color:#0d6efd;
}

.kecs_calendar_sports .kecs_calendar_dot{
  background:#0d6efd;
}

.kecs_calendar_meeting{
  border-left-color:#198754;
}

.kecs_calendar_meeting .kecs_calendar_dot{
  background:#198754;
}

.kecs_calendar_event_type{
  border-left-color:#fd7e14;
}

.kecs_calendar_event_type .kecs_calendar_dot{
  background:#fd7e14;
}

.kecs_calendar_exam{
  border-left-color:#6f42c1;
}

.kecs_calendar_exam .kecs_calendar_dot{
  background:#6f42c1;
}

.kecs_calendar_legend{
  grid-column:1 / -1;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  padding:15px;
  background:#fff;
}

.kecs_calendar_legend_item{
  display:flex;
  align-items:center;
  gap:10px;
}
.kecs_calendar_horizontal_scroll{
  width:100%;
}
@media(min-width: 992px){
  .kecs_calendar_horizontal_scroll{
    overflow:visible;
  }
}
@media(max-width:991px){

  .kecs_calendar_header{
    grid-template-columns:1fr;
  }

  .kecs_calendar_left_controls,
  .kecs_calendar_right_controls{
    justify-content:center;
  }

  .kecs_calendar_center_controls{
    order:-1;
  }
   .kecs_calendar_horizontal_scroll{
    display:flex;
    flex-direction:column;
    overflow-x:auto;
    overflow-y:hidden;

    /* IMPORTANT */
    white-space:nowrap;
    -webkit-overflow-scrolling:touch;
  }

  /* Make each section wider so scroll activates */
  .kecs_calendar_weekdays,
  .kecs_calendar_days,
  .kecs_calendar_legend{
    min-width:900px;   /* adjust for feel */
  }

  /* prevent shrinking */
  .kecs_calendar_day{
    min-width:130px;
  }
   .kecs_calendar_grid{
    min-width:900px; /* enables horizontal scroll */
  }

}

@media(max-width:767px){

  .kecs_calendar_month_year_btn{
    font-size:22px;
  }

  .kecs_calendar_day{
    min-height:120px;
  }

}
  /*------------------------------------------
	= kecs_in_sitemap_section
	-------------------------------------------*/

  .sitemap-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    position: relative;
}

/* Pattern */
.sitemap-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Title */
.sitemap-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* List */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

/* Link */
.sitemap-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* ICON CIRCLE */
.sitemap-icon {
    width: 22px;
    height: 22px;
      background: linear-gradient(135deg,
      #84c225,
      #5f8f16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

/* Hover */
.sitemap-list a:hover {
    color: var(--secondary-color);
    transform: translateX(6px);
}
/* Responsive */
@media (max-width: 768px) {
    .sitemap-footer {
        text-align: center;
    }
}