:root {
  --primary-gradient: linear-gradient(90deg, rgb(57, 64, 152) 16.04%, rgb(107, 114, 205) 100%);
  --primary-color: #24263c;
  --secondary-color: #394098;
  --dark-color: #24263c;
  --body-text-color: #6c7179;
  --border-color: #e0e0e0;
  --light-color: #fff;
  --gray-color: #f8f8f8;
  --global-font: 'Geist', sans-serif;
  --display-font: 'DM Serif Display', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--global-font);
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

.flex-ctr-spb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.flex-ctr-ctr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flex-ctr {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flex-start {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hcel-container {
  width: clamp(320px, 95%, 1310px);
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .hcel-container {
    width: 100%;
  }
}

@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}

/*** Header Styles ***/
.hcel-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
  background-color: var(--light-color);
}

/* Top Bar Styles */
.hcel-header__top-bar {
  padding: 12px 0 16px;
  border-bottom: 1px solid #e0e0e0;
}

/* .hcel-header__top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.hcel-header__contact-info {
  gap: 16px;
}

.hcel-header__contact-item {
  gap: 10px;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.hcel-header__contact-item:hover {
  opacity: 1;
}

.hcel-header__contact-icon {
  width: 32px;
  height: 24px;
  border-radius: 38px;
  border: 1px solid #e0e0e0;
}

.hcel-header__contact-text {
  font-family: var(--global-font);
}

.hcel-header__cta-button,
.hcel-offcanvas__cta-button {
  display: inline-block;
  padding: 16px 24px;
  text-transform: uppercase;
  background-color: var(--dark-color);
  color: var(--light-color);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hcel-header__cta-button:hover {
  opacity: 0.85;
}

.hcel-header__cta-button.staggered-text-btn:hover {
  opacity: 1;
}

/* Staggered Text Effect */
.staggered-text-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.staggered-text-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.staggered-text-default,
.staggered-text-hover {
  display: inline-block;
  transition: all 0.1s ease-out;
  white-space: nowrap;
}

.staggered-text-default {
  opacity: 1;
  transform: translateY(0);
}

.staggered-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
}

.staggered-text-btn:hover .staggered-text-hover {
  opacity: 1;
  transform: translateY(0);
}
.staggered-text-btn:hover .staggered-text-default span {
  opacity: 0;
  transform: translateY(-100%);
}

.staggered-text-btn .staggered-text-hover span {
  transform: translateY(100%);
}
.staggered-text-btn:hover .staggered-text-hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Individual letter animations */
.staggered-text-default span,
.staggered-text-hover span {
  display: inline-block;
  transition: all 0.3s ease-out;
  will-change: transform, opacity;
  transition-delay: 0ms; /* Default delay, will be overridden by jQuery */
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .staggered-text-default span,
  .staggered-text-hover span {
    transition: opacity 0.1s ease;
  }

  .staggered-text-default span:nth-child(n),
  .staggered-text-hover span:nth-child(n) {
    transition-delay: 0ms;
  }
}

/* Main Navigation Styles */
.hcel-header__main-nav {
  padding: 12px 0;
}

.hcel-header__nav-content {
}

.hcel-header__logo {
  display: inline-block;
  width: 55px;
}

.hcel-header__logo-image {
  width: 100%;
  object-fit: contain;
}

.hcel-header__logo-image--alt {
  display: none;
}

.hcel-header__nav-menu {
  gap: 5px;
}

.hcel-header__nav-item {
  position: relative;
}

.hcel-header__nav-item.hcel-header__nav-item--has-submenu .hcel-header__nav-link {
  cursor: pointer;
  pointer-events: none;
}

.hcel-header__nav-item.hcel-header__nav-item--has-submenu:hover .hcel-header__nav-link {
  pointer-events: auto;
}

.hcel-header__nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  padding: 12px;
  transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  position: relative;
}

.hcel-header__nav-link--active {
  font-size: 16px;
}

.hcel-header__nav-link::after {
  position: absolute;
  content: '';
  height: 1px;
  width: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.hcel-header__nav-link:hover::after,
.hcel-header__nav-link--active::after {
  width: 100%;
}

/* Submenu Arrow */
.hcel-header__nav-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
  color: inherit;
}

.hcel-header__nav-arrow svg {
  display: block;
  width: 8px;
  height: 8px;
}

.hcel-header__nav-item--has-submenu:hover .hcel-header__nav-arrow {
  transform: rotate(180deg);
}

/* Submenu Styles */
.hcel-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 8px;
}

.hcel-header__nav-item--has-submenu:hover .hcel-header__submenu,
.hcel-header__nav-item--has-submenu.is-hovered .hcel-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hcel-header__submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hcel-header__submenu-link {
  display: block;
  font-family: var(--global-font);
  padding: 8px;
  font-weight: 400;
  color: #6c7179;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.1;
}

.hcel-header__submenu-link:hover {
  background-color: #f8f8f8;
  color: var(--dark-color);
}

/* .hcel-header__nav-link::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--dark-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}

.hcel-header__nav-link:hover::before,
.hcel-header__nav-link--active::before {
  opacity: 1;
} */

.hcel-mobile-menu {
  display: none;
}

.hcel-header__mobile-menu {
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
  color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hcel-header__nav-menu,
  .hcel-header__top-bar,
  .hcel-header__cta-button {
    display: none;
  }

  .hcel-mobile-menu {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Hide submenu on mobile - will be handled in mobile menu */
  .hcel-header__submenu {
    display: none;
  }
}

/* Offcanvas Mobile Menu */
.hcel-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.hcel-offcanvas.is-open {
  pointer-events: auto;
}

.hcel-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 300ms ease;
  will-change: opacity;
  z-index: -1;
}

.hcel-offcanvas.is-open .hcel-offcanvas__backdrop {
  opacity: 1;
}

.hcel-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.hcel-offcanvas.is-open .hcel-offcanvas__panel {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.hcel-offcanvas__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 8px 0 0;
  transition: 0.2s;
}

.hcel-offcanvas__close:hover {
  transform: rotate(180deg);
}

.hcel-offcanvas__nav {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  padding: 0 20px;
  margin: 15px 0 24px;
}

.hcel-offcanvas__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hcel-offcanvas__item {
  position: relative;
}

.hcel-offcanvas__item--has-submenu .hcel-offcanvas__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.hcel-offcanvas__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--body-text-color);
}

.hcel-offcanvas__item--has-submenu.is-open .hcel-offcanvas__arrow {
  transform: rotate(180deg);
}

.hcel-offcanvas__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 8px;
}

.hcel-offcanvas__item--has-submenu.is-open .hcel-offcanvas__submenu {
  max-height: 300px;
}

.hcel-offcanvas__submenu-link {
  display: block;
  padding: 12px 20px;
  color: var(--body-text-color);
  font-size: 14px;
  border-radius: 6px;
  margin: 4px;
  transition: all 0.2s ease;
}

.hcel-offcanvas__submenu-link:hover {
  background: #e9ecef;
  color: var(--dark-color);
  transform: translateX(4px);
}

.hcel-offcanvas__link {
  display: block;
  padding: 14px 12px;
  color: var(--dark-color);
  border-radius: 10px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hcel-offcanvas__link--active,
.hcel-offcanvas__link:hover {
  background: #f5f6f8;
  transform: translateX(2px);
}

.hcel-offcanvas__cta-button {
  /* width: 100%; */
  justify-content: center;
  margin: auto 16px 16px;
}

@media (min-width: 992px) {
  .hcel-offcanvas {
    display: none !important;
  }
}

@media (max-width: 480px) {
}

/* ***Section Header*** */
.hcel-section-header {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hcel-section-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hcel-section-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcel-section-header__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hcel-section-header__badge {
  display: inline-block;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 32px;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
}

.hcel-section-header__badge span {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.5px;
}

.hcel-section-header__title {
  font-size: 44px;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.2;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hcel-section-header__title span {
  font-weight: 400;
}

@media (max-width: 768px) {
  .hcel-section-header {
    padding: 80px 0 60px;
  }

  .hcel-section-header__title {
    font-size: 32px;
  }

  .hcel-section-header__badge {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hcel-section-header__title {
    font-size: 28px;
  }
}

/* ***Footer Styles*** */
.hcel-footer {
  background: linear-gradient(
    82.41deg,
    rgb(22, 49, 64) 6.17%,
    rgb(22, 35, 46) 20.9%,
    rgb(22, 26, 34) 52.82%,
    rgb(22, 37, 49) 82.43%,
    rgb(22, 49, 64) 95.19%
  );
  color: var(--light-color);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hcel-footer__bg-plus-pattern {
  position: absolute;
  height: auto;
  width: 100%;
  left: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}

.hcel-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at center,
    transparent 0.7px,
    rgba(255, 255, 255, 0.02) 0.7px,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Top Section */
.hcel-footer__top {
  text-align: center;
  margin: 0 auto 40px;

  z-index: 2;
}

.hcel-footer__title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--global-font);
  position: relative;
  max-width: 660px;
  margin: 0 auto 30px;
  margin-bottom: 85px;
}

.hcel-footer__title span {
  font-style: italic;
  font-family: var(--display-font);
  font-weight: 400;
}

.hcel-footer__title::before,
.hcel-footer__title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  width: 50vw;
  pointer-events: none;
}

.hcel-footer__title::before {
  right: 100%;
}

.hcel-footer__title::after {
  left: 100%;
}

.hcel-footer__newsletter-form {
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.hcel-footer__newsletter-input {
  flex: 1;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--light-color);
  font-size: 16px;
  font-family: var(--global-font);
  transition: all 0.3s ease;
  width: 100%;
}

.hcel-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hcel-footer__newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.hcel-footer .hcel-footer__newsletter-button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--light-color);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  /* border: 1px solid transparent; */
}

.hcel-footer__newsletter-button .hcel-fancy-icon-wrap {
  background: transparent;
  height: 100%;
  width: 100%;
}

.hcel-footer__newsletter-button .hcel-gradient-border::after {
  background: conic-gradient(from 90deg, transparent 0%, white 7%, transparent 35%, transparent 100%);
}

.hcel-footer__newsletter-button .hcel-fancy-icon-wrap path {
  stroke: var(--light-color);
}

/* .hcel-footer__newsletter-button::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    108.95deg,
    rgba(255, 255, 255, 0.94) 13.53%,
    rgba(255, 255, 255, 0) 92.23%
  );
  border-radius: 50%;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
} */

/* .hcel-footer__newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 64, 152, 0.4);
} */

/* Middle Section */
.hcel-footer__middle {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.hcel-footer__nav {
  gap: 30px;
}

.hcel-footer__nav-link {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--global-font);
  transition: all 0.3s ease;
  position: relative;
}
/*
.hcel-footer__nav-link:hover {
  color: #22c55e;
} */

.hcel-footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--light-color);
  transition: width 0.3s ease;
}

.hcel-footer__nav-link:hover::after {
  width: 100%;
}

.hcel-footer__contact {
  gap: 20px;
}

.hcel-footer__contact-item {
  gap: 10px;
  opacity: 0.8;
  transition: 0.3s;
  white-space: nowrap;
}

.hcel-footer__contact-item.hcel-footer__address {
  white-space: wrap;
}

.hcel-footer__contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hcel-footer__contact-text {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--global-font);
  line-height: 1.4;
  color: var(--light-color);
  transition: 0.3s;
  flex: 1;
}

.hcel-footer__contact-item:hover {
  opacity: 1;
}

.hcel-footer__address {
  max-width: 350px;
}

/* Bottom Section */
.hcel-footer__bottom {
  position: relative;
  z-index: 2;
}

.hcel-footer__copyright p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--global-font);
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hcel-footer__social {
  gap: 16px;
}

.hcel-footer__social-link {
  height: 21px;
  width: 21px;
  transition: 0.3s;
}

.hcel-footer__social-link:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1280px) {
  /* .hcel-footer__nav {
    flex-direction: column;
    align-items: flex-start;
  } */

  .hcel-footer__title {
    font-size: 42px;
  }

  .hcel-footer__middle {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .hcel-footer__title {
    font-size: 38px;
  }
  .hcel-footer__bottom {
    flex-direction: column-reverse;
  }

  .hcel-footer__contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hcel-footer__contact-item {
    gap: 8px;
  }

  .hcel-footer__contact-item.hcel-footer__address {
    /* max-width: max-content; */
  }

  .hcel-footer__address .hcel-footer__contact-text {
    width: auto;
    white-space: wrap;
  }

  /*
.hcel-footer {
  padding: 60px 0 30px;
}
.hcel-footer__top {
  margin: 0 auto 40px;
}

.hcel-footer__title {
  font-size: 50px;
  max-width: 660px;
  margin: 0 auto 30px;
}
.hcel-footer__newsletter-button {
  width: 40px;
  height: 40px;
}
.hcel-footer__middle {
  padding: 0 0 24px;
  margin-bottom: 22px;
}
.hcel-footer__nav {
  gap: 30px;
}
.hcel-footer__nav-link {
  font-size: 16px;
}
.hcel-footer__contact {
  gap: 20px;
}
.hcel-footer__contact-icon {
  width: 32px;
  height: 24px;
.hcel-footer__copyright p {
  font-size: 14px;
}
.hcel-footer__social {
  gap: 16px;
}

.hcel-footer__social-link {
  width: 50px;
  height: 34px;
  border-radius: 38px;
}
*/
}
@media (max-width: 767px) {
  .hcel-footer__title {
    font-size: 36px;
  }

  .hcel-footer__newsletter-button {
    width: 36px;
    height: 36px;
  }

  .hcel-footer__newsletter-input {
    padding: 13px 20px;
  }

  .hcel-footer {
    padding: 40px 0 20px;
  }

  .hcel-footer__title {
    margin-bottom: 20px;
  }

  .hcel-footer__newsletter-form {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* .hcel-footer__newsletter-input {
    width: 100%;
    max-width: 300px;
  } */

  .hcel-footer__middle {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hcel-footer__nav {
    justify-content: center;
    gap: 24px;
  }

  .hcel-footer__contact {
    text-align: center;
  }

  .hcel-footer__contact-item {
    gap: 6px;
    justify-content: center;
  }

  .hcel-footer__bottom {
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hcel-footer__nav {
    flex-direction: column;
    gap: 16px;
  }

  .hcel-footer__contact-item {
    flex-direction: column;
    gap: 8px;
  }

  .hcel-footer__copyright p {
    font-size: 12px;
  }

  .hcel-footer__social {
    gap: 12px;
  }

  .hcel-footer__social-link {
    width: 36px;
    height: 36px;
  }
}

/* ***Fancy Icon Design*** */
.hcel-fancy-btn {
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
}

/* background animation */
.hcel-fancy-btn__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 100px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.hcel-fancy-btn__bg::after {
  content: '';
  position: absolute;
  height: 5px;
  width: 5px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0);
  background: var(--light-color);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hcel-fancy-btn:hover .hcel-fancy-btn__bg::after {
  transform: translateY(-50%) scale(120);
}

/* icon animation */
.hcel-fancy-icon-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-color);
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* .hcel-fancy-icon-wrap::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--light-color);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hcel-fancy-btn:hover .hcel-fancy-icon-wrap::after {
  transform: translate(-50%, -50%) scale(20);
} */

.hcel-fancy-icon {
  transition:
    transform 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    filter 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform, opacity, filter;
  height: 20px;
  width: 20px;
}

.hcel-fancy-btn:hover .hcel-fancy-icon--default {
  transform: translate(100%, -100%);
  opacity: 0;
}

.hcel-fancy-icon--hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-150%, 50%);
  opacity: 0;
  /* display: none; */
}

.hcel-fancy-btn:hover .hcel-fancy-icon--hover {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* @media (max-width: 767px) {
  .hcel-fancy-icon-wrap {
    height: 32px;
    width: 32px;
  }
} */

/* Projects Images Section */
.hcel-projects-images {
  margin: 40px 0;
}

.hcel-projects-images__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hcel-projects-images__item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hcel-projects-images__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* blog meta */
.hcel-details__meta {
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: var(--body-text-color);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
/* Share Section */
.hcel-share-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 0 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.hcel-share-label {
  font-weight: 500;
  color: var(--dark-color);
  font-size: 18px;
}

.hcel-share-buttons {
  display: flex;
  gap: 12px;
}

.hcel-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.hcel-share-btn:hover {
  transform: translateY(-2px);
}

.hcel-share-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hcel-projects-images__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hcel-share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hcel-share-buttons {
    gap: 8px;
  }

  .hcel-share-btn {
    width: 36px;
    height: 36px;
  }

  .hcel-share-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ***Rich Text*** */
.hcel-details__links {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.hcel-details__row {
  max-width: 1060px;
  margin: 30px auto 0;
}
.hcel-details__row,
.hcel-rich-content-wrap,
.hcel-details__links {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 20px;
}

.hcel-details__col__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 12px;
  font-family: var(--global-font);
  line-height: 1.2;
}

.hcel-details__col__title:last-child {
  margin: 0;
}

.hcel-details__col--label,
.hcel-rich-content-title,
.hcel__links-title {
  font: 500 24px/1.2 var(--global-font);
  color: var(--dark-color);
  margin: 0;
  min-width: 110px;
}

.hcel-details__col--content,
.hcel-rich-content-wrap .hcel-rich-content {
  flex: 1;
}

.hcel-details__links-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.hcel-details__link {
  font: 400 18px/1.2 var(--global-font);
  color: var(--dark-color);
  transition: 0.3s;
}

.hcel-details__link:hover {
  color: var(--secondary-color);
}

@media (max-width: 991px) {
  .hcel-details__row,
  .hcel-rich-content-wrap,
  .hcel-details__links {
    gap: 30px;
  }

  .hcel-details__col__title {
    font-size: 28px;
  }

  .hcel-details__col--label,
  .hcel-rich-content-title,
  .hcel__links-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hcel-details__row,
  .hcel-rich-content-wrap,
  .hcel-details__links {
    flex-direction: column;
    gap: 15px;
  }

  .hcel-details__col__title {
    font-size: 24px;
  }

  .hcel-details__row,
  .hcel-rich-content-wrap,
  .hcel-details__links {
    margin-bottom: 15px;
  }
  .hcel-details__col--label,
  .hcel-rich-content-title,
  .hcel__links-title {
    font-size: 18px;
  }
}

.hcel-rich-content {
  color: var(--body-text-color);
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--global-font);
}

/* Paragraphs */
.hcel-rich-content p {
  margin: 0 0 24px 0;
  font-size: 18px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

.hcel-rich-content p + h2 {
  padding-top: 16px;
}
.hcel-rich-content p + h3 {
  padding-top: 8px;
}
.hcel-rich-content p + h4,
.hcel-rich-content p + h5,
.hcel-rich-content p + h6 {
  padding-top: 6px;
}

.hcel-rich-content p:last-child {
  margin-bottom: 0;
}

/* Headings */
.hcel-rich-content h1,
.hcel-rich-content h2,
.hcel-rich-content h3,
.hcel-rich-content h4,
.hcel-rich-content h5,
.hcel-rich-content h6 {
  color: var(--dark-color);
  font-family: var(--global-font);
  font-weight: 600;
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.hcel-rich-content h1 {
  font-size: 30px;
}

.hcel-rich-content h2 {
  font-size: 28px;
}

.hcel-rich-content h3 {
  font-size: 26px;
}

.hcel-rich-content h4 {
  font-size: 24px;
}

.hcel-rich-content h5 {
  font-size: 22px;
}

.hcel-rich-content h6 {
  font-size: 20px;
}

.hcel-rich-content h1:first-child,
.hcel-rich-content h2:first-child,
.hcel-rich-content h3:first-child,
.hcel-rich-content h4:first-child,
.hcel-rich-content h5:first-child,
.hcel-rich-content h6:first-child {
  margin-top: 0;
}

/* Lists */
.hcel-rich-content ul,
.hcel-rich-content ol {
  margin: 16px 0 24px 0;
  padding-left: 24px;
}

.hcel-rich-content li {
  margin: 0 0 8px 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

li[data-list='bullet'] {
  list-style: disc;
}
li[data-list='ordered'] {
  list-style: decimal;
}

.hcel-rich-content ul ul,
.hcel-rich-content ol ol,
.hcel-rich-content ul ol,
.hcel-rich-content ol ul {
  margin: 8px 0;
}

/* Links */
.hcel-rich-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hcel-rich-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Strong and Bold */
.hcel-rich-content strong,
.hcel-rich-content b {
  font-weight: 600;
  color: var(--dark-color);
}

/* Emphasis and Italic */
.hcel-rich-content em,
.hcel-rich-content i {
  font-style: italic;
}

/* Blockquotes */
.hcel-rich-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  /* font-style: italic; */
  font-weight: 500;
  color: var(--dark-color);
}

.hcel-rich-content blockquote p {
  margin: 0;
}

/* Code */
.hcel-rich-content code {
  background-color: #f1f3f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--dark-color);
}

.hcel-rich-content pre {
  background-color: #f1f3f4;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 16px 0 24px 0;
}

.hcel-rich-content pre code {
  background: none;
  padding: 0;
  font-size: 14px;
}

/* Tables */
.hcel-rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hcel-rich-content th,
.hcel-rich-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.hcel-rich-content th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--dark-color);
}

.hcel-rich-content tr:last-child td {
  border-bottom: none;
}

/* Images */
.hcel-rich-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hcel-rich-content img:first-child {
  margin-top: 0;
}

.hcel-rich-content img:last-child {
  margin-bottom: 0;
}

/* Horizontal Rule */
.hcel-rich-content hr {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 32px 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hcel-rich-content {
    font-size: 15px;
    line-height: 1.6;
  }

  .hcel-rich-content h1 {
    font-size: 28px;
  }

  .hcel-rich-content h2 {
    font-size: 24px;
  }

  .hcel-rich-content h3 {
    font-size: 20px;
  }

  .hcel-rich-content h4 {
    font-size: 18px;
  }

  .hcel-rich-content h5 {
    font-size: 16px;
  }

  .hcel-rich-content h6 {
    font-size: 15px;
  }

  .hcel-rich-content p {
    margin-bottom: 20px;
  }

  .hcel-rich-content ul,
  .hcel-rich-content ol {
    padding-left: 20px;
    margin: 12px 0 20px 0;
  }

  .hcel-rich-content blockquote {
    padding: 16px 20px;
    margin: 20px 0;
  }

  .hcel-rich-content table {
    font-size: 14px;
  }

  .hcel-rich-content th,
  .hcel-rich-content td {
    padding: 8px 12px;
  }
}

@media (max-width: 575px) {
  .hcel-rich-content {
    font-size: 14px;
    line-height: 1.5;
  }

  .hcel-rich-content h1 {
    font-size: 24px;
  }

  .hcel-rich-content h2 {
    font-size: 20px;
  }

  .hcel-rich-content h3 {
    font-size: 18px;
  }

  .hcel-rich-content h4 {
    font-size: 16px;
  }

  .hcel-rich-content h5 {
    font-size: 15px;
  }

  .hcel-rich-content h6 {
    font-size: 14px;
  }

  .hcel-rich-content p {
    margin-bottom: 16px;
  }

  .hcel-rich-content ul,
  .hcel-rich-content ol {
    padding-left: 16px;
    margin: 10px 0 16px 0;
  }

  .hcel-rich-content blockquote {
    padding: 12px 16px;
    margin: 16px 0;
  }
}

/* ***Gradient Border Animation*** */
.hcel-gradient-bordered-btn {
  position: relative;
  z-index: 1;
}

.hcel-gradient-border {
  position: absolute;
  inset: -1px;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.hcel-gradient-border::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 300%;
  width: 200%;
  overflow: hidden;
  z-index: 1;
  background: conic-gradient(from 90deg, transparent 0%, white 7%, transparent 15%, transparent 100%);
  animation: rotateGradient 5s linear infinite;
}

@keyframes rotateGradient {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
