/*--------------------------------------------------------------*/

/*	Service Section
/*--------------------------------------------------------------*/

.service {
  position: relative;
}

.service-shape {
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  top: 0;
}

.service .post {
  position: relative;
  display: block;
  background-color: #0b0d17;
  /* Slate-950 approx or slightly lighter for better visibility */
  padding: 50px 40px 90px;
  margin-bottom: 30px;
  transition: all 500ms ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--thm-card-radius, 12px);
}

.service .post .entry-header .entry-title {
  font-size: 22px;
  color: var(--thm-base);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.service .post .entry-header .entry-title a {
  color: var(--thm-base);
}

.service .post .entry-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  /* Slate-400 */
  transition: all 500ms ease;
}

.service-image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-top: 25px;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.service-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 500ms ease;
}

.service-icon i {
  font-size: 24px;
  color: var(--thm-base);
  line-height: 1;
  transition: all 500ms ease;
  display: block;
}

.service .post .more-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #8f8da0;
  font-weight: 700;
  text-transform: var(--thm-text-transform);
  letter-spacing: 0.1em;
  transition: all 500ms ease;
}

.service .post .more-link:hover::before {
  width: 100%;
}

.service .post .more-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 10px;
  background-color: currentColor;
  transition: width 500ms ease;
}

.service .post:hover {
  background-color: var(--thm-primary);
  transform: translateY(-5px);
}

.service .post:hover .entry-content p,
.service .post:hover .entry-content a {
  color: var(--thm-base);
}

.service .post:hover .service-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.service .post:hover .service-icon i {
  color: var(--thm-base);
}

.service .post:hover .service-image img {
  transform: translateY(-4px) scale(1.04);
}

/*--------------------------------------------------------------*/

/*	Portfolio Section
/*--------------------------------------------------------------*/

.portfolio {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.portfolio-selector {
  padding-bottom: 30px;
}

.portfolio .divider-line {
  width: 60px;
  height: 4px;
  background-color: var(--thm-primary);
  margin: 10px auto 0;
  border: none;
  border-radius: var(--thm-badge-radius, 2px);
}

.portfolio .post {
  position: relative;
  margin: 0px 0 30px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--thm-card-radius, 12px);
}

.portfolio .portfolio-thumbnail {
  border-radius: var(--thm-card-radius, 12px);
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-thumbnail .portfolio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--thm-badge-radius, 50px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: all 0.3s ease;
}

.portfolio .post:hover .portfolio-badge {
  background: #ffffff;
  color: #111827;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.portfolio .portfolio-caption {
  position: relative;
}

.portfolio .post img {
  width: 100%;
  transform: scale(1);
  transition: all 500ms ease;
  max-width: 100%;
  border-radius: var(--thm-card-radius, 12px) var(--thm-card-radius, 12px) 0 0;
}

.portfolio .post:hover .portfolio-thumbnail>img {
  transform: scale(1.05);
  opacity: 1;
}

.portfolio .portfolio-thumbnail figcaption {
  position: relative;
  display: block;
  background-color: #0b0d17;
  /* Solid Slate-950 approx */
  padding: 30px 25px 40px;
  transition: all 500ms ease;
  width: 100%;
  text-align: left;
  border-radius: 0 0 var(--thm-card-radius, 12px) var(--thm-card-radius, 12px);
}

.portfolio .portfolio-thumbnail figcaption p.branding {
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  color: var(--thm-primary);
  text-transform: uppercase;
  padding-bottom: 8px;
  letter-spacing: 0.15em;
  transition: all 500ms ease;
}

.portfolio .portfolio-thumbnail figcaption .entry-title {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  text-transform: none;
  line-height: 1.2;
  margin: 0;
}

.portfolio .portfolio-thumbnail figcaption .entry-title a {
  position: relative;
  color: #fff;
  display: inline-block;
}

.portfolio .portfolio-thumbnail figcaption .entry-title a:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--thm-primary);
  transition: all 500ms ease;
}

.portfolio .portfolio-thumbnail figcaption .portfolio-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-top: 21px;
  margin-bottom: 0;
  transition: color 500ms ease;
}

.portfolio .post:hover figcaption .portfolio-excerpt {
  color: #ffffff;
}

.portfolio .post:hover figcaption {
  background-color: var(--thm-primary);
}

.portfolio .post:hover figcaption p,
.portfolio .post:hover figcaption .entry-title,
.portfolio .post:hover figcaption .entry-title a,
.portfolio-selector .post:hover figcaption p,
.portfolio-selector .post:hover figcaption .entry-title,
.portfolio-selector .post:hover figcaption .entry-title a {
  color: #fff;
}

.portfolio .post:hover .portfolio-thumbnail figcaption p.branding,
.portfolio-selector .post:hover .portfolio-thumbnail figcaption p.branding {
  color: #fff;
}

.portfolio .post:hover figcaption .entry-title a:after {
  width: 40px;
  background-color: #fff;
}

.portfolio .post figcaption .entry-title a:before {
  display: none;
}

.portfolio .post figcaption .entry-title a:hover::before {
  width: 100%;
}

.portfolio-overlay {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0px;
}

.portfolio .post:hover .portfolio-overlay {
  visibility: visible;
  opacity: 1;
}

.portfolio-overlay-inner {
  position: absolute;
  left: 0;
  margin-top: 0px;
  top: -25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.portfolio-thumbnail .portfolio-icons {
  margin-top: 0px;
  text-align: center;
  width: 100%;
}

.portfolio-thumbnail .portfolio-icons a {
  display: inline-block;
  padding-left: 0px;
  color: #fff;
  padding: 0;
  text-decoration: none;
  background-color: #0f0d1d;
  transition: all 0.1s ease;
  height: 100%;
  width: 60px;
  -wekbit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -wekbit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -o-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
}

.portfolio .post:hover .portfolio-thumbnail .portfolio-icons a {
  -wekbit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.portfolio-thumbnail .portfolio-icons a:hover {
  color: #ffffff;
}

.portfolio-thumbnail .portfolio-icons a i {
  font-size: 20px;
  line-height: 50px;
}

.portfolio-thumbnail .portfolio-icons a:hover {
  background-color: var(--thm-primary);
}

.portfolio-view-all {
  margin-top: 30px;
}

.portfolio-view-all a {
  color: #020617;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 500ms ease;
}

.portfolio-view-all a:hover {
  color: var(--thm-primary);
}

.portfolio-view-all a i {
  font-size: 16px;
  vertical-align: middle;
}

/*--------------------------------------------------------------*/

/*	Portfolio Single
/*--------------------------------------------------------------*/

.project-wrap {
  padding-right: 450px;
}

.portfolio-single .project-details {
  position: absolute;
  left: 60%;
}

.portfolio-single .project-detail .entry-title {
  line-height: 50px;
}

.portfolio-single .project-details .entry-title {
  font-size: 30px;
  font-weight: 900;
  text-transform: var(--thm-text-transform);
  line-height: 50px;
  letter-spacing: var(--thm-letter-space-small);
}

.portfolio-single .project-detail {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0f0d1d;
  margin-left: 200px;
  margin-top: -115px;
}

.portfolio-single .project-detail-list {
  float: left;
  list-style: outside none none;
  margin-bottom: 0;
  margin-top: 15px;
  padding-left: 0;
  width: 100%;
}

.project-detail-list li {
  border-bottom: 1px solid #ebebeb;
  padding: 15px 0;
}

.project-detail-list i {
  display: table-cell;
  width: 30px;
}

.project-info {
  display: table-cell;
  line-height: 28px;
}

.portfolio-single .portfolio-thumbnail figcaption {
  height: 100%;
  position: initial;
  max-width: 100%;
  padding: 30px 45px 30px;
}

.portfolio-single .card-holder.holder-small::before,
.portfolio-single .card-holder.holder-small::after {
  right: -210px;
}

/*--------------------------------------------------------------*/

/*	Callout Section
/*--------------------------------------------------------------*/

.callout-to-action {
  background: url(../../images/callout/callout-bg.jpg) center center fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 150px 0;
  width: 100%;
}

.callout-to-action::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background-color: #020617;
  opacity: 0.6;
}

.callout-to-action .title {
  font-size: 60px;
  color: var(--thm-base);
  font-weight: 900;
  line-height: 70px;
  text-transform: var(--thm-text-transform);
  margin-bottom: 24px;
  letter-spacing: var(--thm-letter-space-small);
}

.callout-to-action .callout-inner-txt {
  position: relative;
  display: block;
  text-align: center;
}

.callout-to-action .cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.callout-to-action .thm-btn {
  color: #ffffff;
  background-color: var(--thm-primary, #61ce70);
  display: inline-block;
  text-decoration: none;
}

.callout-to-action .thm-btn:hover {
  color: #ffffff;
  opacity: 0.92;
  text-decoration: none;
}

.callout-to-action .cta-btn-secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.callout-to-action .cta-btn-secondary:hover {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  opacity: 1;
}

/*--------------------------------------------------------------*/

/*	Testimonial Section
/*--------------------------------------------------------------*/

.testimonial .owl-carousel .owl-prev,
.testimonial .owl-carousel .owl-next {
  opacity: 1;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 50%;
  color: #0f172a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.testimonial-grid-layout .owl-carousel .owl-prev {
  top: 320px;
  left: -400px;
  transform: none;
  background-color: var(--thm-black);
  color: #fff;
  border-radius: 0;
}

.testimonial-grid-layout .owl-carousel .owl-next {
  top: 320px;
  left: -340px;
  transform: none;
  background-color: var(--thm-black);
  color: #fff;
  border-radius: 0;
}

/* Floating Controls for Centered 1-Column Layout */
.testimonial-single-layout .owl-carousel .owl-prev {
  left: -22px !important;
}

.testimonial-single-layout .owl-carousel .owl-next {
  left: auto !important;
  right: -22px !important;
}

@media screen and (max-width: 991px) {
  .testimonial-single-layout .owl-carousel .owl-prev {
    left: 0px !important;
  }

  .testimonial-single-layout .owl-carousel .owl-next {
    right: 0px !important;
  }
}

.testimonial .owl-carousel .owl-prev:hover,
.testimonial .owl-carousel .owl-next:hover {
  background-color: var(--thm-primary);
  color: #ffffff;
  border-color: var(--thm-primary);
  box-shadow: 0 6px 20px rgba(123, 64, 192, 0.35);
}

.testimonial-single-layout .owl-carousel .owl-prev:hover,
.testimonial-single-layout .owl-carousel .owl-next:hover {
  transform: translateY(-50%) scale(1.1) !important;
}

.testimonial .section-header {
  text-align: left;
  padding: 40px 0px 60px;
}

.testimonial .item {
  margin-bottom: 30px;
}

/* Smooth Fade Effect & Controlled Overflow for Testimonial Carousel */
#testimonial-demo {
  padding: 10px 0 25px;
  position: relative;
}

#testimonial-demo .owl-stage-outer {
  overflow: visible !important;
  clip-path: inset(-50px -1000px -50px 0px) !important;
  padding: 15px 0 25px !important;
  margin: -15px 0 -25px !important;
}

#testimonial-demo .owl-stage {
  padding-top: 15px !important;
  padding-bottom: 25px !important;
}

#testimonial-demo .owl-item {
  opacity: 1;
}

/* ─── CENTERED MODERN HERO TESTIMONIAL LAYOUT (1-COLUMN) ──────────────── */
.testimonial-single-layout .section-header {
  text-align: center !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
  max-width: 680px;
}

.testimonial-single-layout .testimonial-hero-wrapper {
  margin: 0 auto !important;
}

.testimonial-single-layout #testimonial-demo {
  padding: 0 !important;
}

.testimonial-single-layout #testimonial-demo .owl-stage-outer {
  overflow: hidden !important;
  clip-path: none !important;
  padding: 15px 0 25px !important;
  margin: 0 !important;
}

.testimonial-single-layout .review {
  max-width: 760px;
  margin: 0 auto 10px;
  text-align: center;
  align-items: center;
  padding: 48px 45px 38px;
  background: #ffffff;
  border-radius: var(--thm-card-radius, 20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}

.testimonial-single-layout .review .wt-title {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-single-layout .testimonial-content {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  text-align: center;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-single-layout .client-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}

.testimonial-single-layout .client-thumbnail {
  margin: 0 0 12px 0;
}

.testimonial-single-layout .client-thumbnail img {
  width: 64px;
  height: 64px;
  box-shadow: 0 0 0 4px rgba(123, 64, 192, 0.15);
}

.testimonial-single-layout .client-details {
  text-align: center;
  align-items: center;
}

.testimonial-single-layout .client-name {
  font-size: 17px;
  color: #0f172a;
  margin-bottom: 4px;
}

.testimonial-single-layout .client-designation {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.testimonial-single-layout .icon-quote {
  top: 24px;
  right: 32px;
  opacity: 0.1;
}

.testimonial-single-layout.owl-theme .owl-dots,
.testimonial.owl-theme .owl-dots,
.testimonial-single-layout .owl-dots,
.testimonial .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0;
}

.testimonial-single-layout.owl-theme .owl-dots .owl-dot,
.testimonial.owl-theme .owl-dots .owl-dot,
.testimonial-single-layout .owl-dot,
.testimonial .owl-dot {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.testimonial-single-layout.owl-theme .owl-dots .owl-dot span,
.testimonial.owl-theme .owl-dots .owl-dot span,
.testimonial-single-layout .owl-dot span,
.testimonial .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.testimonial-single-layout.owl-theme .owl-dots .owl-dot.active span,
.testimonial.owl-theme .owl-dots .owl-dot.active span,
.testimonial-single-layout .owl-dot.active span,
.testimonial .owl-dot.active span {
  width: 28px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--thm-primary);
  box-shadow: 0 4px 12px rgba(123, 64, 192, 0.35);
}

.testimonial-single-layout.owl-theme .owl-dots .owl-dot:hover span,
.testimonial.owl-theme .owl-dots .owl-dot:hover span,
.testimonial-single-layout .owl-dot:hover span,
.testimonial .owl-dot:hover span {
  background-color: var(--thm-primary);
  opacity: 0.85;
}

.review {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 36px 36px 30px;
  border-radius: var(--thm-card-radius, 16px);
  margin: 12px 0;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(123, 64, 192, 0.15);
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 14px;
}

.testimonial-rating i.fas,
.testimonial-rating i.active {
  color: #f59e0b;
}

.testimonial-rating i.far,
.testimonial-rating i.inactive {
  color: #cbd5e1;
}

.theme-dark .testimonial-rating i.far,
.theme-dark .testimonial-rating i.inactive {
  color: #475569;
}

.review .wt-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #0f172a;
  letter-spacing: -0.2px;
  line-height: 1.35;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  text-align: left;
}

.client-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.client-thumbnail {
  margin: 0 16px 0 0;
}

.client-thumbnail img {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(123, 64, 192, 0.12);
  transition: transform 0.2s ease;
}

.review:hover .client-thumbnail img {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px var(--thm-primary);
}

.testimonial-content {
  font-family: var(--thm-font);
  color: #475569;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 450;
}

.client-name,
blockquote.review cite.client-name,
.client-details cite.client-name {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  display: block;
  color: #0f172a;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 3px;
}

.client-designation {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.6px;
  margin-top: 0;
  line-height: 1.2;
}

.client-designation:before,
.review .client-email:before {
  display: none;
}

.icon-quote {
  opacity: 0.12;
  position: absolute;
  top: 30px;
  right: 30px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.review:hover .icon-quote {
  opacity: 0.22;
}

.icon-quote img {
  width: 44px;
  filter: grayscale(1);
}

/*--------------------------------------------------------------*/

/*	Team Section
/*--------------------------------------------------------------*/

.team {
  padding: 100px 0 100px;
}

.team-module {
  background-color: transparent;
  padding: 0px;
  margin: 0 0 50px;
  position: relative;
  width: 100%;
  border-radius: var(--thm-card-radius, 12px);
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.team-module .team-avatar {
  border-radius: var(--thm-card-radius, 12px);
  overflow: hidden;
  margin: 0;
  position: relative;
  transform: translateZ(0);
}

.team-module .team-avatar img {
  border-radius: var(--thm-card-radius, 12px);
  width: 100%;
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 500ms ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.team-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--thm-badge-radius, 4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.team-module:hover .team-badge,
.team-card:hover .team-badge {
  background: var(--thm-primary, #61ce70);
  color: var(--thm-base, #ffffff);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.team-module:hover .team-avatar img,
.team-card:hover .team-thumbnail img {
  transform: scale(1.04) translateZ(0);
}

.team-caption {
  position: absolute;
  display: block;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-left: none;
  padding: 18px 24px 22px;
  transition: background-color 400ms ease, border-color 400ms ease, color 400ms ease;
  max-width: 251px;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-right-radius: var(--thm-card-radius, 12px);
  border-bottom-left-radius: var(--thm-card-radius, 12px);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.team-module:hover .team-caption {
  background-color: var(--thm-primary);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--thm-base);
}

.team-caption .name {
  position: relative;
  font-size: 20px;
  color: var(--thm-base);
  line-height: 34px;
  text-transform: var(--thm-text-transform);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: var(--thm-letter-space-small);
  display: inline-block;
  cursor: pointer;
}

.team-caption .name:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 10px;
  background-color: currentColor;
  transition: width 500ms ease;
}

.team-module:hover .team-caption .name:before {
  width: 100%;
}

.team-caption .designation {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  margin: 0;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: var(--thm-letter-space-big);
  transition: all 400ms ease;
}

.team-module:hover .team-caption .designation {
  color: var(--thm-base);
}

.team-caption .team-bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  margin-bottom: 0;
  transition: color 500ms ease;
}

.team-module:hover .team-caption .team-bio {
  color: rgba(255, 255, 255, 0.95);
}

.team-overlay {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.team-module:hover .team-overlay {
  visibility: visible;
  opacity: 1;
}

.team-overlay-inner {
  position: absolute;
  top: -18px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  /* transform: translateY(-50%); */
  width: 100%;
}

.team-avatar {
  text-align: center;
  position: relative;
  line-height: 0px;
  font-size: 0px;
  transition: all 200ms ease-out;
  -webkit-transition: all 200ms ease-out;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-avatar img {
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
  object-position: top center;
  transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  width: 100%;
}

.team-module .team-social-icons {
  display: flex;
  margin-top: 0px;
  text-align: center;
  width: 100%;
}

.team-module .team-social-icons a {
  display: inline-block;
  padding-left: 0px;
  color: #fff;
  padding: 0;
  text-decoration: none;
  background-color: #0f0d1d;
  border-radius: var(--thm-badge-radius, 4px);
  transition: all 0.1s ease;
  height: 37px;
  width: 37px;
  -wekbit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -wekbit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -o-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
}

.team .team-module:hover .team-social-icons a {
  -wekbit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.team-module .team-social-icons a:hover {
  color: #ffffff;
}

.team-module .team-social-icons a i {
  font-size: 0.875rem;
  line-height: 2.2;
}

.team-module .team-social-icons a:hover {
  background-color: var(--thm-primary);
}

/*--------------------------------------------------------------*/

/*	Funfact Section
/*--------------------------------------------------------------*/

.funfact {
  position: relative;
  background: var(--thm-black);
}

.funfact i.funfact-icon {
  font-size: 50px;
  color: var(--thm-primary);
  line-height: 60px;
  display: block;
}

.funfact-title {
  font-size: 36px;
  color: var(--thm-base);
  font-weight: 900;
  line-height: 50px;
  margin-bottom: 4px;
  margin-top: 25px;
  font-family: var(--thm-font);
  letter-spacing: var(--thm-letter-space-small);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.funfact-title .funfact-prefix {
  margin-right: 2px;
}

.funfact-title .funfact-suffix {
  margin-left: 2px;
}

.funfact-inner .description {
  font-size: 10px;
  font-weight: 700;
  color: var(--thm-base);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.2em;
}

.funfact-inner {
  position: relative;
  background: black;
  padding: 25px;
  border-bottom: 2px solid var(--thm-primary);
  border-radius: var(--thm-card-radius, 12px);
  overflow: hidden;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------*/

/*	Sponsors Section
/*--------------------------------------------------------------*/

.home .sponsors {
  padding-top: 35px;
}

.sponsors .section-header {
  margin: -7px 0 25px;
}

.sponsors .item img {
  opacity: 0.5;
  filter: grayscale(100%);
  margin: 0 auto;
  transition: all 400ms ease;
  width: 65%;
}

.sponsors .item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.client-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--thm-black);
  margin: 0 0 5px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.client-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.home .sponsors {
  padding: 80px 0;
}

.sponsors .section-header {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------*/

/*	Page Module / Title Section
/*--------------------------------------------------------------*/

.page-title-module {
  position: relative;
  width: 100%;
  min-height: 450px;
  /* background: url(assets/images/page-header.jpg); */
  background-position: unset;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 100px;
}

.page-title-module:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background-color: rgba(0, 9, 15, 0.8);
}

.page-title-module .content-center {
  /*  position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    top: 65%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); */
  padding: 11.5rem 0 1.875rem;
}

.page-header-title {
  position: relative;
  margin-bottom: 10px;
}

.page-header-title h1 {
  font-size: 50px;
  color: var(--thm-base);
  line-height: 52px;
  font-weight: 900;
  text-transform: var(--thm-text-transform);
  letter-spacing: var(--thm-letter-space-small);
  margin-bottom: 0;
}

.page-breadcrumb {
  list-style: none outside none;
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  font-size: 1rem;
}

.page-breadcrumb>li {
  color: #fff;
  display: inline-block;
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 600;
  text-transform: var(--thm-text-transform);
  transition: all 500ms ease;
  letter-spacing: var(--thm-letter-space-big);
}

.page-breadcrumb>li+li:before {
  color: #fff;
  content: "/";
  padding: 0 10px 0 5px;
}

.page-breadcrumb>li a {
  color: #fff;
}

@media (max-width: 768px) {
  .page-title-module {
    padding: 25px 0 35px;
  }

  .page-title h1 {
    margin: 0;
    text-align: center;
  }

  .page-breadcrumb {
    text-align: center;
    padding: 15px 0 5px;
    float: none;
  }
}

/*--------------------------------------------------------------*/

/*	About Us
/*--------------------------------------------------------------*/

.about-wrap {
  padding-right: 30px;
}

.about-img-holder {
  margin: 0 0 20px;
  position: relative;
}

.about-img-holder img {
  border-radius: 2px;
}

.about-module {
  margin: 0;
}

.about-module .title {
  font-size: 50px;
  font-weight: 900;
  line-height: 60px;
  text-transform: var(--thm-text-transform);
  margin-top: -12px;
  letter-spacing: var(--thm-letter-space-small);
}

.about-module .title,
.about-module .subtitle {
  margin: 0 0 20px;
}

.about-module .subtitle {
  letter-spacing: 3px;
  font-weight: 700;
}

.about-module .social-icons a:after {
  color: #202020;
}

.about-module .social-icons a:hover:after {
  color: #fff;
}

@media (max-width: 768px) {
  .about-module {
    padding-left: 0px;
    margin-bottom: 50px;
  }

  .about-img-holder {
    padding-right: 0px;
  }
}

.about-img-holder {
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  margin-bottom: 100px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.about-img-holder.holder-small {
  margin-left: 120px;
  margin-top: -280px;
}

.about-social-icons {
  display: flex;
}

.about-social-icons a {
  display: flex;
  padding-left: 0px;
  color: #fff;
  padding: 0;
  text-decoration: none;
  background-color: #0f0d1d;
  transition: all 0.1s ease;
  height: 40px;
  width: 50px;
  -wekbit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -wekbit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -o-transform: translateY(70px);
  -ms-transform: translateY(70px);
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: space-evenly;
  align-items: center;
}

.about-social-icons a:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------*/

/*	Contact Section
/*--------------------------------------------------------------*/

.contact-form-section form label {
  font-size: 0.938rem;
  display: block;
  margin: 0 0 20px;
  font-weight: 600;
}

.contact-form-section form input,
.contact-form-section form textarea {
  height: 70px;
  width: 100%;
  border: none;
  background: var(--thm-light);
  padding-left: 30px;
  padding-right: 60px;
  margin-bottom: 30px;
  border-radius: 0px;
  font-size: 14px;
  color: var(--thm-gray);
  font-weight: 500;
  display: block;
}

/* Overwrite WP Forms Styles */
.wpforms-form input,
.wpforms-form textarea {
  height: 70px;
  width: 100%;
  border: none;
  background: var(--thm-light);
  padding-left: 30px;
  padding-right: 60px;
  margin-bottom: 30px;
  border-radius: 0px;
  font-size: 14px;
  color: var(--thm-gray);
  font-weight: 500;
  display: block;
}

.wpforms-form button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  background-color: var(--thm-primary);
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 50px;
  transition: 500ms;
  letter-spacing: 0.1em;
}

.contact-form-section form textarea {
  height: 140px;
}

.contact-form-section .thm-btn:hover {
  background: var(--thm-black);
  color: var(--thm-base);
}

.contact .contact-header {
  padding: 20px 20px 20px 0px;
}

.contact .contact-header .section-title {
  margin-bottom: 40px;
}

.contact .contact-location {
  position: relative;
  display: block;
  background-color: var(--thm-light);
  padding: 45px 50px 55px;
  margin-bottom: 30px;
  transition: all 500ms ease;
  cursor: pointer;
}

.contact .contact-location:hover {
  background-color: var(--thm-primary);
}

.contact .contact-location .location-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  text-transform: var(--thm-text-transform);
  margin-bottom: 20px;
  letter-spacing: var(--thm-letter-space-small);
  transition: all 500ms ease;
}

.contact .contact-location:hover .location-title,
.contact .contact-location:hover .location-text {
  color: var(--thm-base);
}

.contact .contact-location .location-text {
  font-size: 16px;
  margin: 0;
  line-height: 30px;
  transition: all 500ms ease;
}

.contact .google-map {
  border: 1px solid #f2f4f8;
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.contact .google-map iframe {
  margin-bottom: -10px;
  pointer-events: none;
  /* Prevents map from hijacking scroll wheel */
  transform: translateZ(0);
  /* Forces GPU hardware acceleration to prevent repaint lag */
  will-change: transform;
}

.contact-location-section {
  position: relative;
  display: block;
  border-top: 1px solid #e6e9ef;
  padding-top: 120px;
}

.contact-loc-wrap {
  margin-bottom: 50px;
}

@media (min-width: 1200px) {

  /* Main row: stretch columns to match height */
  .contact-loc-wrap {
    display: flex;
    align-items: stretch;
  }

  /* Make both left and right main columns flex containers */
  .contact-loc-wrap>div {
    display: flex;
    flex-direction: column;
  }

  /* Make the inner row stretch inside the right column */
  .contact-loc-wrap>div>.row {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
  }

  /* Make the inner box columns flex containers */
  .contact-loc-wrap>div>.row>div {
    display: flex;
    flex-direction: column;
  }

  /* Make the contact-location boxes fill 100% height, center content vertically, and remove bottom margin */
  .contact .contact-location {
    flex-grow: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
  }

  /* Make the map container fill the full height of the left column */
  .contact .card-holder.double.base,
  .contact .card__image,
  .contact .google-map {
    height: 100%;
  }

  .contact .google-map iframe {
    height: 100%;
    min-height: 100%;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------*/

/*	404 page Section
/*--------------------------------------------------------------*/

#notfound {
  width: 100%;
}

.notfound {
  margin-bottom: 72px;
  text-align: center;
}

.notfound .notfound-404 {
  position: relative;
  z-index: -1;
}

.notfound .notfound-404 h1 {
  font-family: var(--thm-font);
  font-size: 230px;
  margin: 0px;
  font-weight: 900;
  background-position: center;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}

.notfound h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  text-transform: var(--thm-text-transform);
  letter-spacing: var(--thm-letter-space-small);
  margin-bottom: 42px;
}

.notfound p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.notfound .notfound-404 span {
  color: var(--thm-primary);
}

.notfound a.thm-btn:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}