@font-face {
	font-family: 'Manrope';
	font-display: swap;
	src: url(../fonts/Manrope-Regular.woff2) format('woff2'), url(../fonts/Manrope-Regular.woff) format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Manrope';
	font-display: swap;
  src: url(../fonts/Manrope-SemiBold.woff2) format('woff2'), url(../fonts/Manrope-SemiBold.woff) format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Poppins", sans-serif;
	font-display: swap;
	src: url(../fonts/Poppins-Light.ttf) format('ttf');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Poppins", sans-serif;
	font-display: swap;
	src: url(../fonts/Poppins-Regular.ttf) format('ttf');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Poppins", sans-serif;
	font-display: swap;
	src: url(../fonts/Poppins-Medium.ttf) format('ttf');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Poppins", sans-serif;
	font-display: swap;
	src: url(../fonts/Poppins-SemiBold.ttf) format('ttf');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Poppins", sans-serif;
	font-display: swap;
	src: url(../fonts/Poppins-Bold.ttf) format('ttf');
	font-weight: 700;
	font-style: normal;
}

:root {
  --hk-primary: #0d6efd;
  --hk-text: rgba(0, 0, 0, 1);
  --hk-muted: #6c757d;
  --hk-bg: #f8f9fa;
  --hk-deep: #00416b;
  --hk-ice: #eef5f9;
  --hk-topbar: #df2818;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--hk-text);
  background-color: #fff;
  cursor: none;
  margin: 0;
  font-weight: 400;
}

ul,ol{
  margin: 0;
  padding: 0;
}

.post, .page{
  margin: 0;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}
.cursor div {
  position: absolute;
  display: grid;
  place-items: center;
}
.cursor div div {
  border: 1px solid #df2818;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
  /* box-shadow: 0 0 50px 5px #df2818; */
}
.cursor div:nth-child(1),
.cursor div:nth-child(2) {
  width: 100%;
  height: 100%;
}
.cursor div:nth-child(1) {
  transition: transform 0.2s ease-out;
}
.cursor div:nth-child(2) {
  transition: transform 0.1s ease-out;
}
.cursor div:nth-child(2) div {
  border: 0px;
  background: rgb(223, 40, 24, 0.4);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.cursor.cursor-hover {
  width: 26px;
  height: 26px;
}
.cursor.cursor-hover div div {
  border: 1px solid #fff;
  /* background: rgba(255, 255, 255, 0.3); */
  transform: scale(2);
}

.cursor.cursor-hover div:nth-child(2) div {
  width: 14px;
  height: 14px;
  background-color: #fff;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.topbar {
  background-color: var(--hk-topbar);
}

.top-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 5px 0;
}

.topbar-left-side {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.topbar-left-side a {
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 13px;
  line-height: 18px;
}

.topbar-left-side a:hover {
  opacity: 0.7;
}

.topbar-right-side {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.social-icons:hover {
  transform: scale(1.1);
}

.header-logo {
  max-width: 135px;
  padding: 0;
  margin: 0;
}

.hk-navbar {
  background-color: var(--hk-deep) !important;
  min-height: 84px;
  padding: 5px 0;
}
.hk-navbar .navbar-brand {
  color: #fff;
}
.hk-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
}
.hk-navbar .navbar-toggler-icon {
  filter: invert(1);
}
.hk-navbar .nav-link {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 10px 20px !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  min-height: 54px;
  color: #fff;
}
.hk-navbar .nav-link:hover,
.hk-navbar .nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.hk-navbar .btn-primary {
  background: #fff;
  color: var(--hk-deep);
  border: none;
}
.hk-navbar .btn-primary:hover {
  filter: brightness(0.95);
}

.hk-navbar .nav-link img {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* Offcanvas tweaks */
.offcanvas .nav-link {
  color: var(--hk-text);
  padding: 0.75rem 0;
}
.offcanvas .nav-link i {
  margin-right: 0.5rem;
}
.offcanvas .nav-link:hover {
  color: var(--hk-deep);
}

/* Dropdown animation: slide up on open */
.dropdown-menu {
  background: rgba(255, 255, 255, 1);
  transform: translateY(70px);
  top: 70px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  border-radius: 10px;
  padding: 12px 0px;
  min-width: 200px;
  display: inline-flex;
  flex-direction: column;
  visibility: hidden;
  left: 0;
}
.dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.dropdown-item {
  border-radius: 0px;
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  padding: 8px 10px;
  color: #000;
}
.dropdown-item:hover {
  background-color: rgb(247 247 247);
}

.dropdown-item:visited{
  color: #000;
}

.dropdown-menu-icon-wrap {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 65 107 / 10%);
  border-radius: 5px;
  color: var(--hk-deep);
}

.dropdown-menu-heading {
  display: flex;
  flex-direction: column;
  width: calc(100% - 42px);
}

.dropdown-menu-heading p {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(100, 100, 100, 1);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.object-fit-cover {
  object-fit: cover;
}

.navbar .nav-link.dropdown-toggle:after {
  border: 0px;
  background-image: url(../images/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position: right;
  width: 10px;
  height: 5px;
  background-size: contain;
  margin: 0;
}

.btn-primary {
  --bs-btn-bg: var(--hk-primary);
  --bs-btn-border-color: var(--hk-primary);
}

.text-secondary {
  color: var(--hk-muted) !important;
}

.common-padding {
  padding: 100px 0;
}

/* New sections */
.bg-deep {
  background-color: var(--hk-deep);
}
.bg-ice {
  background-color: rgba(0, 64, 108, 0.06);
}

.partner-logo {
  opacity: 0.8;
  height: 28px;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.hero-mosaic img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.mosaic-sm img {
  width: 120px;
  height: 90px;
  border-radius: 0.75rem;
  object-fit: cover;
}

.header-section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 16px;
  margin-bottom: 65px;
}

.header-section-alt-center {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 40px;
}

.cmn-section-title {
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 0;
  letter-spacing: -2.75px;
  font-weight: 400;
  color: rgba(0, 65, 107, 1);
  text-transform: capitalize;
}

.cmn-section-sub {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -1.5px;
  margin: 0;
  color: rgba(0, 0, 0, 1);
}

.custom-tabbing-wrapper {
  column-gap: 20px;
  justify-content: center;
  margin-bottom: 120px;
}

.feature-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.feature-tile i {
  font-size: 1.5rem;
}
.feature-tile span {
  font-size: 0.95rem;
}

.card.lang {
  border: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
.card.lang .card-img {
  height: 160px;
  object-fit: cover;
  filter: saturate(1.1);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

/* hero banner */
.hero-banner-section,
.insight-sections {
  position: relative;
}

/* .hero-banner-section:before, */
.insight-sections:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.hero-banner-left-side {
  padding: 120px 0;
  max-width: 660px;
}

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

.hero-sub-tag {
  background-color: rgb(223 40 24 / 10%);
  color: var(--hk-topbar);
  padding: 6px 14px;
  display: inline-flex;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
}

.hero-title {
  font-size: 70px;
  line-height: 78px;
  font-weight: 500;
  margin: 0;
}

.hero-title .red-text {
  font-weight: 700;
  color: #df2818;
}

.hero-banner-text {
  font-weight: 300;
  font-size: 26px;
  line-height: 40px;
  color: #000;
  margin: 40px 0;
}

.hero-banner-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.our-partners-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.our-partners-title {
  font-size: 30px;
  line-height: 47px;
  font-weight: 300;
  color: rgba(100, 100, 100, 1);
  margin-bottom: 0;
}

.client-logo-marquee-wrapper {
  position: relative;
}

.client-logo-marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hk-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  overflow: hidden;
  animation-name: marquee-to-left;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.hk-logo-marquee {
  height: 60px;
  border-radius: 0px;
  padding: 0px 20px 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-right-side {
  max-width: 600px;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
}

.slider-box {
  height: 100%;
  width: 295px;
  overflow: hidden;
}

.slider-box .bx-wrapper {
  height: 100vh;
  box-shadow: none;
  border: 0;
  background: transparent;
  margin: 0;
}

.slider-box .bxslider li {
  position: relative;
  margin-bottom: 20px;
}

.slider-box .bxslider li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.slider-box img {
  width: 100%;
  display: block;
  border-radius: 50px;
}

@keyframes marquee-to-left {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-50%, 0);
  }
}
/* */

/* Services section refinements */
.tabbing-wrapper {
  display: flex;
  align-items: center;
  column-gap: 100px;
}

.tabbing-image-wrapper {
  max-width: 560px;
  width: 100%;
}

.tabbing-content-wrapper {
  max-width: calc(100% - 660px);
}

.tabbing-image {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.pill-tabs .nav-link {
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.04);
  color: #e6f1f7;
  border: 1px solid rgba(255, 255, 255, 1);
  min-width: 290px;
  min-height: 62px;
  font-size: 26px;
  line-height: 32px;
}
.pill-tabs .nav-link.active {
  background-color: rgba(255, 255, 255, 0.22);
}

.img-decor {
  position: relative;
}
.img-decor::before,
.img-decor::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.img-decor::before {
  transform: rotate(-4deg);
  background: rgba(2, 93, 152, 1);
  left: -15px;
}

.img-decor::after {
  left: 15px;
  background: rgba(5, 95, 153, 0.56);
  transform: rotate(4deg);
}

.check-list li {
  margin-bottom: 0.5rem;
}

.btn-accent {
  background: #df2818;
  border: 2px solid rgba(223, 40, 24, 1);
  color: #fff;
  border-radius: 999px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  min-width: 190px;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(223, 40, 24, 0.3);
}

.btn-accent:hover,
.btn-accent:visited {
  color: #fff;
  background-color: #df2818;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-accent-alt {
  background: transparent;
  border: 2px solid var(--hk-deep);
  color: var(--hk-deep);
  border-radius: 999px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  min-width: 190px;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 65, 107, 0.3);
}

.btn-accent-alt:hover {
  color: #fff;
  background-color: rgb(0 65 107);
  transform: translateY(-2px);
  box-shadow: none;
}

.common-sub-section-title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-content {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 70px;
}

.faculty-section-content {
  font-weight: 300;
  margin-bottom: 70px;
  line-height: 40px;
  font-size: 26px;
  text-align: center;
}

.tabbing-listing-title {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 32px;
}

.check-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 50px;
  font-size: 26px;
  line-height: 32px;
}

.check-list li {
  margin: 0;
  padding: 0 0 0 48px;
  background-image: url(../images/listing-up-arrow.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 17px;
  font-style: italic;
}

/* Counter card */
.counter-card {
  background: #000;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.counter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.counter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) -63.8%,
    rgba(0, 0, 0, 0.7) 68.65%
  );
}
.counter-content {
  position: relative;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.counter-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
  width: 100%;
}
.counter-seprator {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 30px 0 20px;
}

.counter-numbers {
  font-size: 64px;
  line-height: 72px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  margin-bottom: 15px;
}

.counter-title {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

/* welcome folks */
/* Language slider styles */
.faculty-section-combined {
  position: relative;
}

.faculty-section-combined:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  opacity: 0.2;
}

.bg-image-top:before {
  background-position: bottom;
}

.language-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.language-card img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  display: block;
}
.language-label {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: rgba(246, 246, 246, 0.04);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 1);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 500;
  min-width: 180px;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  width: calc(100% - 48px);
  transition: transform 0.3s ease-out;
}
.language-label:hover,
.language-label:visited {
  transform: translate(-50%, -10px);
  background: rgba(246, 246, 246, 0.2);
  color: #fff;
}
.language-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 88px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.lang-arrow {
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--hk-deep);
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b8c1c7;
}
.carousel-indicators .active {
  background-color: var(--hk-deep);
}

/* New horizontal slider behavior */
/* Slick slider placeholder styles (arrows/dots will be controlled by JS init) */
.language-slick .language-card {
  margin: 0 8px;
}
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin: 0px;
  padding: 0;
  list-style: none;
}
.slick-dots li {
  width: 8px;
  height: 8px;
}
.slick-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #b8c1c7;
  text-indent: -9999px;
  border: 0;
}
.slick-dots .slick-active button {
  background: var(--hk-deep);
}
.slick-arrow {
  background: transparent;
  border: 0;
  position: absolute;
  bottom: -114px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.study-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.slick-prev {
  left: 50%;
  margin-left: -80px;
  background-image: url(../images/slider-arrow-left.svg);
}

.slick-next {
  right: 50%;
  margin-right: -80px;
  background-image: url(../images/slider-arrow-right.svg);
}

.study-grid-item {
  padding: 32px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.study-grid-image {
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 255, 255, 0.24);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 32px;
}

.study-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.study-desc {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

/* about */
/* Testimonials */
.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  margin: 17.5px;
}
.testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(233, 239, 245, 1);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name {
  font-weight: 600;
  font-size: 20px;
}
.testi-role {
  font-size: 16px;
  color: rgba(113, 114, 118, 1);
}
.testi-stars {
  color: #ff7f22;
  letter-spacing: 2px;
  font-size: 24px;
}
.testi-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.testi-slick .testi-card {
  height: 100%;
}
.testi-slick .slick-dots {
  display: flex !important;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.testi-slick .slick-dots li {
  width: 8px;
  height: 8px;
}
.testi-slick .slick-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #b8c1c7;
  text-indent: -9999px;
  border: 0;
}
.testi-slick .slick-dots .slick-active button {
  background: var(--hk-deep);
}
.testi-slick .slick-arrow {
  background: transparent;
  border: 0;
  position: absolute;
  bottom: -64px;
  width: 44px;
  height: 44px;
}
.testi-slick .slick-prev {
  left: 50%;
  margin-left: -80px;
  background-image: url(../images/slider-arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.testi-slick .slick-next {
  right: 50%;
  margin-right: -80px;
  background-image: url(../images/slider-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}
/* Blog cards */
.blog-grid {
  align-items: stretch;
}
.blog-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.blog-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.blog-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 14px 16px;
}
.blog-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.blog-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 1);
}
.blog-sub {
  font-size: 13px;
  color: rgba(100, 100, 100, 1);
}
.blog-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
.blog-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  line-height: 24px;
  color: var(--hk-muted);
}
.blog-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.see-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(38, 38, 38, 1);
  border-radius: 999px;
  color: rgba(38, 38, 38, 1);
  background: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  min-width: 215px;
  transition: all 0.3s ease;
}
.see-all-btn:hover {
  background: rgba(38, 38, 38, 1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 38, 38, 0.3);
}

.about-us-grid-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-left-image-wrap,
.about-right-image-wrap {
  max-width: 620px;
  width: 100%;
}

.about-right-image-wrap .faculty-section-content {
  margin-bottom: 40px;
}

.about-left-image-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}

.about-left-image-wrap img {
  object-fit: cover;
  position: relative;
}

.cmn-about-img-wrap {
  position: relative;
}

.cmn-about-img-wrap:before {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-rect-img {
  max-width: 340px;
  height: 100%;
  border-radius: 30px;
}

.cmn-curv-img {
  max-width: 250px;
}

.about-bottom-radius {
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
}

.about-top-radius {
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
}

.about-top-img:before {
  width: 160px;
  height: 160px;
  background-color: rgba(121, 215, 255, 1);
  left: -90px;
  top: -24px;
}

.about-bottom-img:before {
  width: 120px;
  height: 120px;
  background-color: rgba(255, 206, 80, 1);
  bottom: -24px;
  right: -50px;
}

.about-bottom-radius-img:before {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 100, 118, 1);
  right: -25px;
  top: 100px;
}

.about-top-radius-img:before {
  width: 80px;
  height: 80px;
  background-color: rgba(95, 108, 222, 1);
  top: 55px;
  left: -46px;
}

.about-mission-vision-wrap,
.multiple-interpretation-content-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  margin-top: 70px;
}

.abt-msn-vsn-title {
  background-image: url(../images/about-up-arrow.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 17px;
  padding: 0 0 0 48px;
  margin-bottom: 34px;
}

.abt-msn-vsn-content {
  font-size: 22px;
  line-height: 34px;
  margin: 0;
  font-weight: 300;
}

/* get in touch */
.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contact-info {
  max-width: 630px;
  width: 100%;
}

.contact-description {
  font-size: 20px;
  color: #494949;
  line-height: 1.5;
  margin-bottom: 42px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 42px 30px;
}

.contact-maps-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.contact-item img {
  margin-top: 6px;
}

.contact-item span {
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}

.contact-link:hover span {
  color: var(--hk-topbar);
}

.social-section {
  margin-top: 100px;
  padding: 0 16px;
}

.social-section h3 {
  font-size: 26px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 14px;
}

.footer-social-icons {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.social-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff2b;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.social-icon-wrap:hover {
  transform: translateY(-2px);
}

.social-icon-wrap img {
  width: 30px;
  height: 30px;
}

.contact-form {
  max-width: 560px;
  width: 100%;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  font-size: 14px;
  color: #000000;
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 16px;
  background-color: #f7f7f7;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #000000;
  border: 1px solid #dfdfdf;
}

.form-group textarea {
  resize: none;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #b2b2b2;
  font-weight: 300;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #df2818;
  color: #ffffff;
  padding: 8px 34px;
  border: none;
  border-radius: 26px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #c41e0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(223, 40, 24, 0.3);
}

.contact-form-spacing {
  margin-bottom: 150px;
  position: relative;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.contact-heading {
  margin: 0 0 10px;
  color: var(--hk-deep);
  font-size: 20px;
}
.contact-link {
  font-size: 22px;
  color: #000;
}
.contact-link:hover { color: var(--hk-topbar); }
.contact-address { margin: 0; font-size: 16px; line-height: 26px; }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.contact-side-card {
  background: rgba(0, 65, 107, 0.06);
  border: 1px solid rgba(0, 65, 107, 0.12);
  border-radius: 18px;
  padding: 24px;
}
@media (max-width: 991.98px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
}

.newsletter-cta-section {
  padding-bottom: 120px;
}

.newletter-cta-bg {
  border-radius: 20px;
  background-image: url(../images/newsletter-cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 30px;
  position: relative;
}

.newsletter-bg-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgb(0, 65, 107, 0.9);
}

.cta-section-wrap {
  position: relative;
}

.student-image {
  position: absolute;
  bottom: -80px;
  width: 300px;
  left: 30px;
}

.newsletter-cta-content-wrapper {
  position: relative;
  max-width: calc(100% - 500px);
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-slanted {
  position: relative;
  padding: 200px 0 30px;
}

.footer-slanted:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/footer-bg-image.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  width: 134px;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 66%;
}

.footer-column {
  flex: 1;
}

.footer-column + .footer-column {
  margin-top: 30px;
}

.footer-column h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer-column ul.footer-link-badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: unset;
  row-gap: 10px;
  column-gap: 10px;
}

.footer-column ul.footer-link-badge-wrapper li {
  margin: 0px;
}

.footer-column ul.footer-link-badge-wrapper li a {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 3px 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255 255 255 / 10%);
  color: #fff;
  transition: all 0.3s;
}

.footer-column ul.footer-link-badge-wrapper li a:hover {
  transform: scale(1.1);
  background-color: rgb(255 255 255 / 20%);
}

.footer-column ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-contact-details {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer-contact .footer-contact-links {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}

.footer-contact .footer-contact-links img{
  margin-top: 4px;
}

.footer-contact a img {
  width: 18px;
  height: 18px;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-contact h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item img {
  margin-top: 6px;
}

.footer-contact-item span {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.footer-input-form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 0px;
}

.form-group .footer-input {
  border: 1px solid #fff;
  border-radius: 6px;
  background-color: #ffffff1a;
  color: #fff;
  padding: 4px 10px;
  min-height: 44px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #fff;
}

.form-group .footer-input:focus {
  outline: none;
}

.form-group .footer-input::placeholder {
  color: #fff;
}

.footer-form-submit {
  background-color: #fff;
  color: var(--hk-deep);
  border-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 1px solid #fff;
}

.footer-form-submit:hover,
.footer-form-submit:focus,
.footer-form-submit:active {
  background-color: #ffffff52 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.footer-sec-border-top {
  border-top: 1px solid rgb(255 255 255 / 40%);
}

.scrolling-section {
  position: relative;
  overflow: hidden;
  background-color: #00406c21;
  padding: 25px 0;
}

.scrolling-section::before,
.scrolling-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background-color: transparent;
  /* background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #ffffff 100%); */
  width: 160px;
}

.scrolling-section::before {
  z-index: 10;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(250, 251, 252, 0.03) 106.33%
  );
}

.scrolling-section::after {
  right: 0;
  left: auto;
  background: linear-gradient(
    270deg,
    #ffffff 0%,
    rgba(250, 251, 252, 0.03) 106.33%
  );
}

.scrolling-text {
  display: flex;
  animation: apsro-scroller 15s linear infinite;
}

.scrolling-text-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scrolling-text-wrapper li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-size: 28px;
  line-height: 36px;
  white-space: nowrap;
}

.scrolling-text-wrapper li svg {
  width: 20px;
  height: 20px;
}

.scrolling-text-wrapper + .scrolling-text-wrapper,
.scrolling-text-wrapper li + li {
  margin-left: 40px;
}

@keyframes apsro-scroller {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

.inner-banner-section {
  /* margin: 20px; */
}
.inner-banner-wrapper {
  padding: 50px 15px;
  background-color: #df2818;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 25px;
  text-align: center;
  border-radius: 0px;
}
.inner-banner-title {
  margin: 0;
  font-size: 42px;
  line-height: 48px;
}

.hero-banner-desc{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  font-size: 20px;
  line-height: 28px;
}

/* Image variant for inner banner */
.inner-banner-image {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px;
  overflow: hidden;
}
.inner-banner-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}
.inner-banner-image .inner-banner-wrapper {
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 110px 15px;
}
.inner-banner-image .inner-banner-title {
  color: #fff;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -2px;
}

/* Reusable tall inner banner */
.inner-banner-xl .inner-banner-wrapper {
  min-height: 400px;
  padding: 70px 15px;
}
.inner-banner-xl .inner-banner-title {
  font-size: 64px;
  line-height: 72px;
}

/* Intro compact */
.intro-lead {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  font-weight: 300;
}

/* Manifesto split */
.manifesto-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.manifesto-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 22px 22px 22px 18px;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
}
.manifesto-card .bar {
  border-radius: 6px;
  background: var(--hk-deep);
}
.manifesto-card h3 {
  margin: 2px 0 8px;
  font-size: 22px;
}
.manifesto-card p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}

/* Professional timeline */
.hk-timeline {
  position: relative;
  padding-top: 10px;
  margin-top: 40px;
}
.hk-timeline:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 3px;
  background: rgba(0, 65, 107, 0.3);
  border-radius: 3px;
}
.hk-timeline-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tl-item {
  text-align: center;
  position: relative;
  padding-top: 16px;
}
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #df2818;
  border: 3px solid #fff;
  margin: 0 auto;
  position: relative;
  top: 36px;
  box-shadow: 0 0 0 6px rgba(223, 40, 24, 0.18);
}
.tl-year {
  font-weight: 700;
  color: var(--hk-deep);
  margin-top: 38px;
  font-size: 16px;
}
.tl-caption {
  font-size: 13px;
  color: #444;
  max-width: 160px;
  margin: 6px auto 0;
}

/* Stat mosaic */
.about-stats-grid-wrapper {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  column-gap: 20px;
  padding: 0;
}

.about-stats-counter-seprator{
  width: 100%;
  border-top: 1px solid rgb(0 65 107);
  margin: 30px 0 20px;
}

.about-stats-counter-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255 255 255 / 80%);
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 20px;
}

.about-stats-counter-numbers{
  font-size: 44px;
  line-height: 54px;
  color: rgb(0 65 107);
  font-family: "Manrope", sans-serif;
  margin-bottom: 15px;
}

.about-stats-counter-title{
  color: rgb(0 65 107);
  font-size: 18px;
  line-height: 24px;
}

.legacy-description .section-content{
  text-align: center;
}

.legacy-description .section-content:first-child{
  margin-bottom: 30px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.value-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--hk-deep);
  margin: 0 0 6px;
}
.value-text {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Empower banner (About page) */
.empower-banner {
  position: relative;
}
.empower-bg {
  position: relative;
  min-height: 520px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.empower-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55));
}
.empower-content {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.play-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0.9;
  animation: spin 18s linear infinite;
}
.circular-text-content {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  fill: #ffffff;
}
.play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #df2818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(223, 40, 24, 0.45);
}
.play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.empower-title {
  color: #fff;
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin: 0;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .empower-bg,
  .empower-content { min-height: 380px; }
  .empower-title { font-size: 34px; }
  .play-wrap { width: 140px; height: 140px; margin-bottom: 20px; }
  .circular-text { width: 140px; height: 140px; }
  .play-btn { width: 70px; height: 70px; }
  .play-icon { border-left-width: 14px; border-top-width: 9px; border-bottom-width: 9px; }
}
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Welcome split */
.welcome-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.welcome-image {
  position: relative;
  height: 550px;
}

.welcome-image:before,
.welcome-image:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.welcome-image:before {
  left: -40px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  background-color: rgb(156 103 249);
}

.welcome-image:after {
  right: -40px;
  top: 50px;
  width: 60px;
  height: 60px;
  background-color: rgba(121, 215, 255, 1);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  position: relative;
  z-index: 2;
}

.welcome-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.welcome-kpis li {
  padding: 8px 12px;
  border: 1px solid rgba(0, 65, 107, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: #0b3f63;
  background: #fff;
}

/* Vision & Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.vm-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  border-radius: 20px;
  background-color: rgba(0, 64, 108, 0.06);
  /* border: 2px solid rgba(0, 64, 108, 0.5); */
}
.vm-grid-icon{
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  color: var(--hk-deep);
  opacity: 0.4;
}
.vm-grid-icon svg{
  width: 100%;
  height: 100%;
}
.vm-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--hk-deep);
  margin: 0 0 12px;
}
.vm-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(0, 65, 107, 0.2);
}
.vm-text {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-weight: 300;
}

/* Highlights grid (replacing timeline) */
.highlights-section {
  position: relative;
}
.highlights-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.12;
}
.highlights {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.highlight-card {
  background: #fff;
  border: 0;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(0, 65, 107, 0.2);
  flex: 0 0 auto;
}

.highlight-icon img{
  width: 26px;
}
.highlight-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--hk-deep);
  margin: 0 0 8px;
}
.highlight-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
  font-weight: 300;
}

/* What we do text block */
.whatwedo-block {
  max-width: 1000px;
  margin: 0 auto;
}
.whatwedo-card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

/* What We Do - new layout */
.wwd-intro {
  margin: 0 auto 100px;
}
.wwd-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wwd-left{
  width: 450px;
}
.wwd-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.wwd-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* .wwd-step-icon{
  width: 50px;
  height: 50px;
} */
.wwd-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 0;
  padding-bottom: 26px;
  /* gap: 10px */
}
.wwd-step:last-child {
  padding-bottom: 0;
}
.wwd-step-content{
  /* width: calc(100% - 60px); */
}
.wwd-step-title {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--hk-topbar);
  font-weight: 600;
}
.wwd-step-title .wwd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 65, 107, 0.2);
  margin-right: 10px;
}
.wwd-step-text {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .wwd-grid { grid-template-columns: 1fr; }
}

/* Team page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--hk-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.team-name {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--hk-deep);
}
.team-role {
  margin: 0 0 10px;
  font-size: 14px;
  color: #444;
}
.team-bio {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  .team-grid { grid-template-columns: 1fr; }
}
.whatwedo-card p {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 0;
}
.whatwedo-card p {
  margin: 0;
  font-size: 18px;
  line-height: 32px;
}

@media (max-width: 991.98px) {
  .welcome-split {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .highlights {
    grid-template-columns: 1fr;
  }
}

/* Capabilities cards */
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cap-card {
  background: #fff;
  border: 1px solid rgba(0, 65, 107, 0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.cap-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(0, 65, 107, 0.2);
}
.cap-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--hk-deep);
}
.cap-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}
.cap-list {
  margin: 10px 0 0;
  padding-left: 18px;
}
.cap-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

@media (max-width: 991.98px) {
  .welcome-panel {
    grid-template-columns: 1fr;
  }
  .intro-wrap {
    padding: 0 10px;
  }
  .manifesto-split {
    grid-template-columns: 1fr;
  }
  .hk-timeline-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }
  .stat-mosaic {
    grid-template-columns: 1fr;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .about-gallery .rect {
    height: 220px;
  }
  .about-gallery .circle {
    width: 180px;
    height: 180px;
  }
  .about-gallery .square {
    width: 240px;
    height: 170px;
  }
}

.featured-team-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.faculty-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.4s;
}
.faculty-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: #c7d2fe;
}

/* Header */
.faculty-header {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 65, 107, 1), rgba(0, 65, 107, 0.9));
  color: #fff;
  padding: 28px 12px 36px;
  text-align: center;
}
.faculty-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}
.header-content {
  position: relative;
  z-index: 1;
}
.profile-img {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.profile-img img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.faculty-card:hover .profile-img img {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #92400e;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.faculty-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.designation {
  color: #dbeafe;
  font-weight: 600;
  margin: 4px 0;
}
.experience {
  font-size: 0.9rem;
  color: #bfdbfe;
}

/* Wave */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  color: #fff;
}

/* Content */
.faculty-content {
  padding: 20px;
}
.faculty-section {
  margin-bottom: 24px;
}
.faculty-section h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags span {
  background: #dbf1ff;
  color: #00416b;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.faculty-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faculty-section p,
.faculty-section ul li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 6px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.stats .num {
  font-size: 1.4rem;
  font-weight: bold;
}
.stats .blue { color: #2563eb; }
.stats .purple { color: #7c3aed; }
.stats .label {
  font-size: 12px;
  color: #6b7280;
}

/* Actions */
.actions-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.member-social-icon-wrap{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dbf1ff;
  color: #00416b;
  border-radius: 5px;
}

.member-social-icon-wrap svg{
  width: 18px;
}

.member-social-icon-wrap:hover{
  transform: translateY(-2px);
}

.faculty-cta-card {
  background-image: url(../images/newsletter-cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 50px 15px;
  border: 1px solid #f3f4f6;
  max-width: 100%;
  margin: 100px 0 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faculty-cta-card:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 65 107 / 90%);
}

.faculty-card-wrapper{
  position: relative;
  z-index: 2;
}

.faculty-cta-card h3 {
  font-size: 42px;
  line-height: 48px;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}

.faculty-cta-card p {
  font-size: 18px;
  line-height: 28px;
  max-width: 60%;
  margin: 30px auto;
  color: #fff;
}

.faculty-cta-card .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .faculty-cta-card .buttons {
    flex-direction: row;
  }
}

/* FAQ styles */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 991.98px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-accordion .accordion-item {
  border: 0;
  border-left: 5px solid transparent;
  padding: 18px 22px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-accordion .accordion-item.active{
  border-left: 5px solid #df2818;
  background: rgba(223, 40, 24, 0.06);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 18px;
  color: #101828;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.faq-accordion .accordion-button:focus{
  outline: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #df2818;
}

.faq-accordion .accordion-body {
  padding: 20px 0 0 0;
  background: transparent;
}

.cms-page-bg{
  position: relative;
}

.cms-page-bg:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.cms-styling{
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 0, 0, 1);
}

.cms-styling p,
.cms-styling ul li{
  margin-bottom: 10px;
}

.cmn-section + .cmn-section{
  margin-top: 30px;
}

.cmn-section h2{
  font-size: 28px;
  line-height: 36px;
}

.cms-footer{
  font-size: 14px;
  line-height: 26px;
  margin-top: 40px;
}

.cms-footer p{
  margin: 0;
}

.interpretation-grid{
  grid-template-columns: repeat(2, 1fr);
}

.interpretation-card:first-child{
  grid-column: span 2;
}

.interpretation-card:not(:first-child){
  flex-direction: column;
}

.common-inner-section-content{
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.common-multi-section-wrapper{
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.common-multi-section .abt-msn-vsn-title{
  margin-bottom: 20px;
}

.translation-right-content .section-content{
  margin-bottom: 30px;
}

.alt-check-list-wrap.check-list{
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}

.alt-check-list-wrap.check-list li{
  background-image: url(../images/about-up-arrow.svg);
  font-weight: 300;
  background-position: top 6px left 0;
}

.bg-deep .alt-check-list-wrap.check-list li{
  background-image: url(../images/listing-up-arrow.svg);
}

.translation-image-wrap,
.translation-about-image-wrap{
  width: 100%;
  height: 100%;
}

.translation-center-image-wrap{
  position: relative;
}

.translation-image-wrap img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}

.translation-center-image-wrap img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}

.translation-center-image-wrap:before{
  content: '';
  position: absolute;
  background-image: url(../images/bg-stroke-img.png);
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  opacity: 0.6;
}

.bg-deep .translation-center-image-wrap:before{
  background-image: url(../images/white-bg-stroke-img.png);
}

.restrict-content{
  overflow: hidden;
}

/* .translation-image-wrap:before,
.translation-image-wrap:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 95, 153, 0.56);
  border-radius: 30px;
}

.translation-image-wrap:before{
  left: -15px;
  top: -15px;
}

.translation-image-wrap:after{
  left: 15px;
  bottom: -15px;
} */

.translation-counter-content{
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.translation-counter-content .counter-content-grid{
  max-width: 100%;
}

.footer-counter-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.footer-counter-content-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.footer-counter-numbers{
  font-size: 32px;
  line-height: 40px;
  font-family: "Manrope", sans-serif;
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-counter-title{
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}

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

.footer-made-with-text{
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  min-width: 230px;
}

.footer-center-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
}

.footer-center-text p{
  margin: 0;
}

.footer-right-page-link{
  display: flex;
  align-items: center;
  column-gap: 15px;
  min-width: 230px;
}

.footer-page-link{
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 22px;
}

.footer-page-link:hover{
  color: rgba(255, 255, 255, 1);
}

.video-popup-wrapper .modal-dialog{
  max-width: 800px;
}

.video-popup-wrapper .modal-content{
  background-color: transparent;
  border: 0;
  border-radius: 10px;
}

.video-popup-wrapper .modal-content .btn-close{
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  opacity: 1;
  z-index: 1;
  background: no-repeat;
}

.video-popup-wrapper .modal-body{
  padding: 0;
}

.about-video{
  aspect-ratio: 16 / 9;
  max-inline-size: 100%;
}

.interpretation-image-wrap{
  position: relative;  
}

.interpretation-image-wrap img{
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.image-left-pattern:before,
.image-right-pattern:before{
  content: '';
  position: absolute;
  top: 0;
  border-radius: 20px;
  background: rgba(5, 95, 153, 0.56);
  width: 100%;
  height: 100%;
}

.image-left-pattern:before{
  transform: rotate(-4deg);
  left: -5px;
}

.image-right-pattern:before{
  left: 5px;
  transform: rotate(4deg);
}

.interpretation-header-section{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.center-interpretation-img{
  position: relative;
}

.center-interpretation-img img{
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.center-interpretation-img:before,
.center-interpretation-img:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
}

.center-interpretation-img:before {
  transform: rotate(-4deg);
  background: rgba(2, 93, 152, 1);
  left: -15px;
}

.center-interpretation-img:after{
  left: 15px;
  background: rgba(5, 95, 153, 0.56);
  transform: rotate(4deg);
}

.header-content-inner-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-content-inner-section .section-content{
  margin-bottom: 50px;
}

.center-content-inner-section-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  margin-top: 50px;
}

.center-content-section{
  display: flex;
  flex-direction: column;
}